Wallet management

Creating a New Wallet

0gchaind keys add $OG_WALLET

Importing an Existing Wallet

0gchaind keys add $OG_WALLET --recover

Learning Your EVM Address

echo "0x$(0gchaind debug addr $(0gchaind keys show $OG_WALLET -a) | grep hex | awk '{print $3}')"

Checking Wallet Balance

0gchaind query bank balances $OG_WALLET_ADDRESS

Send tokens between wallets

0gchaind tx bank send $WALLET_NAME <TO_WALLET> <AMOUNT>ua0gi --gas=500000 --gas-prices=99999ua0gi -y

Last updated