├── LICENSE ├── README.md ├── Wallet ├── start_wallet.sh └── stop_wallet.sh ├── cleos.sh ├── config.ini ├── genesis.json ├── scripts ├── bp00_createAccount.sh ├── bp01_registerProducer.sh ├── bp02_stakeTokens.sh ├── bp03_voteProducer.sh ├── bp04_claimReward.sh ├── bp05_unStakeTokens.sh ├── bp06_unRegisterProducer.sh ├── bp07_buy_RAM.sh └── transfer_from_to.sh ├── start.sh └── stop.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoLions/EOS-MainNet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoLions/EOS-MainNet/HEAD/README.md -------------------------------------------------------------------------------- /Wallet/start_wallet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoLions/EOS-MainNet/HEAD/Wallet/start_wallet.sh -------------------------------------------------------------------------------- /Wallet/stop_wallet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoLions/EOS-MainNet/HEAD/Wallet/stop_wallet.sh -------------------------------------------------------------------------------- /cleos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoLions/EOS-MainNet/HEAD/cleos.sh -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoLions/EOS-MainNet/HEAD/config.ini -------------------------------------------------------------------------------- /genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoLions/EOS-MainNet/HEAD/genesis.json -------------------------------------------------------------------------------- /scripts/bp00_createAccount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoLions/EOS-MainNet/HEAD/scripts/bp00_createAccount.sh -------------------------------------------------------------------------------- /scripts/bp01_registerProducer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoLions/EOS-MainNet/HEAD/scripts/bp01_registerProducer.sh -------------------------------------------------------------------------------- /scripts/bp02_stakeTokens.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoLions/EOS-MainNet/HEAD/scripts/bp02_stakeTokens.sh -------------------------------------------------------------------------------- /scripts/bp03_voteProducer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoLions/EOS-MainNet/HEAD/scripts/bp03_voteProducer.sh -------------------------------------------------------------------------------- /scripts/bp04_claimReward.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoLions/EOS-MainNet/HEAD/scripts/bp04_claimReward.sh -------------------------------------------------------------------------------- /scripts/bp05_unStakeTokens.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoLions/EOS-MainNet/HEAD/scripts/bp05_unStakeTokens.sh -------------------------------------------------------------------------------- /scripts/bp06_unRegisterProducer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoLions/EOS-MainNet/HEAD/scripts/bp06_unRegisterProducer.sh -------------------------------------------------------------------------------- /scripts/bp07_buy_RAM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoLions/EOS-MainNet/HEAD/scripts/bp07_buy_RAM.sh -------------------------------------------------------------------------------- /scripts/transfer_from_to.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoLions/EOS-MainNet/HEAD/scripts/transfer_from_to.sh -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoLions/EOS-MainNet/HEAD/start.sh -------------------------------------------------------------------------------- /stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoLions/EOS-MainNet/HEAD/stop.sh --------------------------------------------------------------------------------