joystream-cli account:create
Create a new account
`USAGE $ joystream-cli account:create
OPTIONS --name=name Account name --type=(sr25519|ed25519) Account type (defaults to sr25519)`
See code: src/commands/account/create.ts
joystream-cli account:export DESTPATH
Export account(s) to given location
`USAGE $ joystream-cli account:export DESTPATH
ARGUMENTS DESTPATH Path where the exported files should be placed
OPTIONS -a, --all If provided, exports all existing accounts into "exported_accounts" folder inside given path -n, --name=name Name of the account to export`
See code: src/commands/account/export.ts
joystream-cli account:forget
Forget (remove) account from the list of available accounts
`USAGE $ joystream-cli account:forget
OPTIONS --address=address Address of the account to remove --name=name Name of the account to remove`
See code: src/commands/account/forget.ts
joystream-cli account:import
Import account using mnemonic phrase, seed, suri or json backup file
`USAGE $ joystream-cli account:import
OPTIONS --backupFilePath=backupFilePath Path to account backup JSON file --mnemonic=mnemonic Mnemonic phrase --name=name Account name --password=password Account password --seed=seed Secret seed --suri=suri Substrate uri --type=(sr25519|ed25519) Account type (defaults to sr25519)`
See code: src/commands/account/import.ts
joystream-cli account:info [ADDRESS]
Display detailed information about specified account
`USAGE $ joystream-cli account:info [ADDRESS]
ARGUMENTS ADDRESS An address to inspect (can also be provided interavtively)
ALIASES $ joystream-cli account:inspect`
See code: src/commands/account/info.ts