/tic_tac_toe.sh Secret
Created
July 9, 2018 18:48
Tic tac toe tutorial from developers.eos.io
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ # following the tic tac toe tutorial from https://developers.eos.io/eosio-cpp/docs/introduction-to-smart-contracts | |
$ # run node in seperate terminal window | |
$ nodeos -e -p eosio --plugin eosio::chain_api_plugin --plugin eosio::history_api_plugin | |
$ # ======================================================== | |
$ cleos wallet create -n <WALLET_NAME> | |
$ # remember to save name and password of your wallet | |
$ # set the eosio.bios contract (ensure path to the contract is correct. you need to be in root directory of your eos installation) | |
$ cleos set contract eosio build/contracts/eosio.bios -p eosio@active | |
$ cleos create key | |
$ # remember to save public and private keys offline | |
$ cleos wallet import -n <WALLET_NAME> <PRIVATE_KEY> | |
$ cleos wallet keys # should have your public key inside. | |
$ # use key to create two player accounts | |
$ cleos create account eosio mouse <PUBLIC_KEY> <PUBLIC_KEY> | |
$ cleos create account eosio cat <PUBLIC_KEY> <PUBLIC_KEY> | |
$ # create 3rd account under the creator for the tic tac toe contract | |
$ cleos create account cat tic.tac.toe <PUBLIC_KEY> <PUBLIC_KEY> --permission cat@active | |
$ # create tic_tac_toe folder in eos/contracts/ | |
$ # and use code from the release/1.1 branch of eosio github. | |
$ # https://github.com/EOSIO/eos/tree/release/1.1/contracts/tic_tac_toe | |
$ copy over the tic_tac_toe.hpp and tic_tac_toe.cpp files | |
$ # generate .abi and .wasm files. ensure you are in the directory of the .cpp and .hpp files | |
$ eosiocpp -g tic_tac_toe.abi tic_tac_toe.hpp | |
$ eosiocpp -o tic_tac_toe.wast tic_tac_toe.cpp | |
$ # in the eos/contracts/ folder, set the tic tac toe contract | |
$ cleos set contract tic.tac.toe tic_tac_toe | |
$ # push actions based on the actions in .abi and the function signatures in the .hpp files | |
$ # create a game | |
$ cleos push action tic.tac.toe create '{"challenger":"cat", "host":"mouse"}' --permission mouse@active -p cat | |
$ # mouse makes a move | |
$ cleos push action tic.tac.toe move '{"challenger":"cat", "host":"mouse", "by":"mouse", "row":0, "column":0 }' --permission mouse@active -p cat | |
$ # game status | |
$ cleos get table tic.tac.toe games | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment