You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 12, 2024. It is now read-only.
# TODO: set GAIA_KEYNAME with whatever name you used on the gaia keychain...
GAIA_ADDRESS=$(gaiacli keys show -a GAIA_KEYNAME)
echo $GAIA_ADDRESS
gaiaflex keys add validator
gaiaflex config node https://rpc.gaia-flex.cosmwasm.com:443
gaiaflex config trust-node true
# ensure the data is here
gaiaflex query account $GAIA_ADDRESS
# set ACCOUNT_NUMBER from the response
ACCOUNT_NUMBER=$(gaiaflex query account $GAIA_ADDRESS -o json | jq -r .value.account_number)
echo $ACCOUNT_NUMBER
# multistep signing process
# create the proper transfer with gaiaflex
gaiaflex tx send $GAIA_ADDRESS $(gaiaflex keys show -a validator) 9999000000umuon --fees 5000umuon --chain-id gaia-flex --generate-only > airdrop.json
# sign it with the same binary you used (this may be some multisig step depending on your voting key - can be done on offline computers)
gaiacli tx sign -a $ACCOUNT_NUMBER -s 0 --offline --from gaia-flex-demo --chain-id gaia-flex airdrop.json > airdrop_signed.json
# submit the signed airdrop claim tx from online gaiaflex machine
gaiaflex tx broadcast airdrop_signed.json
# and see the money arrived
gaiaflex query account $(gaiaflex keys show -a validator)
We gave people tokens with gaia addresses.
We need to stake on
gaiaflex
, which is a different binary and not sharing the same keychain.Go through this process and see if we can get tokens.
The text was updated successfully, but these errors were encountered: