-
Notifications
You must be signed in to change notification settings - Fork 20
Bank module
Andrei Schneider edited this page May 12, 2021
·
1 revision
# Create and sign a send tx
decentrcli tx send [from_key_or_address] [to_address] [amount]
# Get balance
curl http://localhost:1317/bank/balances/{address}
# Transfer coins (send coins to a address)
curl -X POST http://localhost:1317/bank/accounts/{address}/transfers \
-d '{"base_req":{"chain_id":"testnet", "from": "'$(decentrcli keys show jack -a)'"}, "amount": [{"denom": "udec", "amount": "15"}]}' > unsignedTx.json