Claiming Morse Accounts
Account Definition
This page describes how to claim a Morse "Account" on Shannon.
This covers accounts which:
- DO have a non-zero POKT balance
- DO NOT have any POKT staked
- ARE NOT staked as an Application
- ARE NOT staked as a Supplier
How do I claim my Morse POKT?
0. Prerequisites
You have read the introduction in Claiming Introduction and ensure:
- You have installed the Morse
pocket
CLI - You have installed the Shannon
pocketd
CLI - You have imported your Morse key into a keyring
- You have a valid RPC endpoint
1. Export your Morse keyfile.json
Export your keyfile.json
from the Morse keyring to pocket-account-<morse-address>.json
like so:
pocket accounts export <morse-address>
Or specify a custom path:
pocket accounts export <morse-address> --path <custom-path>.json
If you have your private key hex and want to import it first, you can do it like so
pocket accounts import-raw <priv-key-hex>
2. Create a new Shannon key
pocketd keys add <your_shannon_key_name>
3. Fund your Shannon account
You need to make sure the public key exists onchain and has funding to send the claim transaction.
Use one of the following faucets:
- Alpha Testnet
- Beta Testnet
- Mainnet: Coming soon.
If you're a Grove Employee, you can use the helpers here to fund the account like so:
# Get the Shannon address
pocketd keys show <your_shannon_key_name> -a
# Fund the Shannon key
pkd_<NETWORK>fund <your_shannon_address>
4. Ensure your Shannon account exists onchain
pocketd query account <shannon-dest-address> --node=${RPC_ENDPOINT}
5. Check your claimable Morse account
pocketd query migration show-morse-claimable-account \
<morse-address-all-caps> \
--node=${RPC_ENDPOINT}
6. Claim your Morse Pocket
Running the following command:
pocketd tx migration claim-account \
pocket-account-<morse-keyfile-export>.json \
--from=<your_shannon_address> \
--node=${RPC_ENDPOINT} --chain-id=pocket-<network> \
--home=~/.pocketd --keyring-backend=test --no-passphrase
# --gas=auto --gas-prices=1upokt --gas-adjustment=1.5
Should prompt for a passphrase and produce output similar to the following:
Enter Decrypt Passphrase:
MsgClaimMorseAccount {
"shannon_dest_address": "pokt1mrqt5f7qh8uxs27cjm9t7v9e74a9vvdnq5jva4",
"morse_src_address": "8B257C7F4E884E49BAFC540D874F33F91436E1DC",
"morse_signature": "hLGhLRjP6jgP6wgOIaYFxIxT3z4jb4IBDKovMkX5AqUsOqdF+rEIO5aofOKnmYW9BkqL0v2DfUfE3nj25FNhBA=="
}
Confirm MsgClaimMorseAccount: y/[n]:
7. Verify your Shannon balance
pocketd query bank balances <shannon-dest-address> --node=${RPC_ENDPOINT}
Troubleshooting
Transaction signing errors
If you're hitting errors related to signature verification, ensure you've specified the following flags based on your environment and keyring config
--chain-id
: one ofpocket-alpha
,pocket-beta
,pocket
--home
: the path to your keyring directory--keyring-backend
: one oftest
,file
,os
,kwallet
,pass
,keosd
Onchain Fee Requirement
pocketd query migration params --node=${RPC_ENDPOINT} --home=~/.pocketd
params:
waive_morse_claim_gas_fees: true