cosmos-sdk/cmd/basecli
Ethan Buchman 1f5a278965 fix build/tests 2017-05-22 07:44:50 -04:00
..
commands fix build/tests 2017-05-22 07:44:50 -04:00
counter Reorg basecli for nicer apptx reusage 2017-05-17 01:14:31 +02:00
README.md Fixed typos in readme 2017-05-14 20:44:35 +02:00
main.go Reorg basecli for nicer apptx reusage 2017-05-17 01:14:31 +02:00

README.md

Basic run through of using basecli....

To keep things clear, let's have two shells...

$ is for basecoin (server), % is for basecli (client)

Set up a clean basecoin, but don't start the chain

$ export BCHOME=~/.demoserve
$ basecoin init

Set up your basecli with a new key

% export BCHOME=~/.democli
% basecli keys new demo
% basecli keys get demo -o json

And set up a few more keys for fun...

% basecli keys new buddy
% basecli keys list
% ME=`basecli keys get demo -o json | jq .address | tr -d '"'`
% YOU=`basecli keys get buddy -o json | jq .address | tr -d '"'`

Update genesis so you are rich, and start

$ vi $BCHOME/genesis.json
-> cut/paste your pubkey from the results above

$ basecoin start

Connect your basecli the first time

% basecli init --chainid test_chain_id --node tcp://localhost:46657

Check your balances...

% basecli proof state get --app=account --key=$ME
% basecli proof state get --app=account --key=$YOU

Send the money

% basecli tx send --name demo --amount 1000mycoin --sequence 1 --to $YOU
-> copy hash to HASH
% basecli proof tx get --key $HASH

% basecli proof tx get --key $HASH --app base
% basecli proof state get --key $YOU --app account

Any questions???

% basecli seeds show --height 1767
% basecli proxy --serve tcp://localhost:7890
...

curl localhost:7890/status
curl localhost:7890/block\?height=20