Wallet

Description The subcommands can be used to interact with local wallet.

Subcommands

Wallet Create

Description

This subcommand creates a wallet with the specified name. If no name is given, the wallet will be created with the name 'default'.

Positional Parameters

None.

Options

  • -n, --name TEXT — The name of the new wallet.

  • -f, --file TEXT — Name of file to write wallet password output to (must be set, unless --to-console is passed).

  • --to-console — Print password to console.

Command

Examples

Wallet Open

Description

This subcommand can be used to open an existing wallet.

Positional Parameters

None.

Options

  • -n, --name TEXT — The name of the wallet to open.

Command

Examples

Example 1

Example 2

Output

Wallet Lock

Description

This subcommand can be used to lock wallet.

Positional Parameters

None.

Options

  • -n, --name TEXT — The name of the wallet to lock.

Command

Examples

Example 1

Example 2

Output

Wallet Lock All

Description

This subcommand can be used to lock all unlocked wallets.

Positional Parameters

None.

Options

None.

Command

Output

Wallet Unlock

Description

This subcommand can be used to unlock wallet.

Positional Parameters

None.

Options

  • -n, --name TEXT — The name of the wallet to unlock.

  • --password TEXT — The password returned by wallet create.

Command

Examples

To unlock a wallet, specify the password provided when it was created.

Output

Wallet Import

Description

This subcommand can be used to import private key into wallet.

Positional Parameters

None.

Options

  • -n,--name TEXT — The name of the wallet to import key into.

  • --private-key TEXT — Private key in WIF format to import.

Command

Examples

Wallet Remove Key

Description

This subcommand can be used to remove key from wallet.

Positional Parameters

  • (string) key — Public key in WIF format to remove (required).

Options

  • -n, --name TEXT — The name of the wallet to remove key from.

  • --password TEXT — The password returned by wallet create.

Command

Examples

Wallet Create Key

Description

This subcommand can be used to creates a key pair within the wallet so that you don't need to manually import it like you would with cleos create key. By default, this will create a key with the type "favored" by the wallet, which is a "K1" key. This subcommand also lets you create a key in "R1" format.

Positional Parameters

  • (string) key_type — "K1" or "R1" key type to create. "K1" generates privileged key. Defaults to "K1".

Options

  • -n, --name TEXT — The name of the wallet to create key into.

Command

Examples

Wallet List

Description

The subcommand can be used to list opened wallets ("*" means "unlocked").

Positional Parameters

None.

Options

None.

Command

Output

or when there are no wallets:

Wallet Keys

Description

The subcommand can be used to list of public keys from all unlocked wallets. These are the keys that could be used to sign transactions.

Positional Parameters

None.

Options

None.

Command

Output

Examples

Wallet Private Keys

Description

The subcommand can be used to list of private keys from an unlocked wallet in WIF or PVT_R1 format. It is possible to query for the public and private key pairs of an individual wallet. The wallet must already be unlocked and you must give the password again.

Positional Parameters

None.

Options

  • -n, --name TEXT — The name of the wallet to list keys from.

  • --password TEXT — The password returned by wallet create.

Command

Examples

Last updated