Bitcoin Forum
April 25, 2024, 06:32:46 AM *
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 »  All
  Print  
Author Topic: [ANN] EXUS Coin - Pure POS + MASTERNODES (75% MN reward, 25% staking)  (Read 8503 times)
Salpinx (OP)
Jr. Member
*
Offline Offline

Activity: 140
Merit: 1


View Profile WWW
February 10, 2018, 05:44:24 AM
Last edit: May 06, 2018, 06:41:04 PM by Salpinx
Merited by leetlezee (1)
 #1












- Genesis block
- Wallets and website
- Listing EXUS on exchanges
- Listing EXUS on masternode monitoring websites
- Stability and security enhancements
- Whitepaper
- Marketing
- Listing EXUS on more exchanges
- Developer Team Expansion
- iOS and Android application development
- Zero Coin protocol
- Tor integration
- Invisible Internet Project (I2P) network integration
- Other security features integration

See the website for more detailed roadmap https://exuscoin.com/#roadmap





SouthXChange

Crypto-Bridge







Website:  https://exuscoin.com
Explorer: http://explorer.exuscoin.com:3333
Discord:  https://discord.gg/4ruXAPt
Telegram: https://t.me/ExusCoin
Twitter:  https://twitter.com/ExusCoin
Reddit:  https://www.reddit.com/r/EXUS
Publications/News:  https://medium.com/exus
GitHub:   https://github.com/exuscoin/exus
GitHub Releases:   https://github.com/exuscoin/exus/releases
Mac Wallet: Mac Wallet
Windows Wallet: Windows Wallet
Linux Wallet: Linux Wallet





 - Block spacing: 60 seconds
 - POW Block reward 10 EXUS until block 120,000
 - Instamine protection for the first 1440 blocks
 - POS reward 10 EXUS (92% goes to masternodes, 8% goes to stakers) until block 120,000
 - Pure POS after the block 120,000
 - Block reward after block 120,000 20 EXUS (75% goes to masternodes, 25% goes to stakers)
 - Premine 400,000 EXUS (0.95%)







Masternode Setup Guide

1. Deploy VPS Ubuntu 16.04 (make sure to add 4GB of swap)

VULTR is the best choice for the price and stability

2. 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 autotools-dev pkg-config bsdmainutils software-properties-common libzmq3-dev libminiupnpc-dev libssl-dev libevent-dev

sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev -y


3.1. Clone and build (skip this and go to step 3.2 if you want to download the daemon directly)

Code:

cd
git clone https://github.com/exuscoin/exus.git

cd ~/exus/src
make -f makefile.unix

cp ~/exus/src/exusd ~/




3.2 Download the daemon and unzip it (Skip this if you did a step 3.1.)

Code:

cd
wget https://github.com/exuscoin/exus/releases/download/v2.0.0.1/exusd-2.0.0.1-ubuntu-16.04.tar.gz
tar -xf exusd-2.0.0.1-ubuntu-16.04.tar.gz


4. Run exusd daemon

Code:

~/exusd -daemon


# Will see an error here:
'To use the "-daemon" option, you must set a rpcpassword in the configuration file'

5. Update exus.conf file

vi ~/.exus/exus.conf

PASTE TO THE FILE ABOVE:

Code:

rpcuser=user
rpcpassword=password
rpcport=15877
rpcallowip=127.0.0.1
daemon=1
server=1
staking=0




6. Run exusd daemon

Code:

~/exusd



7. Wait for server to sync. Run to see if blocks are increasing:

Code:

~/exusd getinfo


8. Generate masternode private key

Code:

~/exusd masternode genkey


Copy this key somewhere, you will need it in the steps 9 and 15

9. Update ~/.exus/exus.conf

Code:

~/exusd stop


vi ~/.exus/exus.conf


Updated file should look like this:

Code:

rpcuser=user
rpcpassword=password
rpcport=15877
rpcallowip=127.0.0.1
daemon=1
server=1
staking=0
port=15876
masternodeaddr=your_vps_ip_address:15876
masternode=1
masternodeprivkey=masternode_private_key


~/exusd

10. On Windows/Mac edit exus.conf

Code:

rpcuser=user
rpcpassword=password
rpcport=15877
rpcallowip=127.0.0.1
daemon=1
server=1
staking=0


11. On Windows/Mac go to Receive, generate a new address and assign a label to it, ex: MN1

12. Send exactly 5000 EXUS to the address above

13. Wait for at least 1 confirmation

14. Open debug console and type

Code:

masternode outputs


You should see output like this:
{
    "tx id will be here" : 0
}

15. Write for yourself:


