Leszek Wiesner c606db5119 Update the README.md 4 years ago
..
bin b592b335b1 Initial progress: council:info, account:import, account:choose 5 years ago
src e5f83df137 Account management implementation cont. 4 years ago
test b592b335b1 Initial progress: council:info, account:import, account:choose 5 years ago
.editorconfig b592b335b1 Initial progress: council:info, account:import, account:choose 5 years ago
.eslintignore b592b335b1 Initial progress: council:info, account:import, account:choose 5 years ago
.eslintrc b592b335b1 Initial progress: council:info, account:import, account:choose 5 years ago
.gitignore b592b335b1 Initial progress: council:info, account:import, account:choose 5 years ago
README.md c606db5119 Update the README.md 4 years ago
package-lock.json b592b335b1 Initial progress: council:info, account:import, account:choose 5 years ago
package.json e5f83df137 Account management implementation cont. 4 years ago
tsconfig.json b592b335b1 Initial progress: council:info, account:import, account:choose 5 years ago

README.md

joystream-cli

Command Line Interface for Joystream community and governance activities

oclif Version Downloads/week License

joystream-cli account:choose

Choose default account to use in the CLI

USAGE
  $ joystream-cli account:choose

See code: src/commands/account/choose.ts

joystream-cli account:create NAME

Create new account

USAGE
  $ joystream-cli account:create NAME

ARGUMENTS
  NAME  Account name

See code: src/commands/account/create.ts

joystream-cli account:current

Display information about currently choosen default account

USAGE
  $ joystream-cli account:current

ALIASES
  $ joystream-cli account:info
  $ joystream-cli account:default

See code: src/commands/account/current.ts

joystream-cli account:export PATH

Export account(s) to given location

USAGE
  $ joystream-cli account:export PATH

ARGUMENTS
  PATH  Path where the exported files should be placed

OPTIONS
  -a, --all  If provided, exports all existing accounts into "exported_accounts" folder inside given path

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

See code: src/commands/account/forget.ts

joystream-cli account:import BACKUPFILEPATH

Import account using JSON backup file

USAGE
  $ joystream-cli account:import BACKUPFILEPATH

ARGUMENTS
  BACKUPFILEPATH  Path to account backup JSON file

See code: src/commands/account/import.ts

joystream-cli account:transferTokens RECIPIENT AMOUNT

Transfer tokens from currently choosen account

USAGE
  $ joystream-cli account:transferTokens RECIPIENT AMOUNT

ARGUMENTS
  RECIPIENT  Address of the transfer recipient
  AMOUNT     Amount of tokens to transfer

See code: src/commands/account/transferTokens.ts

joystream-cli council:info

Get current council and council elections information

USAGE
  $ joystream-cli council:info

See code: src/commands/council/info.ts

joystream-cli help [COMMAND]

display help for joystream-cli

USAGE
  $ joystream-cli help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help