How I created my first Enumivo (a rebranded clone of the EOS blockchain) asset

in enumivo •  6 years ago 

Asset: thankyoucoin
Max Supply: 2m
Symbol: THQ

I used the following tutorial Tutorial eosio token Contract https://github.com/EOSIO/eos/wiki/Tutorial-eosio-token-Contract

  1. create new account ( you will need around 1.5 ENU worth of RAM)
    ~/enumivo/build/programs/enucli/enucli -u http://127.0.0.1:8888 system newaccount tomblocknode thankyoucoin ENU7aBa4Cr1BdA3KfvXcdmajDScfNKptWzyzXcb9AjUPzY3wAV8XJ ENU7aBa4Cr1BdA3KfvXcdmajDScfNKptWzyzXcb9AjUPzY3wAV8XJ --stake-net "0.0001 ENU" --stake-cpu "0.0001 ENU" --buy-ram "2 ENU"

  2. deploy contract
    ~/enumivo/build/programs/enucli/enucli set contract thankyoucoin enumivo/build/contracts/enu.token -p thankyoucoin

  3. verify deployment
    ~/enumivo/build/programs/enucli/enucli -u http://127.0.0.1:8888 get code thankyoucoin

  4. create token
    ~/enumivo/build/programs/enucli/enucli -u http://127.0.0.1:8888 push action thankyoucoin create '[ "thankyoucoin", "2000000.0000 THQ"]' -p thankyoucoin

  5. issue token
    ~/enumivo/build/programs/enucli/enucli -u http://127.0.0.1:8888 push action thankyoucoin issue '[ "thankyoucoin", "2000000.0000 THQ", "memo" ]' -p thankyoucoin

  6. check balance
    ~/enumivo/build/programs/enucli/enucli -u http://127.0.0.1:8888 get currency balance thankyoucoin thankyoucoin

  7. test transfer
    ~/enumivo/build/programs/enucli/enucli -u http://127.0.0.1:8888 push action thankyoucoin transfer '[ "thankyoucoin", "ansenironman", "100.0000 THQ", "m" ]' -p thankyoucoin

  8. verify transfer
    ~/enumivo/build/programs/enucli/enucli -u http://127.0.0.1:8888 get currency balance thankyoucoin ansenironman

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  

@tradecrypto1, I gave you an upvote on your first post! Please give me a follow and I will give you a follow in return!

Please also take a moment to read this post regarding bad behavior on Steemit.

very nice. I need a GUI before I can join the fun though. :-(