Alias: You generated address label
Address: your_vps_ip_address:15876
Private Key: private key generated on your vps
TxHash: tx id from masternode outputs output
Output Index: index from masternode outputs tx id
Reward Address: (optional)
Reward %: (optional)

Example:
Alias: MN1
Address: 123.45.67.89:15876
Private Key: xxxxxxxxxxxxxxxxx----xxxxxxxxxxxxxx
TxHash: xxxxxxxxxxxxxxxxx
Output Index: 0
Reward Address:
Reward %:


16. On Windows/Mac Wallet Click Masternodes -> Create and fill information from the step 15

16. Click Update -> Start All

If you did all the steps correctly your Masternode should have "Is Running" status


1714026766
Hero Member
*
Offline Offline

Posts: 1714026766

View Profile Personal Message (Offline)

Ignore
1714026766
Reply with quote  #2

1714026766
Report to moderator
1714026766
Hero Member
*
Offline Offline

Posts: 1714026766

View Profile Personal Message (Offline)

Ignore
1714026766
Reply with quote  #2

1714026766
Report to moderator
Each block is stacked on top of the previous one. Adding another block to the top makes all lower blocks more difficult to remove: there is more "weight" above each block. A transaction in a block 6 blocks deep (6 confirmations) will be very difficult to remove.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
Rion
Jr. Member
*
Offline Offline

Activity: 206
Merit: 1


View Profile WWW
February 10, 2018, 05:44:57 AM
Last edit: April 05, 2018, 06:20:04 PM by Rion
 #2

POW over, thanks exus!

Holding: Bitcoin | Ethereum | Ark
Chocolatte
Full Member
***
Offline Offline

Activity: 182
Merit: 100

Citius, altius, fortius


View Profile WWW
February 10, 2018, 05:45:24 AM
 #3

Reserved
redsun17
Full Member
***
Offline Offline

Activity: 266
Merit: 100


View Profile
February 10, 2018, 05:57:46 AM
 #4

reserved

   SEMUX   -   An innovative high-performance blockchain platform   
▬▬▬▬▬      Powered by Semux BFT consensus algorithm      ▬▬▬▬▬
Github    -    Discord    -    Twitter    -    Telegram    -    Get Free Airdrop Now!
Bambalam
Member
**
Offline Offline

Activity: 154
Merit: 10


View Profile
February 10, 2018, 05:58:31 AM
 #5

Reserved

▬ ▬ ▬ ▬ ▬ ▬Mysterium Network▬ ▬ ▬ ▬ ▬ ▬
Decentralized   VPN   powered   by   Blockchain
JOIN THE ICO ▬▬▬ JOIN THE DISCUSSION
jiang2897
Newbie
*
Offline Offline

Activity: 138
Merit: 0


View Profile WWW
February 10, 2018, 06:07:06 AM
 #6

The power is too big! SOLO is not moving!
Jleigh
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
February 10, 2018, 06:12:38 AM
 #7

reserved
lephubinh
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
February 10, 2018, 06:16:21 AM
 #8

What are original purposes of 1.9% premined, only for devs or will be partially used for marketting campaigns like signature, bounties, airdrop, social media advertisements (Twitter, etc.)
Alu8
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
February 10, 2018, 06:21:58 AM
 #9

Reserved
tippytoes
Sr. Member
****
Offline Offline

Activity: 1988
Merit: 275


View Profile
February 10, 2018, 06:22:49 AM
 #10

Everyone is reserving for what? Also, if you are not running any marketing campaign, then, whatever you will get from your premine will be put in the dev's team fund. Which, I don't know if you will really use all of that for your development purposes.
jbaltleaf
Newbie
*
Offline Offline

Activity: 11
Merit: 0


View Profile
February 10, 2018, 06:24:18 AM
 #11

waiting pool !
nanofoxice
Member
**
Offline Offline

Activity: 307
Merit: 12


View Profile
February 10, 2018, 06:37:50 AM
Merited by jezus (1)
 #12

Russian translation reserve
wobujidao
Newbie
*
Offline Offline

Activity: 79
Merit: 0


View Profile
February 10, 2018, 06:51:37 AM
Last edit: February 10, 2018, 08:14:02 AM by wobujidao
 #13

EXUS Added to -=::[MIX POOL]::=-

http://pool.mixpool.ru/logo_s.png

http://pool.mixpool.ru/

0.5% Fees

Use your wallet address as your username, and c=EXUS as your password.
No registration required.

Miner command line:
Code:
-a scrypt -o stratum+tcp://pool.mixpool.ru:3433 -u 7AmVQp96ik2SU6ogXbnGKMNZnQSmXNr4ux -p c=EXUS 

