Search content
Sort by

Showing 12 of 12 results by ramonestii
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] CoinonatX-PoW/PoS-Masternodes-75% APR (CXT Sister) -NEW THREAD
by
ramonestii
on 09/11/2017, 18:45:56 UTC
Slack link does not work. Is there a other social communication (except twitter).
Post
Topic
Board Announcements (Altcoins)
Re: [*] 8BIT [Dark Masternodes][Anon][Roadmap Stage 4]
by
ramonestii
on 17/10/2017, 01:08:47 UTC
That nodes in First Page are updated ?
Post
Topic
Board Announcements (Altcoins)
Re: [*] 8BIT [Dark Masternodes][Anon][Roadmap Stage 4]
by
ramonestii
on 17/10/2017, 00:11:42 UTC
How many coins a Masternode receive Daily ?
Post
Topic
Board Criptomoedas Alternativas
Re: [ANN][ICO][DAR] Darcrus | Blockchain Database Startup - Enterprise, Everywhere
by
ramonestii
on 15/10/2017, 02:48:02 UTC
Quantas moedas são necessarias para montar Masternode ?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SYNX] SYNDICATE Ltd | Masternodes, PoS, Community voted projects
by
ramonestii
on 13/10/2017, 17:34:24 UTC
How many Synx is necessary to mount a Masternode ?
Post
Topic
Board Announcements (Altcoins)
Re: [*] 8BIT [Dark Masternodes][Anon][Roadmap Stage 4]
by
ramonestii
on 13/10/2017, 13:45:47 UTC
Is there a Social communication ? Slack, Discord, telegram ?
Post
Topic
Board Announcements (Altcoins)
Re: [*] 8BIT [Dark Masternodes][Anon][Roadmap Stage 4]
by
ramonestii
on 12/10/2017, 22:31:04 UTC
rename the 8bit CLI folder to 8bitCLI

then proceed with the GUI compilation-installation. Although after a few days the GUI crashes on linux as well (segmentation core dump)

In addition the config folder is hidden under the name .8bit on your home folder. Both the CLI and the GUI take their settings and blockchain data from .8bit folder (the same of appdata/roaming/8bit if you were on windows).

It return an error when I try to run 8bitd: "8bitd: error while loading shared libraries: libsecp256k1.so.0: cannot open shared object file: No such file or directory"
Post
Topic
Board Announcements (Altcoins)
Re: [*] 8BIT [Dark Masternodes][Anon][Roadmap Stage 4]
by
ramonestii
on 12/10/2017, 14:18:28 UTC
Create Wallet on Linux
Can someone drop a link to get a 8bit masternode running on Ubuntu? Thanks a lot!

Best instructions ever.
Just copy & paste.
From my experience if its a vm with not a lot ram or an old machine you should add a swap file (at least 4GB)

Once I wrote for myself the installation instructions, maybe it will come in handy.

1. Setting dependencies:
Code:
sudo apt-get install -y libminiupnpc-dev autoconf automake build-essential libssl-dev libdb++-dev libboost-all-dev libqrencode-dev

2. Installation secp256k1
Code:
cd ~&&git clone http://www.github.com/bitcoin/secp256k1&&cd  secp256k1&&git checkout a1d5ae1&&./autogen.sh&&./configure&&make&&sudo make install&&cd ..

3. Installing 8bit
Code:
cd ~&&git clone https://github.com/8bit-dev/8bit&&cd 8bit/src&&cp crypto obj/crypto -rR

Most likely, there will be an error in the assembly.
Therefore, you will need to fix ~/8bit/src/rpcrawtransaction.cpp

search for this line
                     const CScriptID& hash = boost::get(address);
It should work after changed to
                       const CScriptID& hash = boost::get(address);

Code:
make -f makefile.unix&&strip 8bitd&&sudo cp 8bitd /usr/bin

If everything went well and without errors, then you will have a console version of the wallet.
If you need the GUI:
1. Setting dependencies:
Code:
sudo apt-get install -y qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb++-dev libminiupnpc-dev

2. Installing 8bit-qt
Code:
cd ~&&git clone https://github.com/8bit-dev/8bit&&cd 8bit/src&&cp crypto obj/crypto -rR&&cd ..&&qmake&&make

Masternode Creation on Linux
can anyone please post a tutorial on how to setup masternode on ubuntu ?

I will. This guide will assume you have already built and installed 8bitd for a user on Ubuntu 16.04, and that your blockchain is already synced. If you have not achieved these yet, refer to the guide on pg 263 of this thread.

Start 8bitd:
Code:
8bitd

Allow it some time to once again fully sync. Meanwhile, generate a new bitcoin address under account name "mn"
Code:
8bitd -cli getnewaddress mn

Send EXACTLY 112 8bit to this address. If you are sending from Cryptopia, you will need to send 113 8bit, as they have a 1 8bit/tx fee.

Now for the masternode setup.
1. Set a static ip for our computer. There are more than enough Ubuntu guides on this out there, so do a search. Remember the local ip chosen for the computer because it will be needed in a moment. You will need to restart networking or simply reboot after changing the  /etc/network/interfaces file for static ip.

