You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
blackjok3r d9c1090281 WTF?!?! 6 years ago
iguana/coins Initial commit: Broken for sure! 6 years ago
install Getting there 6 years ago
LICENSE Initial commit 6 years ago
README.md oops 6 years ago
assetchains Initial commit: Broken for sure! 6 years ago
assetchains.json Initial commit: Broken for sure! 6 years ago
build_iguana fix typo 6 years ago
config_example.ini Initial commit: Broken for sure! 6 years ago
dpowassets.py Initial commit: Broken for sure! 6 years ago
listassetchainparams.py Initial commit: Broken for sure! 6 years ago
listassetchains.py Initial commit: Broken for sure! 6 years ago
listclis.sh Getting there 6 years ago
listcoins.sh Getting there 6 years ago
m_notary_blank WTF?!?! 6 years ago
printkey.py Initial commit: Broken for sure! 6 years ago
splitfunds.sh Getting there 6 years ago
staked.json oops 6 years ago
start.sh WTF?!?! 6 years ago
utxosplitter.sh Getting there 6 years ago
validateaddress.sh still 6 years ago

README.md

Staked Notary Control Scripts

Install instructions

cd ~
git clone https://github.com/StakedChain/StakedNotary.git
cd StakedNotary

You need to build our special repo of komodo thanks to @libbscott and nanomsg for iguana. Both these scripts cover all required deps on debian based distros.

cd install
./buildkomodo.sh
./installnanomsg.sh

Now you need to copy the config file and edit it with our pubkey/Raddress and WIF key for KMD.

cp config_example.ini config.ini
nano config.ini

After this we are ready to launch KMD and any chains that happen to be in assetchains.json. If KMD is not already synced this will take many hours, I would advise syncing KMD first to make the process a bit faster.

./start.sh

Once this is done, you have all the required things to launch iguana, there are some coins files in iguana/coins and iguana binary has been built from the SuperNET repo in your home folder and copied to iguana folder. Also the 'staked.json' file containing all the info for the Notary Network has been fetched from github.

To start your notary node and connect to the network simply run:

./start_iguana.sh

There is one thing that notary nodes depend on more than anything else and that is the UTXO's. Once iguana has started we need to run the UTXO splitter.

./utxosplitter.sh

You also will want to put this UTXO splitter on a cron job every 15 minutes.

crontab -e

Enter this into the cron tab:

PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin
*/15 * * * * /home/<your_username>/scripts/utxosplitter.sh >> /home/<your_username>/utxo_split.log 2>&1