Bitcoin Forum
May 25, 2024, 07:17:06 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 [23] 24 25 26 27 28 29 30 »
441  Alternate cryptocurrencies / Altcoin Discussion / Re: Coins with Masternode? on: August 02, 2017, 08:50:59 PM
i have created guides for setting up masternode + cold wallet

DAS - Need 1000 DAS (currently $111 for 1x Masternode) Link
ArcticCoin - Need 1000 ARC (currently $83 for ∞ Masternodes) Link
442  Alternate cryptocurrencies / Announcements (Altcoins) / Re: |ANN| DAS - Decentralized and Security. Private Send. Masternodes. on: August 02, 2017, 08:40:33 PM
Can i also set up my MN with this guide on a Ubuntu 14.04 OS?

thanks, it should work, maybe you will run into some problems with dependencies, ive read it somewhere



Can I use a WIFI connected Windows PC as masternode or it must be connected to the internet via LAN ethernet cable ?


you can use wifi, but make sure it is stable
443  Alternate cryptocurrencies / Announcements (Altcoins) / - ArcticCoin - Masternode Guide - Windows/Linux Cold Wallet + Ubuntu 16.x on: August 02, 2017, 08:00:42 PM
Polylogic - ArcticCoin - Masternode Guide - Windows/Linux Cold Wallet + Ubuntu 16.x VPS Masternode LINK

Part 01

Lets prepare the Cold Storage (this should work with any OS)


- Install the (Windows) Wallet and sync with Network
- Create a Address that can be reused, call it Masternode_XX
- Send 1000.01 ARC from Exchange to Masternode Address (.01 more than nessesary)
- Encrypt Wallet with Strong Password
- Backup Wallet.dat File
- Open Debug Console and type without ":
Code:
dumpprivkey "walletaddress"
- Save the Private Key to a txt file and type:
Code:
goldminenode genkey
- This is your Goldmine Key, save it aswell.
Code:
goldminenode outputs
- Save This Data too. Its your Transaction ID and IDX. We need all those keys later.


Part 02

Prepare the Linux VPS (Ubuntu 16.x)


WARNING - WARNING - WARNING - WARNING - WARNING - WARNING

if you dont know how to operate a Linux Server,
then you should think twice about setting up a Masternode Server.
Masternodes have a Public IP Address and may be subject to Intruders and Hacking attemts.
We have to properly secure the server and keep it updated.
For now, this Tutorial will provide you with a basic security but it is highly advised to
take the proper precautions and stay alert.

i will update this guide to my best knowlege, maybe one of you can give some iptables tips
and how we get fail2ban goin.


WARNING - WARNING - WARNING - WARNING - WARNING - WARNING

if you dont know what you are doing and still want to participate just copy paste the commands.

- log into your vps via ssh (i use putty)
Code:
apt update
apt upgrade

- now we change the ssh port to some number you like
Code:
nano /etc/ssh/sshd_config
change the port from 22 to your lucky number.
if you have never worked with nano:
look at the bottom, it shows the menu, press CTRL + C to Exit & Save

- restart the ssh service
Code:
service ssh restart

- now disconnect and log back in, use your new port.

- lets setup the firewall and open ports for ssh and ARC (Port 7209)
Code:
ufw allow <ssh-port>
ufw limit <ssh-port>/tcp
ufw allow 7209/tcp
ufw logging on

enable the firewall:
Code:
ufw enable

use ufw status and ufw disable if you need to disable the firewall.

- reboot the vps and log back in.

- check the internet on how to secure your vps, there is still much to learn.


Part 03

Install ArcticCoin


 - you should be logged into your vps as root

