Managing your accounts
WARNING Remember your password.
If you lose the password you use to encrypt your account, you will not be able to access that account. Repeat: It is NOT possible to access your account without a password and there is no forgot my password option here. Do not forget it.
The abeychain CLI gabey
provides account management via the account
command:
Manage accounts lets you create new accounts, list all existing accounts, import a private key into a new account, migrate to newest key format and change your password.
It supports interactive mode, when you are prompted for password as well as non-interactive mode where passwords are supplied via a given password file. Non-interactive mode is only meant for scripted use on test networks or known safe environments.
Make sure you remember the password you gave when creating a new account (with new, update or import). Without it you are not able to unlock your account.
Note that exporting your key in unencrypted format is NOT supported.
Keys are stored under <DATADIR>/keystore
. Make sure you backup your keys regularly! See DATADIR backup & restore for more information. If a custom datadir and keystore option are given the keystore option takes preference over the datadir option.
The newest format of the keyfiles is: UTC--<created_at UTC ISO8601>-<address hex>
. The order of accounts when listing, is lexicographic, but as a consequence of the timespamp format, it is actually order of creation
It is safe to transfer the entire directory or the individual keys therein between abeychain nodes. Note that in case you are adding keys to your node from a different node, the order of accounts may change. So make sure you do not rely or change the index in your scripts or code snippets.
And again. DO NOT FORGET YOUR PASSWORD
You can get info about subcommands by gabey account <command> --help
.
Examples
Interactive use
creating an account
Listing accounts in a custom keystore directory
Import private key into a node with a custom datadir
Account update
Non-interactive use
You supply a plaintext password file as argument to the --password
flag. The data in the file consists of the raw characters of the password, followed by a single newline.
Note: Supplying the password directly as part of the command line is not recommended, but you can always use shell trickery to get round this restriction.
Creating accounts
Creating a new account
Creates a new account and prints the address.
On the console, use:
The account is saved in encrypted format. You must remember this passphrase to unlock your account in the future.
For non-interactive use the passphrase can be specified with the --password
flag:
Note, this is meant to be used for testing only, it is a bad idea to save your password to file or expose in any other way.
Creating an account by importing a private key
Imports an unencrypted private key from <keyfile>
and creates a new account and prints the address.
The keyfile is assumed to contain an unencrypted private key as canonical EC raw bytes encoded into hex.
The account is saved in encrypted format, you are prompted for a passphrase.
You must remember this passphrase to unlock your account in the future.
For non-interactive use the passphrase can be specified with the --password
flag:
Note: Since you can directly copy your encrypted accounts to another abeychain instance, this import/export mechanism is not needed when you transfer an account between nodes.
Warning: when you copy keys into an existing node's keystore, the order of accounts you are used to may change. Therefore you make sure you either do not rely on the account order or doublecheck and update the indexes used in your scripts.
Warning: If you use the password flag with a password file, best to make sure the file is not readable or even listable for anyone but you. You achieve this with:
Updating an existing account
You can update an existing account on the command line with the update
subcommand with the account address or index as parameter. You can specify multiple accounts at once.
The account is saved in the newest version in encrypted format, you are prompted for a passphrase to unlock the account and another to save the updated file.
This same command can therefore be used to migrate an account of a deprecated format to the newest format or change the password for an account.
After a successful update, all previous formats/versions of that same key are removed!
Importing your presale wallet
Importing your presale wallet is very easy. If you remember your password that is:
will prompt for your password and imports your abey presale account. It can be used non-interactively with the --password option taking a passwordfile as argument containing the wallet password in cleartext.
Listing accounts and checking balances
Listing your current accounts
From the command line, call the CLI with:
to list your accounts in order of creation.
Note: This order can change if you copy keyfiles from other nodes, so make sure you either do not rely on indexes or make sure if you copy keys you check and update your account indexes in your scripts.
When using the console:
or via RPC:
If you want to use an account non-interactively, you need to unlock it. You can do this on the command line with the --unlock
option which takes a comma separated list of accounts (in hex or index) as argument so you can unlock the accounts programmatically for one session. This is useful if you want to use your account from Dapps via RPC. --unlock
will unlock the first account. This is useful when you created your account programmatically, you do not need to know the actual account to unlock it.
Create account and start node with account unlocked:
Instead of the account address, you can use integer indexes which refers to the address position in the account listing (and corresponds to order of creation)
The command line allows you to unlock multiple accounts. In this case the argument to unlock is a comma delimited list of accounts addresses or indexes.
If this construction is used non-interactively, your password file will need to contain the respective passwords for the accounts in question, one per line.
On the console you can also unlock accounts (one at a time) for a duration (in seconds).
Note that we do NOT recommend using the password argument here, since the console history is logged, so you may compromise your account. You have been warned.
Checking account balances
To check your the coinbase account balance:
Print all balances with a JavaScript function:
That can then be executed with:
Last updated