For NiceHash Mining set difficulty in the Password Field like "d=5000"


Don't forget to use EXUS as password, or your shares will be lost

If you need technical support or other questions Please ask https://t.me/mixpoolru
Salpinx (OP)
Jr. Member
*
Offline Offline

Activity: 140
Merit: 1


View Profile WWW
February 10, 2018, 07:01:33 AM
 #14


If wallet not syncing add nodes to your exus.conf file:

Code:
addnode=45.77.3.217
addnode=209.250.229.72
Salpinx (OP)
Jr. Member
*
Offline Offline

Activity: 140
Merit: 1


View Profile WWW
February 10, 2018, 07:02:22 AM
 #15

What are original purposes of 1.9% premined, only for devs or will be partially used for marketting campaigns like signature, bounties, airdrop, social media advertisements (Twitter, etc.)

Will be used for exchanges and marketing. It will not be used for staking or masternodes.


 
michalst
Newbie
*
Offline Offline

Activity: 51
Merit: 0


View Profile WWW
February 10, 2018, 07:11:08 AM
Last edit: February 10, 2018, 07:39:29 AM by michalst
 #16

PoolDaddy Mining Pool





Explorer:



Miner cmd:

Code:
-a scrypt -o stratum+tcp://pooldaddy.ws:3436 -u (Wallet Adress) -p c=EXUS

Support:


jezus
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250



View Profile
February 10, 2018, 07:12:37 AM
 #17

What exchange is planning listed?

█████████████████████████████████████████
██                                     ██
██ █████████████▄ ▀███████████████████ ██
██ ██          ▀██▄ ▀██▄            ██ ██
██ ██            ▀██▄ ▀██▄          ██ ██
██ ██              ▀██▄ ▀██▄        ██ ██
██ ██                ▀██▄ ▀██▄  ▄▄████ ██
██ ██                  ▀██▄ ▀████▀▀    ██
██ ██                    ▀██▄ ▀▀ ▄████ ██
██ ██▄                     ▀██  ██  ██ ██
██ █████▄                 ▄▄██  ██  ██ ██
██     ▀███▄        ▄▄██████▀ ▄▄ ▀████ ██
██ ████▄ ▀▀██ ▄▄██████▀▀ ▄▄▄▄████▄▄    ██
██ ██  ██  ▀███▀▀▀ ▄▄▄▄██▀▀▀▀▀  ▀▀████ ██
██ ██  ██ ▄▄▄▄▄▄██▀▀▀▀▀█▄           ██ ██
██ ████▀  ▀▀▀▀▀▀▀ ▄███▄ ▀▄          ██ ██
██   ▄▄▄██▀▀▀▀▀█ ██   ██ █▄         ██ ██
██ ██▄▄▄▄▄▄▄▄▄▄█ ███████ █████████████ ██
██                                     ██
█████████████████████████████████████████
LASER ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
BLOCKCHAIN WITHOUT BORDERS












A BLOCKCHAIN-AGNOSTIC SERVICE LAYER
FOR IMPROVED SPEED, ANONYMITY, AND INTEROPERABILITY
[]
Konos
Newbie
*
Offline Offline

Activity: 36
Merit: 0


View Profile
February 10, 2018, 07:15:58 AM
 #18

An equivalent of 80 masternodes as premine... thats quite a lot in terms of money.
Bambalam
Member
**
Offline Offline

Activity: 154
Merit: 10


View Profile
February 10, 2018, 07:16:43 AM
 #19

UPOOL IS SMASHING BLOCKS!

-a scrypt -o stratum+tcp://upool.xyz:3433 -u 7Fb1ednddBBZbCGsNxuP9wwzaA6AafPSsz -p c=EXUS

http://upool.xyz

DISCORD: https://discord.gg/uKx4Tsj

HAPPY MINING!!!

▬ ▬ ▬ ▬ ▬ ▬Mysterium Network▬ ▬ ▬ ▬ ▬ ▬
Decentralized   VPN   powered   by   Blockchain
JOIN THE ICO ▬▬▬ JOIN THE DISCUSSION
Salpinx (OP)
Jr. Member
*
Offline Offline

Activity: 140
Merit: 1


View Profile WWW
February 10, 2018, 07:20:35 AM
 #20

What exchange is planning listed?

To start will submit to these:

Coinsmarkets
Stocks.Exchange
Crypto-Bridge
Coinexchange
Southxchange
Tradesatoshi

Pages: [1] 2 3 4 5 6 7 8 9 10 11 »  All
  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!