2. Make sure the ports you want 8bit to work through are open between the internet and your computer. If you have a router between your machine and the internet you will need to forward the port through your router. You may do this by logging into your router configuration page, by typing your router's local ip address into any web browser connected to the network. For example, I typed "192.168.0.1", some may be "10.0.0.1", etc. (you can run "ifconfig" in terminal to find the "Default Gateway" ip address, same thing). Log in. If you've never logged in before do a search engine search to find the default login credentials specific to your router, mine were username "admin" password "admin", for example. Now that you are in the router config, look for the "Forwarding" or "Port Forwarding" tab/section, and add a new rule to pass the port you choose on to your wallet computer. For the sake of this guide I will choose port 9991. You want to enter your port number into both service port and external port (unless you know what you are doing, I am just simplifying here), and then you want to provide the local ip address of the computer that will be running the masternode. Now open a second port to enable rpc, here I will use port 2222. So you may have forwarded 2 ports of your computer. Make sure to enable these settings in the configuration before exiting. Phewph, that's that.

3. you want to open the actual ports on your Ubuntu machine now, using ufw:
Code:
sudo ufw allow 9991
Code:
sudo ufw allow 2222
(if you want rpc)

4. Go to whatsmyip.com and get your public ip address if you do not already know it. Write it down.

5. Go back to the terminal and type:
Code:
8bitd -cli masternode genkey
Copy the masternode private key, we'll need it shortly.

6. Now we need to edit the 8bit config file to enable the masternode service:
Code:
cd ~
sudo nano .8bit/8bit.conf

You want all the following either added or uncommented in your config file:
Code:
rpcallowip=127.0.0.1  
rpcuser=YourUserName  #can be anything
rpcpassword=YourRPCPassword  #can be anything
rpcport=2222  #whatever you set it to in router config
server=1
daemon=1
listen=1
staking=0
port=9991  #whatever you set it to in router config
masternodeaddr=YOUR_PUBLIC_IP:9991
masternode=1
masternodeprivkey=KEY GENERATED BY COMMAND masternode genkey

Change the information specific to your needs (public ip, ports, mnprivkey, etc). Save and exit the editor.

7. Now we're going to stop 8bitd:
Code:
8bitd stop
Give it a few moments to stop and then start it up again:
Code:
8bitd

If you get an error, you probably just did not give it enough time to close fully before restarting.

Let the wallet sync, check if the 112 8bit has arrived yet, and to see if you are fully synced:
Code:
8bitd -cli getinfo

The 112 8bit need 16 confirmations in order to successfully start the masternode, you can check on the block explorer or by using the command:
Code:
8bitd -cli gettransaction entertransactionhashhere

8. Once the 112 8bit have arrived and are confirmed by at least 16 nodes, only one command remains:

Code:
8bitd -cli masternode start

There you go.

You ought to see the following output:
Code:
Masternode started successfully
or, oddly, sometimes:
Code:
Masternode started remotely

Pat yourself on the back.

8Sq5sDR5mHUEAtsJoJurrjUSu7E3QsCuop

On the above there is no need to port forward rpc port unless you want to manage the wallet remotely. It doesnt matter though if your rpcallowip is 127.0.0.1

Tips: 1KSacgdJwDPHxY1LCMUifsM1Xb6dQmZ8go



The last step, on Wallet create(2. Installing 8bit-qt) doesn't work, it show the message: "destination path '8bit' already exists and is not an empty directory."
Post
Topic
Board Announcements (Altcoins)
Re: [*] 8BIT [Dark Masternodes][Anon][Roadmap Stage 4]
by
ramonestii
on 11/10/2017, 01:44:23 UTC
I can't download the win Wallet. The Link return an error.

forget for win wallet - its broken and dont work.
wait for new wallet or try learn linux


Where is the Link ?
Post
Topic
Board Announcements (Altcoins)
Re: [*] 8BIT [Dark Masternodes][Anon][Roadmap Stage 4]
by
ramonestii
on 10/10/2017, 01:16:11 UTC
I can't download the win Wallet. The Link return an error.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][LOC]UPDATE V1.4.5 OUT!! LOCO|Quark|PoW/PoS|HiPos|Masternodes|Tor[LOC][ANN]
by
ramonestii
on 16/05/2017, 03:18:16 UTC
What is the minimum of coin to make a masternode ?
Post
Topic
Board Criptomoedas Alternativas
Re: [ANN][ARK] Uma plataforma para a adoção do consumidor [TEC-120% Bônus para Lisk]
by
ramonestii
on 14/12/2016, 19:02:45 UTC
ECO Friendly são as moedas que não requerem mineração, ou seja, não são gastos milhões de $$$ em energia elétrica pra manter a Blockchain.

Estou entre essa ARK e a WINGS para fazer um investimento, a decisão está difícil e as ICOs estão pra começar logo Huh

Então não vai ser possivel Minerar ARK ? Pois na imagem está disponivel a informação de recompensa de 5 ARKs, e essa informação é aparentemente sobre mineração ou POS, certo ?