├── .editorconfig ├── .gitignore ├── .lintstagedrc.json ├── .npmrc ├── .nvmrc ├── .nycrc ├── .prettierignore ├── .prettierrc.json ├── .snyk ├── Jenkinsfile ├── LICENSE ├── README.md ├── bin ├── run └── run.cmd ├── docs ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── account.md ├── block.md ├── config.md ├── copyright.md ├── delegate.md ├── help.md ├── message.md ├── node.md ├── passphrase.md ├── signature.md ├── transaction.md └── warranty.md ├── package.json ├── src ├── base.ts ├── commands │ ├── account │ │ ├── create.ts │ │ ├── get.ts │ │ └── show.ts │ ├── block │ │ └── get.ts │ ├── config │ │ ├── set.ts │ │ └── show.ts │ ├── copyright.ts │ ├── delegate │ │ ├── get.ts │ │ ├── voters.ts │ │ └── votes.ts │ ├── message │ │ ├── decrypt.ts │ │ ├── encrypt.ts │ │ ├── sign.ts │ │ └── verify.ts │ ├── node │ │ ├── forging.ts │ │ └── get.ts │ ├── passphrase │ │ ├── decrypt.ts │ │ └── encrypt.ts │ ├── signature │ │ ├── broadcast.ts │ │ └── create.ts │ ├── transaction │ │ ├── broadcast.ts │ │ ├── create.ts │ │ ├── create │ │ │ ├── delegate.ts │ │ │ ├── multisignature.ts │ │ │ ├── second-passphrase.ts │ │ │ ├── transfer.ts │ │ │ └── vote.ts │ │ ├── get.ts │ │ ├── sign.ts │ │ └── verify.ts │ └── warranty.ts ├── default_config.json ├── index.ts └── utils │ ├── api.ts │ ├── config.ts │ ├── constants.ts │ ├── cryptography.ts │ ├── error.ts │ ├── flags.ts │ ├── fs.ts │ ├── helpers.ts │ ├── input │ ├── index.ts │ └── utils.ts │ ├── mnemonic.ts │ ├── print.ts │ ├── query.ts │ ├── tablify.ts │ └── transactions.ts ├── test ├── README.md ├── _global_hooks.ts ├── commands │ ├── account │ │ ├── create.test.ts │ │ ├── get.test.ts │ │ └── show.test.ts │ ├── block │ │ └── get.test.ts │ ├── config │ │ ├── set.test.ts │ │ └── show.test.ts │ ├── copyright.test.ts │ ├── delegate │ │ ├── get.test.ts │ │ ├── voters.test.ts │ │ └── votes.test.ts │ ├── message │ │ ├── decrypt.test.ts │ │ ├── encrypt.test.ts │ │ ├── sign.test.ts │ │ └── verify.test.ts │ ├── node │ │ ├── forging.test.ts │ │ └── get.test.ts │ ├── passphrase │ │ ├── decrypt.test.ts │ │ └── encrypt.test.ts │ ├── signature │ │ ├── broadcast.test.ts │ │ └── create.test.ts │ ├── transaction │ │ ├── broadcast.test.ts │ │ ├── create.test.ts │ │ ├── create │ │ │ ├── delegate.test.ts │ │ │ ├── multisignature.test.ts │ │ │ ├── second-passphrase.test.ts │ │ │ ├── transfer.test.ts │ │ │ └── vote.test.ts │ │ ├── get.test.ts │ │ ├── sign.test.ts │ │ └── verify.test.ts │ └── warranty.test.ts ├── helpers │ └── utils.ts ├── mocha.opts ├── setup.ts ├── tsconfig.json ├── tslint.json └── utils │ ├── api.ts │ ├── base.ts │ ├── config.ts │ ├── constants.ts │ ├── cryptography.ts │ ├── error.ts │ ├── fs.ts │ ├── helpers.ts │ ├── input │ ├── index.ts │ └── utils.ts │ ├── mnemonic.ts │ ├── print.ts │ ├── query.ts │ ├── tablify.ts │ └── transactions.ts ├── tsconfig.json ├── tslint.json └── types ├── chai └── index.d.ts ├── cli-table3 └── index.d.ts ├── globals └── index.d.ts └── json └── index.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "*.{js,json,md}": ["prettier --write", "git add"] 3 | } 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | message = ":arrow_up: Version %s" 2 | save-exact = true 3 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8.14.0 2 | -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/.nycrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/.snyk -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/README.md -------------------------------------------------------------------------------- /bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/bin/run -------------------------------------------------------------------------------- /bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | 5 | -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/docs/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /docs/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/docs/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /docs/account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/docs/account.md -------------------------------------------------------------------------------- /docs/block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/docs/block.md -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/copyright.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/docs/copyright.md -------------------------------------------------------------------------------- /docs/delegate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/docs/delegate.md -------------------------------------------------------------------------------- /docs/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/docs/help.md -------------------------------------------------------------------------------- /docs/message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/docs/message.md -------------------------------------------------------------------------------- /docs/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/docs/node.md -------------------------------------------------------------------------------- /docs/passphrase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/docs/passphrase.md -------------------------------------------------------------------------------- /docs/signature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/docs/signature.md -------------------------------------------------------------------------------- /docs/transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/docs/transaction.md -------------------------------------------------------------------------------- /docs/warranty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/docs/warranty.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/package.json -------------------------------------------------------------------------------- /src/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/base.ts -------------------------------------------------------------------------------- /src/commands/account/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/account/create.ts -------------------------------------------------------------------------------- /src/commands/account/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/account/get.ts -------------------------------------------------------------------------------- /src/commands/account/show.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/account/show.ts -------------------------------------------------------------------------------- /src/commands/block/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/block/get.ts -------------------------------------------------------------------------------- /src/commands/config/set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/config/set.ts -------------------------------------------------------------------------------- /src/commands/config/show.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/config/show.ts -------------------------------------------------------------------------------- /src/commands/copyright.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/copyright.ts -------------------------------------------------------------------------------- /src/commands/delegate/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/delegate/get.ts -------------------------------------------------------------------------------- /src/commands/delegate/voters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/delegate/voters.ts -------------------------------------------------------------------------------- /src/commands/delegate/votes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/delegate/votes.ts -------------------------------------------------------------------------------- /src/commands/message/decrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/message/decrypt.ts -------------------------------------------------------------------------------- /src/commands/message/encrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/message/encrypt.ts -------------------------------------------------------------------------------- /src/commands/message/sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/message/sign.ts -------------------------------------------------------------------------------- /src/commands/message/verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/message/verify.ts -------------------------------------------------------------------------------- /src/commands/node/forging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/node/forging.ts -------------------------------------------------------------------------------- /src/commands/node/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/node/get.ts -------------------------------------------------------------------------------- /src/commands/passphrase/decrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/passphrase/decrypt.ts -------------------------------------------------------------------------------- /src/commands/passphrase/encrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/passphrase/encrypt.ts -------------------------------------------------------------------------------- /src/commands/signature/broadcast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/signature/broadcast.ts -------------------------------------------------------------------------------- /src/commands/signature/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/signature/create.ts -------------------------------------------------------------------------------- /src/commands/transaction/broadcast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/transaction/broadcast.ts -------------------------------------------------------------------------------- /src/commands/transaction/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/transaction/create.ts -------------------------------------------------------------------------------- /src/commands/transaction/create/delegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/transaction/create/delegate.ts -------------------------------------------------------------------------------- /src/commands/transaction/create/multisignature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/transaction/create/multisignature.ts -------------------------------------------------------------------------------- /src/commands/transaction/create/second-passphrase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/transaction/create/second-passphrase.ts -------------------------------------------------------------------------------- /src/commands/transaction/create/transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/transaction/create/transfer.ts -------------------------------------------------------------------------------- /src/commands/transaction/create/vote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/transaction/create/vote.ts -------------------------------------------------------------------------------- /src/commands/transaction/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/transaction/get.ts -------------------------------------------------------------------------------- /src/commands/transaction/sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/transaction/sign.ts -------------------------------------------------------------------------------- /src/commands/transaction/verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/transaction/verify.ts -------------------------------------------------------------------------------- /src/commands/warranty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/commands/warranty.ts -------------------------------------------------------------------------------- /src/default_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/default_config.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export { run } from '@oclif/command'; 2 | -------------------------------------------------------------------------------- /src/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/utils/api.ts -------------------------------------------------------------------------------- /src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/utils/config.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/cryptography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/utils/cryptography.ts -------------------------------------------------------------------------------- /src/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/utils/error.ts -------------------------------------------------------------------------------- /src/utils/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/utils/flags.ts -------------------------------------------------------------------------------- /src/utils/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/utils/fs.ts -------------------------------------------------------------------------------- /src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/utils/helpers.ts -------------------------------------------------------------------------------- /src/utils/input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/utils/input/index.ts -------------------------------------------------------------------------------- /src/utils/input/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/utils/input/utils.ts -------------------------------------------------------------------------------- /src/utils/mnemonic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/utils/mnemonic.ts -------------------------------------------------------------------------------- /src/utils/print.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/utils/print.ts -------------------------------------------------------------------------------- /src/utils/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/utils/query.ts -------------------------------------------------------------------------------- /src/utils/tablify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/utils/tablify.ts -------------------------------------------------------------------------------- /src/utils/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/src/utils/transactions.ts -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/README.md -------------------------------------------------------------------------------- /test/_global_hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/_global_hooks.ts -------------------------------------------------------------------------------- /test/commands/account/create.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/account/create.test.ts -------------------------------------------------------------------------------- /test/commands/account/get.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/account/get.test.ts -------------------------------------------------------------------------------- /test/commands/account/show.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/account/show.test.ts -------------------------------------------------------------------------------- /test/commands/block/get.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/block/get.test.ts -------------------------------------------------------------------------------- /test/commands/config/set.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/config/set.test.ts -------------------------------------------------------------------------------- /test/commands/config/show.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/config/show.test.ts -------------------------------------------------------------------------------- /test/commands/copyright.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/copyright.test.ts -------------------------------------------------------------------------------- /test/commands/delegate/get.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/delegate/get.test.ts -------------------------------------------------------------------------------- /test/commands/delegate/voters.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/delegate/voters.test.ts -------------------------------------------------------------------------------- /test/commands/delegate/votes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/delegate/votes.test.ts -------------------------------------------------------------------------------- /test/commands/message/decrypt.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/message/decrypt.test.ts -------------------------------------------------------------------------------- /test/commands/message/encrypt.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/message/encrypt.test.ts -------------------------------------------------------------------------------- /test/commands/message/sign.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/message/sign.test.ts -------------------------------------------------------------------------------- /test/commands/message/verify.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/message/verify.test.ts -------------------------------------------------------------------------------- /test/commands/node/forging.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/node/forging.test.ts -------------------------------------------------------------------------------- /test/commands/node/get.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/node/get.test.ts -------------------------------------------------------------------------------- /test/commands/passphrase/decrypt.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/passphrase/decrypt.test.ts -------------------------------------------------------------------------------- /test/commands/passphrase/encrypt.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/passphrase/encrypt.test.ts -------------------------------------------------------------------------------- /test/commands/signature/broadcast.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/signature/broadcast.test.ts -------------------------------------------------------------------------------- /test/commands/signature/create.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/signature/create.test.ts -------------------------------------------------------------------------------- /test/commands/transaction/broadcast.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/transaction/broadcast.test.ts -------------------------------------------------------------------------------- /test/commands/transaction/create.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/transaction/create.test.ts -------------------------------------------------------------------------------- /test/commands/transaction/create/delegate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/transaction/create/delegate.test.ts -------------------------------------------------------------------------------- /test/commands/transaction/create/multisignature.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/transaction/create/multisignature.test.ts -------------------------------------------------------------------------------- /test/commands/transaction/create/second-passphrase.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/transaction/create/second-passphrase.test.ts -------------------------------------------------------------------------------- /test/commands/transaction/create/transfer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/transaction/create/transfer.test.ts -------------------------------------------------------------------------------- /test/commands/transaction/create/vote.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/transaction/create/vote.test.ts -------------------------------------------------------------------------------- /test/commands/transaction/get.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/transaction/get.test.ts -------------------------------------------------------------------------------- /test/commands/transaction/sign.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/transaction/sign.test.ts -------------------------------------------------------------------------------- /test/commands/transaction/verify.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/transaction/verify.test.ts -------------------------------------------------------------------------------- /test/commands/warranty.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/commands/warranty.test.ts -------------------------------------------------------------------------------- /test/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/helpers/utils.ts -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/setup.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/tslint.json -------------------------------------------------------------------------------- /test/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/utils/api.ts -------------------------------------------------------------------------------- /test/utils/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/utils/base.ts -------------------------------------------------------------------------------- /test/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/utils/config.ts -------------------------------------------------------------------------------- /test/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/utils/constants.ts -------------------------------------------------------------------------------- /test/utils/cryptography.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/utils/cryptography.ts -------------------------------------------------------------------------------- /test/utils/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/utils/error.ts -------------------------------------------------------------------------------- /test/utils/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/utils/fs.ts -------------------------------------------------------------------------------- /test/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/utils/helpers.ts -------------------------------------------------------------------------------- /test/utils/input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/utils/input/index.ts -------------------------------------------------------------------------------- /test/utils/input/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/utils/input/utils.ts -------------------------------------------------------------------------------- /test/utils/mnemonic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/utils/mnemonic.ts -------------------------------------------------------------------------------- /test/utils/print.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/utils/print.ts -------------------------------------------------------------------------------- /test/utils/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/utils/query.ts -------------------------------------------------------------------------------- /test/utils/tablify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/utils/tablify.ts -------------------------------------------------------------------------------- /test/utils/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/test/utils/transactions.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/tslint.json -------------------------------------------------------------------------------- /types/chai/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/types/chai/index.d.ts -------------------------------------------------------------------------------- /types/cli-table3/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/types/cli-table3/index.d.ts -------------------------------------------------------------------------------- /types/globals/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/types/globals/index.d.ts -------------------------------------------------------------------------------- /types/json/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiskArchive/lisk-commander/HEAD/types/json/index.d.ts --------------------------------------------------------------------------------