Bitcoin Forum
May 24, 2024, 07:04:48 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 »
  Print  
Author Topic: CRAVE: Revival  (Read 54972 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
tkon3
Hero Member
*****
Offline Offline

Activity: 824
Merit: 1000



View Profile
June 17, 2017, 12:15:08 AM
Last edit: September 20, 2017, 06:49:13 PM by tkon3
 #21

Masternode setup Guide for a VPS (LINUX OS)

The purpose of this guide is to setup a masternode on a VPS.

Requirements

     - crave wallet running on your local computer with at least 500 cravecoins
     - the software Putty to connect and send commands through SSH
     - the software WinSCP to see your VPS's folders, it will ease the configuration
     - a VPS running a linux distribution (Ubuntu (16.04 LTS) / Debian are recommended or Raspbian (Jessie Lite) for a Raspberry PI)

STEP 1 : Compiling the Crave wallet on your VPS

Connecting to the VPS

     - Make sure SSH is enabled on your VPS.
     - Start Putty and enter the VPS ip address. If your are running a VPS on your local network you need to put the local ip instead.
     - Enter your username and you password.

#################################################################################################################################################

You can skip the entire STEP 1 by downloading the compiled wallet  (tar.gz file), if you are using a Raspberry PI with Raspbian, download the ARM 32 bit version. In this case, open WinSCP, go into the /home/ folder and drag crave.tar.gz.
In Putty you have to run the following commands to extract then delete the archive, if the file is in the /home/ directory :
Code:
cd /home/
sudo tar xzvf CRAVE_BUILD_YOU_DLED.tar.gz
sudo rm -r CRAVE_BUILD_YOU_DLED.tar.gz
The crave folder will be created with everything in. The file "craved" is located in /home/crave/src :
Code:
cd crave/src
You can now directly follow STEP 2.

#################################################################################################################################################

If you dont want to skip then lets start :

Compiling the wallet

     - You need to gitclone the crave repositery :
Code:
sudo apt-get install git
git clone https://github.com/CooleRRSA/crave.git
A Crave folder will be created. To make a verification, open WinSCP and check your VPS files. You'll need to know the path of your crave folder for the next steps.

     - You need to install dependencies :
Code:
sudo apt-get -y update && sudo apt-get -y install build-essential libssl-dev libdb++-dev libboost-all-dev libcrypto++-dev libqrencode-dev libminiupnpc-dev libgmp-dev libgmp3-dev autoconf autogen automake libtool

     - You need to enter your Crave folder, use WinSCP to find the path. For exemple if the path is /home/crave , you need to use this command :
Code:
cd /home/crave
Now you can run this to start compiling :
Code:
cd src
sudo make -f makefile.unix
Your VPS will start compiling the wallet. It can take more than 1 hour on a Raspberry PI so be patient.
If your VPS lacks of RAM to compile, follow this guide to add memory using a swap file

     - If everything went well, you should have a new file in your crave/src folder :
Code:
ls
If there is a file named "craved", then your wallet is ready.


STEP 2 : Starting and configuring the wallet

     - To start the wallet, you need to enter the src folder and simply type :
Code:
./craved -daemon
You should get "Crave server starting". When you start the wallet for the first time a new folder is created with the chain, the conf file and so in. This folder is located in the same repositery as the crave one.
For exemple if your crave folder path is /home/crave , then the new folder path is /home/.crave (sometimes its located in the /root folder). You won't see it in WinSCP so you need to make hidden folders visible by clicking on the small icon at the bottom right of WinSCP.

     - Now you need to configure your wallet, first we need to close the wallet and edit the conf file :
Code:
./craved stop
cd ..
cd ..
cd .crave
sudo nano crave.conf
The nano command allow you to edit the conf.file. If you are lazy, you can simply create the crave.conf on your desktop and send it in the .crave folder through WinSCP.
The file should look something like that :
Code:
rpcuser=XXXXXXXXXXXXX
rpcpassword=XXXXXXXXXXXXXXXXXXXXXXXXXXXX
rpcallowip=127.0.0.1
#----
listen=1
server=1
daemon=1
staking=0
#--------------------
To save the file, press CTRL X, then YES, then ENTER to save.

     - Now we restart the wallet and we wait it the get fully synced
Code:
cd ..
cd crave/src
./craved
It should take some time to sync so be patient again.
To check the last block synced you can run :
Code:
./craved getmininginfo


Now you have the choice between two methods of running the masternode. The first named A will allow you to control your MN remotely and will be cold wallet style. The second named B just shows you how the run the MN on your VPS without remote control. I recommend you to use the first method, its easier and safer.


METHOD A : Sending coins and setting up the Masternode

     - Open your Windows wallet, go into the console and type :
Code:
masternode genkey
Copy this string in a txt file, its your masternode priv key.

     - We create a new address to receive your 500 cravecoins, type in the console :
Code:
getaccountaddress mn01
You can call it whatever you want (mn1 or 0 or abcd...). Copy the address printed in the txt file also.

     - Now send exactly 500 cravecoins to the address you just received and wait for 10 confirmations. You have to close the wallet now, we will reopen it later. Dont forget to backup your wallet.

     - You got some time to spare so we gonna edit your crave.conf. For Windows users the file is located in C:\Users\your_name\AppData\Roaming\Crave. To see this folder you need to make hidden folders visible. If you do not have the crave.conf file in your folder, create a txt file name "crave.txt" then change the extension to crave.conf. We need to edit this file, just copy :
Code:
rpcuser=SomeRandomString
rpcpassword=EvenLongerRandomString
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
staking=0
logtimestamps=1

     - Now we gonna edit your VPS conf file again but before the VPS wallet must be closed and fresh (no transaction), the command is :
Code:
./craved stop

     - Now use WinSCP to navigate through your folders. The conf file is located in the .crave folder, i told you before. You can edit directly with WinSCP. The file has to be like this :
Code:
rpcuser=SomeRandomString
rpcpassword=EvenLongerRandomString
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
staking=0
logtimestamps=1

port=9999
masternode=1
masternodeaddr=XXX.XXX.XXX.XXX:9999
masternodeprivkey=XXXXXXXXXXXXXXXXXXXXXXXXXX
This one must be exactly the same as the Windows one but we added 4 more lines.
Port : select an open port, I recommend you to use 9999
masternodeaddr : you have to put your VPS ip and the port.
masternodeprivkey : its the string you got from the "masternode genkey" command before.

Save the file. In the same folder, delete your wallet.dat (if it's an empty wallet there is no problem, else backup it then delete), the txlvldb folder and the blk00001.dat using WinSCP.

Keep WinSCP open, we gonna copy some files. Go back to your Windows crave folder where you edited the first crave.conf and drag the txlvldb folder and the blk00001.dat file to your .crave VPS folder. It will take 3-4 minutes to copy. When its done, we can start again the VPS wallet. If your VPS crave folder path is /home/crave then :

Code:
cd /home/crave/src
./craved
The server is starting. You can now close Putty and WinSCP.

     - Now open you Windows wallet again, you should have your 10 confirmations now. Go into the console and type :
Code:
masternode outputs
A string will be printed, something like that : "aa7c6c173f7b691e5a070a37aeazd23557636ad1b4b43680ace39d522e1d4493" "1" . The first part is your transaction hash, the "1" is the index.
Save them in your txt file.

     - Now we gonna create the masternode.conf file. In you wallet, click on the "Masternode" tab, you will see the list of active masternodes. Click on My masternode and on Create.
A box appears :
Alias : its name of your masternode, type mn01
Address : its the IP and the port you used in your VPS conf file, use the same.
Privkey : its your masternode privkey from the "masternode genkey" command.
TxHash : its the first part of the "masternode outputs" command, in my example its aa7c6c173f7b691e5a070a37aeazd23557636ad1b4b43680ace39d522e1d4493
OutputIndex : its the last number, in my case its 1

Click Ok and wait few seconds. A new entry is created, its your masternode. It should say that your masternode is not on the list.
To start it, unlock the wallet, and press start and you are done !



METHOD B : Sending coins and setting up the Masternode

     - When your wallet is synced, you need to setup the masternode :
Code:
./craved masternode genkey
You'll receive a long string of letters and numbers. Copy it in a txt file, you'll need it later.

     - Lets create a new receiving address :
Code:
./craved getaccountaddress 0
This address will receive your coins. Save also this one in the txt file.
Open your Windows wallet if it isnt yet and send exactly 500 crave to this address. You'll have to pay a fee in addition.
You now need to wait for 10 confirmations before we continue.

#################################################################################################################################################

     - To pass time, we gonna secure your wallet :
Code:
./craved encryptwallet YOUR_WALLET_PASSWORD
Dont forget this password to unlock your wallet later. The wallet will shutdown alone after few seconds.

     - Before restarting the wallet, we gonna edit the conf file again (you can do that on Windows and send the file through WinSCP if you want to)
Code:
cd ..
cd ..
cd .crave
sudo nano crave.conf
The conf file must look like that :
Code:
rpcuser=XXXXXXXXXXXXX
rpcpassword=XXXXXXXXXXXXXXXXXXXXXXXXXXXX
rpcallowip=127.0.0.1
#----
listen=1
server=1
daemon=1
staking=0
#--------------------
masternode=1
masternodeaddr=XXX.XXX.XXX.XXX:PORT
masternodeprivkey=XXXXXXXXXXXXXXXXXXXXXXXXX
Masternodeaddr is the ip and the port used by your VPS. The port must be open.
Masternodeprivekey is the string you got from the "masternodegenkey" command.

     - You need to restart the wallet now :
Code:
cd ..
cd crave/src
./craved
Everytime you start your wallet, wait 1 min before sending commands to make sure it is fully loaded.

     - You need to backup your wallet. I usually backup it in the home folder to avoid permission problems :
Code:
./craved backupwallet /home/
Use WinSCP to copy this wallet.dat to your local machine in case something goes wrong.

#################################################################################################################################################

The wallet in now ready to run the masternode

     - First check if your transaction has the 10 confirmations needed with the block explorer using your receiving address to search. Then we check if your 500 cravecoins are credited into your wallet
Code:
./craved getbalance
You should get 500.00000000

     - We can now start the masternode
Code:
./craved masternode start YOUR_WALLET_PASSWORD
You should get "Masternode successfully started".

You can close Putty and let it run.


Happy Masternoding



Here a link to get all the commands available.

Standard Iptables command (firewall):

Code:
sudo iptables -A INPUT -p tcp --dport 9999 -j ACCEPT

Allow trafic on port 9999.

In case you want to get your 500 coins back :

     - Unlock your wallet for few seconds :
Code:
./craved walletpassphrase YOU_WALLET_PASSWORD 120

     - Setting up the default fee amount :
Code:
./craved settxfee 0.00001

     - Sending your coin back :
Code:
./craved sendfrom 0 THE_RECEIVING_ADDRESS amount
If you have 502 craves on your MN, the amount must be 502-0.00001=501.99999 (reduced by fees)


I'll probably edit this guide in the future since its not perfect.

You can also check here and here as examples if you have troubles.

Donate : C44KanjHjCgcJimsCyLJKV9XkEpW2tGfZb
Qbanow
Member
**
Offline Offline

Activity: 102
Merit: 10


View Profile
June 17, 2017, 01:28:38 PM
 #22

hi, how can I get this info: TxHash  and Output Index to build my MN. Thanks in advance.
TheKingInYellow
Sr. Member
****
Offline Offline

Activity: 546
Merit: 257


Have you found the Yellow Sign?


View Profile
June 17, 2017, 01:29:41 PM
 #23

Well, this seems promising.

DAPS Project, anonymizing assets for the world. Controlling your financial sovereignty is your right, join now!
DAPS (Decentralized - Anonymous - Payment - System)
Zero-Knowledge Proofs - Revolutionary Proof-Of-Audit algo - Masternodes - PoSv3 - Worldwide community
neosone
Full Member
***
Offline Offline

Activity: 228
Merit: 100


View Profile
June 17, 2017, 01:41:54 PM
 #24

DEPOSIT: CRAVE  YOBIT
No free addresses for such currency. Please try again in 2 minutes.
WITHDRAWAL: CRAVE YOBIT
Wallet status: Maintenance
It is a pity.
mullzerwar
Sr. Member
****
Offline Offline

Activity: 574
Merit: 250


View Profile
June 17, 2017, 01:45:53 PM
 #25

Don't trade on Yobit!!! Yobit CRAVE Wallet is not working!!!
[/size][/font]


Is there any recommendation other than yobit to trade this coin? the best exchanger i hope Cheesy
tkon3
Hero Member
*****
Offline Offline

Activity: 824
Merit: 1000



View Profile
June 17, 2017, 01:59:26 PM
 #26

hi, how can I get this info: TxHash  and Output Index to build my MN. Thanks in advance.
In console
Code:
masternode outputs
CooleRRSA (OP)
Member
**
Offline Offline

Activity: 125
Merit: 20


View Profile
June 17, 2017, 09:34:18 PM
 #27

Multiple Masternodes setup Guide

Step-by-step guide for starting multiple masternodes (3 masternodes in this example)

Requirements

     - crave wallet running on your local computer with at least 500 cravecoins for every masternode
     - white static IP with open ports for masternodes

STEP 1 : Prepairing masternodes

    1 - Choose the place where you will hold you masternodes dirs (you need 1,5Gb free space for every masternode)
    2 - Create folder "CraveMN1" there
    3 - Copy file "crave-qt.exe" in folder "CraveMN1"
    4 - Create in folder "CraveMN1" new folder "data"
    5 - Copy file "blk0001.dat" and folder "txleveldb" in created folder "data"
    6 - Rename "crave-qt.exe" to the "crave-mn1.exe"
    7 - Press Win+R and type "cmd" and press Enter
    8 - Now type there:

Code:
echo start crave-mn1.exe -datadir=./data > %homepath%/Desktop/startmn1.cmd
   
    9 - Move file "startmn1.cmd" from Desktop to the "CraveMN1" folder
   10 - Repeat the process from step 2 for each masternode you want to created, with changing mn1 to mn2, mn3
   11 - Run startmn1.cmd, startmn2.cmd and startmn3.cmd, wait for complete loading wallets and complete syncing with blockchain
   12 - Now you can exit from each running masternode wallets

STEP 2 : Prepairing controller wallet

    1 - Open your main wallet where you have your coins
    2 - Go to Recieve tab
    3 - Press button "New address" and enter "Masternode 1" in Label (do not check "Stealth address")
    4 - Send to this address exactly 500 CRAVE
    5 - Wait for 1 confirmation of transaction and go to the Debug console
    6 - Run command "masternode genkey" and write down generated key (this is your masternode private key)
    7 - Run command "masternode outputs" and write down hexnumbers (this is your masternode tx) and digit after ":" (this is tx index)
    8 - Go to Masternodes tab and switch to the "My Masternodes"
    9 - Press button "Create"
   10 - Enter "Alias" - "MN1" (do not use spaces and special charatcers)
   11 - Enter "Address" - "YOUREXTERNALIP:PORT" (your external white ip and port for masternode)
   12 - Enter "Privkey" - masternode private key you generated with "masternode genkey"
   13 - Enter "TxHash" - masternode tx from "masternode outputs" command
   14 - Enter "Output Index" - tx index from "masternode outputs" command
   15 - Now you can press "Ok"
   16 - Repeat process from step 2 for MN2 and MN3. With renaming MN1 to MN2 and MN3 and changing port

#################################################################################################################################################

When you get to step 7 "masternode outputs" in second time you will see 2 lines with txhash and index. You must choose the new line with txhash.
When you get to step 7 "masternode outputs" in third time you will see 3 lines with txhash and index. You must choose the new line with txhash.

#################################################################################################################################################

   17 - Press "Update" and you will see all three masternodes in list with status "Not in the masternode list."
   
#################################################################################################################################################

Steps 8-15 creates masternode.conf. You can skip this steps and create it by yourself.
It have format:
Code:
ALIAS IP:PORT PRIVKEY TXHASH OUTPUTINDEX
One line - one masternode config

#################################################################################################################################################

STEP 3 : Configuring masternodes

    1 - Go to "CraveMN1/data" folder
    2 - Open "crave.conf" in Notepad
    3 - Type there:

Code:
port=PORT
masternode=1
masternodeaddr=IP:PORT
masternodeprivkey=PRIVKEY
       
    4 - Replace PORT with port for your Masternode 1, IP:PORT with your external white ip and the same port for you Masternode 1
    5 - Replace PRIVKEY with masternode private key you generated with "masternode genkey" in controller wallet for Masternode 1
    6 - Save it and repeat process for Masternode 2 and Masternode 3.

STEP 4 : Starting masternodes

    1 - Now you can start all your masternodes with "startmn1.cmd", "startmn2.cmd" and "startmn3.cmd"
    2 - Go to controller wallet, check that your coins in Masternode 1, 2 and 3 addresses have at least 15 confirmations.
    3 - Go to Masternodes tab and switch to the "My Masternodes"
    4 - Press "Start All"

Thats all folks. You have created 3 working masternodes.
Don't be afraid to running PoS on controller wallet. It's do not damaged your masternode transactions because all masternode coins will be excluded from PoS.

Slothman
Sr. Member
****
Offline Offline

Activity: 332
Merit: 263


Embrace The Darkness.


View Profile WWW
June 17, 2017, 11:58:36 PM
 #28

Yeah, we have been trying to open a dialogue with yobit for months, to no avail.  They are just ignoring this issue.  If anyone has any contacts at yobit, please feel free to reach out to them - that would be awesome Smiley
NEVER.SELL.CRAVE....EVER
Full Member
***
Offline Offline

Activity: 140
Merit: 100

Crave is the furure


View Profile
June 18, 2017, 08:22:30 PM
 #29

Everybody should join us on slack as there's the news and information about everything around Crave project.Here's silent most of times.

https://join.slack.com/cravecommunity/shared_invite/MTczMTI3MTU2MzcyLTE0OTI4NzQ1ODEtODI1ZDNkYzM4ZQ



I've got no reason to write anything here.
Slothman
Sr. Member
****
Offline Offline

Activity: 332
Merit: 263


Embrace The Darkness.


View Profile WWW
June 19, 2017, 03:38:58 AM
 #30

To-Do List (in no particular order)

Near Future:

  • Add Bounties to Thread
  • New Roadmap
  • Vision/Goals/Future
  • New Slack Channel
  • Form CRAVE Subreddit
  • Announce Team, Positions Needed, etc.
  • Decision on Logo, Branding

Future:

  • Website Redesign
  • Larger Exchange Listing


Please feel free to add things to this list, check off those completed, etc.
This list is my opinion of what I think we should work on to get completed, not fact.
mela65
Sr. Member
****
Offline Offline

Activity: 1148
Merit: 282

Best Crypto / Online Casino Writing Services


View Profile
June 19, 2017, 03:44:09 AM
 #31

I didn't understand if we don't trade on yobit, why developers deal with yobit. Anyway, is there any bounty campaign ? I wish success to all team. Be safe and work hard.
Elkmar
Full Member
***
Offline Offline

Activity: 294
Merit: 100


View Profile
June 19, 2017, 03:57:50 AM
 #32

Well I am interested in the masternode, but it does not seem like the easiest thing to do.
Slothman
Sr. Member
****
Offline Offline

Activity: 332
Merit: 263


Embrace The Darkness.


View Profile WWW
June 19, 2017, 04:03:24 AM
 #33

Well I am interested in the masternode, but it does not seem like the easiest thing to do.
If you follow the step-by-step guide closely, it's really not that bad!  Just set a few up the other day.

If you want to try it, if you encounter any problems, feel free to ask.  Or join the slack channel.  Could read through some conversations we had today regarding masternode setup - might be helpful.
Elkmar
Full Member
***
Offline Offline

Activity: 294
Merit: 100


View Profile
June 19, 2017, 04:18:36 AM
 #34

Well I am interested in the masternode, but it does not seem like the easiest thing to do.
If you follow the step-by-step guide closely, it's really not that bad!  Just set a few up the other day.

If you want to try it, if you encounter any problems, feel free to ask.  Or join the slack channel.  Could read through some conversations we had today regarding masternode setup - might be helpful.

Ok, just to be sure, I have no experience at all with VPS, I know amazon has a 12 month free offer. I can follow the Vps masternode tutorial with the amzon offer even without being on linux on my PC ?
CooleRRSA (OP)
Member
**
Offline Offline

Activity: 125
Merit: 20


View Profile
June 19, 2017, 08:33:46 AM
 #35

I have created whitepaper wallet generator.
mekar sari
Hero Member
*****
Offline Offline

Activity: 1302
Merit: 501


Sovryn - Brings DeFi to Bitcoin


View Profile
June 19, 2017, 08:44:14 AM
 #36

Don't trade on Yobit!!! Yobit CRAVE Wallet is not working!!!
[/size][/font]


Is there any recommendation other than yobit to trade this coin? the best exchanger i hope Cheesy
Iam will not recomended for yobit
i think you must trade on coinexchange

.#1 DeFi for Bitcoin Platform.            ███   ███
           ███   ███
          ███   ███
         ███   ███
        ███   ███
       ███   ███
      ███   ███
     ███   ███
    ███   ███
   ███   ███
  ███   ███
 ███   ███
███   ███
▄  ▄██████████████████████▄  ▄
 ▀▄ ▀████████████████████▀ ▄▀
  ▀█ ▀████▀ ▄▄            █▀
   ▀█▄ ▀█ ████████████▀ ▄█▀
     ██▄ ▀▀▀▀▀▀▀▀▀███  ██
      ███      ▀█▄ ▀ ▄██
       ███▄ ▀█████ ▄███
        ████ ▀██▀ ▄███
         ▀███▄  ▄███▀
          ▀███▄ ▀██▀
            ████▄ ▀
             ████▀
              ▀█▀
SOVRYN███   ███
 ███   ███
  ███   ███
   ███   ███
    ███   ███
     ███   ███
      ███   ███
       ███   ███
        ███   ███
         ███   ███
          ███   ███
           ███   ███
            ███   ███
.Join Origin Pre-Sale.
████████████████████████████
████████████████████████████
████████████████████████████
████████▀▀▄██████▄▀▀████████
███████  ▀        ▀  ███████
██████                ██████
█████▌   ███    ███   ▐█████
█████▌   ▀▀▀    ▀▀▀   ▐█████
██████                ██████
███████▄  ▀██████▀  ▄███████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
████████████████████████████
█████████████████▀▀  ███████
█████████████▀▀      ███████
█████████▀▀   ▄▄     ███████
█████▀▀    ▄█▀▀     ████████
█████████ █▀        ████████
█████████ █ ▄███▄   ████████
██████████████████▄▄████████
████████████████████████████
████████████████████████████
████████████████████████████
NEVER.SELL.CRAVE....EVER
Full Member
***
Offline Offline

Activity: 140
Merit: 100

Crave is the furure


View Profile
June 19, 2017, 08:48:10 AM
 #37

Don't trade on Yobit!!! Yobit CRAVE Wallet is not working!!!
[/size][/font]


Is there any recommendation other than yobit to trade this coin? the best exchanger i hope Cheesy
Iam will not recomended for yobit
i think you must trade on coinexchange

What's wrong with Cryptopia??It works perfectly for everybody.
https://www.cryptopia.co.nz/Exchange/?market=CRAVE_BTC


I've got no reason to write anything here.
cctothemass
Sr. Member
****
Offline Offline

Activity: 686
Merit: 287


View Profile
June 19, 2017, 02:17:31 PM
 #38

WOW! Crave coin is live! I remember how it was cool to follow the first developer, it was a cool project. I really wanted to raise the master node, but it was very expensive for me. After so much time I can raise the node Smiley How many active wallets now and coins? Is there a Russian community here?
tkon3
Hero Member
*****
Offline Offline

Activity: 824
Merit: 1000



View Profile
June 19, 2017, 03:10:38 PM
 #39

WOW! Crave coin is live! I remember how it was cool to follow the first developer, it was a cool project. I really wanted to raise the master node, but it was very expensive for me. After so much time I can raise the node Smiley How many active wallets now and coins? Is there a Russian community here?

Around 130 masternodes running. Almost 1.3 million coins, but some are probably lost in the limbo.
cctothemass
Sr. Member
****
Offline Offline

Activity: 686
Merit: 287


View Profile
June 19, 2017, 03:31:38 PM
 #40

WOW! Crave coin is live! I remember how it was cool to follow the first developer, it was a cool project. I really wanted to raise the master node, but it was very expensive for me. After so much time I can raise the node Smiley How many active wallets now and coins? Is there a Russian community here?

Around 130 masternodes running. Almost 1.3 million coins, but some are probably lost in the limbo.
The synchronization of the wallet has just ended. How many coins will be extracted if 500 coins are in the wallet, or master node be created?
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!