Code:
apt-get install -y build-essential software-properties-common autoconf libssl-dev libboost-dev libboost-chrono-dev libboost-filesystem-dev libboost-program-options-dev libboost-system-dev libboost-test-dev libboost-thread-dev sudo automake git
add-apt-repository ppa:bitcoin/bitcoin -y
apt-get update
apt-get install libdb4.8-dev bsdmainutils libdb4.8++-dev -y
adduser arc
su - arc
mkdir arc
cd arc
su root
wget https://github.com/ArcticCore/arcticcoin/releases/download/v0.12.1.2/arcticcore-0.12.2-linux64.tar.gz
tar -xvf arcticcore-0.12.2-linux64.tar.gz
mv arcticcore-0.12.1/* ./
rm arcticcore-0.12.2-linux64.tar.gz
rm -r arcticcore-0.12.1/
cp -v /home/arc/arc/bin/* /usr/local/bin/
su - arc
arcticcoind -daemon

this is it. ArcticCoin is now running, started by user arc.
verify that ArcticCoin is connected with:
Code:
arcticcoin-cli getinfo


Part 04

Enable masternode and point it to our wallet:


Code:
arcticcoin-cli stop
su root
nano /home/arc/.arcticcore/arcticcoin.conf

we now edit the configuration file, copy paste the following, edit with your data and save.
Code:
rpcuser=user
rpcpassword=password
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
staking=0

goldminenode=1
externalip=<YOUR_PUBLIC_VPS_IP_ADDRESS>:7209
goldminenodeprivkey=<YOUR_MASTERNODEKEY>

we are almost done, all we need to do now is start ArcticCoin again.
Code:
su arc
arcticcoind -daemon


Part 05

BTCBTCBTC Start the Masternode-Service and earn ARC! BTCBTCBTC


congratulations, you have come a long way, now its time to earn some money Smiley

The last step has to be done with the Cold Wallet,
edit the goldminenode config and add:
Code:
<MASTERNODENAME-ALIAS> <YOUR_PUBLIC_VPS_IP_ADDRESS>:7209 <YOUR_GOLDMINE_KEY> <YOUR_TRANSACTION_ID> <IDX>

now restart the wallet to load the config file.
unlock wallet
enter debug console

Code:
goldminenode start-all

this is it, simple right?
your masternode is running and earning 24/7.
you can close the wallet or keep it open and synced.
Windows 10 gives you Notifications on Incomming Transactions.

here are some more tips:

Cold Wallet:
- use the debug console, try help or help goldminenode
- take a look at the masternode list and look up your Transactions ID with goldminenode list you can also see the status there.

VPS Masternode:
try goldminenode status once everything has been done to verify your node working.


sit back, enjoy and donate some ARC


thanks to sergejnoob arc masternode guide
444  Alternate cryptocurrencies / Announcements (Altcoins) / 5 Steps - DAS - Masternode Guide - Windows/Linux Cold Wallet + Ubuntu 16.x VPS on: August 02, 2017, 07:57:50 PM
Polylogic - DAS - Masternode Guide - Windows/Linux Cold Wallet + Ubuntu 16.x VPS Masternode LINK

Part 01

Lets prepare the Cold Storage (this should work with any OS)


- Install the (Windows) Wallet and sync with Network
- Send 1000.01 DAS from Exchange to your 0 address (send 0.01 DAS more than nessesary because of fees)
- Encrypt Wallet with Strong Password
- Backup Wallet.dat File
- Open Debug Console and type without ":
Code:
dumpprivkey "walletaddress"
- Save the Private Key to a txt file and type:
Code:
masternode genkey
- This is your Masternode Key, save it aswell.
Code:
masternode outputs
- Save This Data too. Its your Transaction ID and IDX. We need all those keys later.
- now backup your wallet.dat

if you want to manage 2+ masternodes you have to:
 - close the wallet delete the wallet .dat in /%appdata%/.das/
 - open wallet and a you will get new address 0
 - repeat the first steps of the tutorial.
 - now import the old address 0 by typing "importprivkey <YOUR_PRIVATE_KEY>
 - this part of the tutorial is still incomlete, to be continued but all the important steps are here xD


Part 02

Prepare the Linux VPS (Ubuntu 16.x)


WARNING - WARNING - WARNING - WARNING - WARNING - WARNING

if you dont know how to operate a Linux Server,
then you should think twice about setting up a Masternode Server.
Masternodes have a Public IP Address and may be subject to Intruders and Hacking attemts.
We have to properly secure the server and keep it updated.
For now, this Tutorial will provide you with a basic security but it is highly advised to
take the proper precautions and stay alert.

i will update this guide to my best knowlege, maybe one of you can give some iptables tips
and how we get fail2ban goin.


WARNING - WARNING - WARNING - WARNING - WARNING - WARNING

if you dont know what you are doing and still want to participate just copy paste the commands.

- log into your vps via ssh (i use putty)
Code:
apt update
apt upgrade

- now we change the ssh port to some number you like
Code:
nano /etc/ssh/sshd_config
change the port from 22 to your lucky number.
if you have never worked with nano:
look at the bottom, it shows the menu, press CTRL + X to Exit & Save

- restart the ssh service
Code:
service ssh restart

- now disconnect and log back in, use your new port.

- lets setup the firewall and open ports for ssh and DAS (Port 9399)
Code:
sudo ufw allow ssh
ufw limit ssh/tcp
sudo uhf allow 9399/tcp
ufw logging on

enable the firewall:
Code:
ufw enable

use ufw status and ufw disable if you need to disable the firewall.

- reboot the vps and log back in.

- check the internet on how to secure your vps, there is still much to learn.


Part 03

Install DAS


WARNING - WARNING - WARNING - WARNING - WARNING - WARNING

there are currently two ways to install DAS.
build the application from source-code or use a already build and compiled version.
the only available build is by a community member and you should know that he could have changed some code.
i am going to trust whywefight that he didnt.
but normaly you should never trust a compiled version by a 3rd Party, especially in the crypto scene.

i will also you provide with the steps to build DAS from Source yourself,
this maybe doesnt work, if you dont complie things on a daily basis you forget stuff like that.
feel free to provide us with the correct steps.


WARNING - WARNING - WARNING - WARNING - WARNING - WARNING


you only need to do one of those two steps:

Part 03.1

Install and launch DAS by downloading the Build:


 - you should be logged into your vps as root

Code:
apt install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils
add-apt-repository ppa:bitcoin/bitcoin -y
apt-get update
apt-get install libdb4.8-dev bsdmainutils libdb4.8++-dev -y
adduser das
su - das
wget https://github.com/whywefight/DAS-12.2/blob/master/das-cli
wget https://github.com/whywefight/DAS-12.2/blob/master/das-tx
wget https://github.com/whywefight/DAS-12.2/blob/master/dasd
su root
chmod 777 ./dasd
chmod 777 ./das-cli
chmod 777 ./das-tx
cp -v /home/das/* /usr/local/bin/
su das
dasd -daemon

this is it. now DAS is running, started by user das.
verify that DAS is connected with:
Code:
das-cli getinfo

or

./das-cli getinfo

its not running? i changed some lines up there without testing xD
try to launch it like this ./dasd -daemon



Part 03.2

Install and launch DAS by building the source:


for more information check the wiki

Code:
apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils
apt-get install -y build-essential software-properties-common autoconf libssl-dev libboost-dev libboost-chrono-dev libboost-filesystem-dev libboost-program-options-dev libboost-system-dev libboost-test-dev libboost-thread-dev sudo automake git
add-apt-repository ppa:bitcoin/bitcoin -y
apt-get update
apt-get install libdb4.8-dev bsdmainutils libdb4.8++-dev -y
adduser das
su - das
su root
git clone https://github.com/Truckman83/DAS-source.git
cd DAS-source
./autogen.sh
./configure
make

this may take a while, grab some tea.

Code:
cp -v /home/das/DAS-source/src/dasd /home/das/
cp -v /home/das/DAS-source/src/das-cli /home/das/
cp -v /home/das/DAS-source/src/das-tx /home/das/
cd /home/das/
chmod 777 ./dasd
chmod 777 ./das-cli
chmod 777 ./das-tx
cp -v /home/das/* /usr/local/bin/
su - das


and launch:
Code:
dasd -daemon

or

./dasd -daemon

either way you got DAS synced and running...


Part 04

Enable masternode and point it to our wallet:


Code:
das-cli stop
su root
nano /home/das/.das/das.conf

we now edit the configuration file, copy paste the following, edit with your data and save.
Code:
rpcuser=user
rpcpassword=password
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
staking=0

masternode=1
externalip=<YOUR_PUBLIC_VPS_IP_ADDRESS>:9399
masternodeprivkey=<YOUR_MASTERNODEKEY>

we are almost done, all we need to do now is start DAS again.
Code:
su das
dasd -daemon


Part 05

BTCBTCBTC Start the Masternode-Service and earn DAS! BTCBTCBTC


congratulations, you have come a long way, now its time to earn some money Smiley

The last step has to be done with the Cold Wallet,
edit the masternode config and add:
Code:
<MASTERNODENAME-ALIAS> <YOUR_PUBLIC_VPS_IP_ADDRESS>:9399 <YOUR_MASTERNODEKEY> <YOUR_TRANSACTION_ID> <IDX>

now restart the wallet to load the config file.
unlock wallet
enter debug console

Code:
masternode start-all

this is it, simple right?
your masternode is running and earning 24/7.
you can close the wallet or keep it open and synced.
Windows 10 gives you Notifications on Incomming Transactions.

here are some more tips:

Cold Wallet:
- use the debug console, try help or help masternode
- take a look at the masternode list and look up your Transactions ID with masternode list you can also see the status there.

VPS Masternode:
try masternode status once everything has been done to verify your node working.


sit back, enjoy and donate some DAS

i am goin to add some credits later
445  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Arctic Coin (ARC), No premine, Evolution over 1 year on: August 02, 2017, 07:22:36 PM
i got paid 13h ago, 7.65 ARC
fits the numbers from homepage, hope it stays that way Cheesy
masternodeguide coming up:
446  Alternate cryptocurrencies / Announcements (Altcoins) / Re: |ANN| DAS - Decentralized and Security. Private Send. Masternodes. on: August 02, 2017, 04:25:49 PM
here is why i like das:

- low entry, i brought my mn for $150, currently its only $108 ... try to buy a dash masternode, it would be worth it, but the entry is very high and so are most masternode coins. there may always be low entry masternode coins, older once will raise because new generations want to join the rush but cant afford it
- the website and logo look great, "namehere" did a great job.
- crpyto masternode tech is brand new. passive income for life! dont sleep, there is room for more than one coin.
- masternodes get a lot of attention. sooner or later those coins will be massive because of the way it works.
- pos vs masternode? pos needs alot of coins to be worth it. masternodes should have the advantage but i know nothing.

ah well, enough for now, i tell you, buy some das, setup masternode, sit back and enjoy the payments, it feels great Cheesy

kw31 #deeponion w160c859/10
447  Alternate cryptocurrencies / Announcements (Altcoins) / Re: |ANN| DAS - Decentralized and Security. Private Send. Masternodes. on: August 02, 2017, 04:20:10 PM
the dev doesnt have to write or awnser anything in here.
i would rather have him sit behind the led screen updating das.
but wait. updates for coins can break the coins.
ok wait with updates untill something good happend and its worth updating.
there once was a saying, "do not update as long as it is working"
these days people want updates even if it doesnt change anything for them xD
i say make updates important again! ^^

osx wallet, meh, i say buy a real computer xD
just kidding, maybe radix42 could make a port.
he did some other coins osx ports, i may ask him

kw31 #deeponion w107c560/09

448  Alternate cryptocurrencies / Mining (Altcoins) / Re: CCminer(SP-MOD) Modded NVIDIA Maxwell / Pascal kernels. on: August 02, 2017, 03:47:29 PM
#4 is bether with low tdp.  (low power kernel)

It's not an increase of 10% with 100% tdp.

It turns out we paid you 0.05 btc for the difference of 1-2 mh from free miners?
 Huh Huh Huh Huh Angry Angry Angry

you failed to notice he was talking about 10% increase from skunk spmod#3



i would like skunk #4 too, if i get the same hash with lower tdp and cooler rigs its a big win too.

could you please add a millisecond timer to the share accepted output?
i would like to know how quickly my shares reach the pool.

im testing different pools and i noticed 10mh/s difference in hashrate.
maybe because difficulty is still adjusting as it is currently slowly raising.

still i think a good connection to the pool is important and why not show the data.

kw31 #deeponion w101c530/09
449  Alternate cryptocurrencies / Announcements (Altcoins) / Re: |ANN| DAS - Decentralized and Security. Private Send. Masternodes. on: August 01, 2017, 04:06:34 PM

i need to change something on my Asus RT-AC87U Router?

yes you need to open the port in your router
most router can be managed via web interface

Code:
ipconfig
will also give you the gateway ip, this is your router and you can call the ip in your webbrowsers address bar.
for login information consult the backside of your router. the ip should be there too.

once you are logged in you need open the tcp port for the ip4 address where your node is running.
it should be under "internet" and "port forwarding" never used asus router
but it should be easy to find, also there must be a million tutorials out there on how to open a port
good luck

kw31 #deeponion c113w587/07
450  Alternate cryptocurrencies / Announcements (Altcoins) / Re: |ANN| DAS - Decentralized and Security. Private Send. Masternodes. on: August 01, 2017, 03:55:27 PM
Do you have a guide for starting a masternode using a VPS?

i have written one, need to fix format and will release then.
for now you can go to website, there is the best tutorial, there are lots of others, but many fail on delivering all details.
the guide from website should get your node up: https://www.dascrypto.com/

Thank you for response - but I don't think the website even mentions a VPS?  Am I wrong?  The windows guide is nice but that it only for running a MN through your PC...meaning you'll have to have it running 24/7.  Or am I mistaken?  Sorry, I'm a novice.

u want the linux guide
451  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ICO] ShadowToken for the highly rated Shadow Era TCG on: August 01, 2017, 01:14:28 PM
i should have cancled my order at 0.02 ^^ could have had 500 more token  Undecided
452  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ICO] ShadowToken for the highly rated Shadow Era TCG on: August 01, 2017, 01:01:42 PM
no tokes at waves pair
453  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ICO] ShadowToken for the highly rated Shadow Era TCG on: August 01, 2017, 12:11:47 PM
The sell walls will be distributed over all pairs according to relative demand, but not all at once

ok nice ... its very quiet here and in dex
people get ready, this could be sold out in minutes
it only takes one whale to buy them all and quadrupple the price xD
454  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ICO] ShadowToken for the highly rated Shadow Era TCG on: August 01, 2017, 12:01:59 PM
That's the approximate starting prices, yes. The launch price will be set based on the exchange rate in 1 hour.

thanks, exchange rate is a very loose variable xD

also i wonder, on the DEX each Pair has its own market,
so will there be a limited supply per pair?
like
$200k on BTC
$200k on ETH
$100k on WAVES

maybe i the DEX works differntly and you can just put up 500k in all 3 of them!?
455  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ICO] ShadowToken for the highly rated Shadow Era TCG on: August 01, 2017, 11:54:21 AM
2 more hours to go!

Unfortunately, a very small amount of SHDW was mistakenly sent out early a few weeks ago for some consulting fees, and they went ahead and listed it on the DEX to try to trick people into buying at a high price. Lesson learned. :p



are those the prices the token will be sold for?:

SHDW/ETH 29/07/2017 6:01:34   Sell   0.00026587   1,000.00000000   0.26587000
SHDW/BTC 29/07/2017 5:59:56   Sell   0.00002301   1,000.00000000   0.02301000
SHDW/WAVES 29/07/2017 6:00:42   Sell   0.01678896   1,000.00000000   16.78896000

?

also each has its own market, how many token are available per market?
456  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Introducing NEO(was Antshares) + General Information And Resources on: August 01, 2017, 10:55:17 AM
i like the ANS Icon, but NEO is alright too
457  Alternate cryptocurrencies / Announcements (Altcoins) / Re: {ANN} Masternodecoin 【airdrop】 -- on: August 01, 2017, 10:05:13 AM
register for airdrop

but,
all coins will be distributed free via airdrop?
not all! PoW mining is no Airdrop
458  Alternate cryptocurrencies / Announcements (Altcoins) / Re: |ANN| DAS - Decentralized and Security. Private Send. Masternodes. on: August 01, 2017, 09:59:18 AM
Do you have a guide for starting a masternode using a VPS?

i have written one, need to fix format and will release then.
for now you can go to website, there is the best tutorial, there are lots of others, but many fail on delivering all details.
the guide from website should get your node up: https://www.dascrypto.com/
459  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Arctic Coin (ARC), No premine, Evolution over 1 year on: August 01, 2017, 09:54:46 AM
I am not receiving any payouts from my masternode Sad I have one running for two days now.


Code:
09:30:45

goldminenode start-alias gm1


09:30:45

{
  "alias": "gm1",
  "result": "successful"
}


and

Code:
09:30:53

goldminenode status


09:30:53

{
  "vin": "CTxIn(COuxxxxxx(a1f7dd8xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxf7e847f18fee278a7a993, 1), scriptSig=)",
  "service": "MYIP:7209",
  "payee": "AYRxxxxxxxxxxxxxxxxxxxxxxxxxxxzuvf",
  "status": "Goldminenode successfully started"
}


What could I be doing wrong?


There's some randomness to who gets paid out.
Looking at https://arcticcoin.org/en-EN/goldmine-list everything on your node looks fine. Perhaps you will be lucky and get 2 blocks tomorrow Smiley

FYI (and I am guilty of this myself): Everything but the masternode key as public information (tx id, ip, payee address)

well i keep waiting a little longer
460  Alternate cryptocurrencies / Service Discussion (Altcoins) / Re: So Poloniex is just hijacking users coins at will now? on: August 01, 2017, 09:49:44 AM
Poloniex is a scam site.
Really? Are you sure? I've been using poloniex exchange almost more than 1year now but i never experienced that they run my money so if you experienced that they scam your money i think the reason is the hackers that's why they put a 2fa for your account to protect it from hackers and Poloniex exchange is user friendly but sometimes they're late to reply your ticket.

lol he was obiously just trolling since polo is the biggest exchange xD
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 [23] 24 25 26 27 28 29 30 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!