Manage Accounts
Follow the steps to make a layer account that can be used to receive funds from the bridge (or the faucet) for transacting on layer.
Security Tips: 1. This guide uses the "test" backend because this is a testnet guide. Use a more secure option if you're handling real money. 2. Handle mnemonics/keys with extreme care, even if it’s just a testnet address. 3. Never use an address that holds real funds for testing.
If you do not yet have an account / mnemonic phrase, Generate a new key pair with the command:
Be sure to copy the entire output with the mnemonic and keep it in a very safe place!
If you already have an account, you may Import it with the command:
Export your addresses. (optional but recommended for less experienced users) Your wallet account has two important addresses. First, get the "tellor" prefix address, which is used to send and receive tokens. Copy it and keep it in a safe place:
Next, add the --bech val
flag to get the "tellorvaloper" prefix address, which is used for validator commands. Copy it and keep it in a safe place:
It can be useful to add these addresses to your .bashrc
or .zshrc
file. Be sure to replace your_tellor_prefix_address
and your_tellorvaloper_prefix_address
in your command:
Restart your terminal, or use source ~/.bashrc
before you continue. (if Linux) Restart your terminal, or use source ~/.zshrc
before you continue. (if mac)
Check accounts any time with:
./layerd keys list
Last updated