├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── generateInterface.ts ├── package.json ├── src ├── Signer.ts ├── SignerError.ts ├── constants.ts ├── decorators.ts ├── helpers.ts ├── index.ts ├── types │ └── index.ts ├── validation.ts └── validators.ts ├── test ├── TestProvider.ts ├── index.spec.ts ├── test-env.ts ├── transactions │ ├── alias.spec.ts │ ├── data.spec.ts │ ├── leasing.spec.ts │ ├── scripts.spec.ts │ ├── sponsorship.spec.ts │ ├── tokens.spec.ts │ └── transfers.spec.ts └── utils.ts ├── tsconfig.build.json ├── tsconfig.json └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | coverage/ 4 | webpack.* 5 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/README.md -------------------------------------------------------------------------------- /generateInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/generateInterface.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/package.json -------------------------------------------------------------------------------- /src/Signer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/src/Signer.ts -------------------------------------------------------------------------------- /src/SignerError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/src/SignerError.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/src/decorators.ts -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/src/validation.ts -------------------------------------------------------------------------------- /src/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/src/validators.ts -------------------------------------------------------------------------------- /test/TestProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/test/TestProvider.ts -------------------------------------------------------------------------------- /test/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/test/index.spec.ts -------------------------------------------------------------------------------- /test/test-env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/test/test-env.ts -------------------------------------------------------------------------------- /test/transactions/alias.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/test/transactions/alias.spec.ts -------------------------------------------------------------------------------- /test/transactions/data.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/test/transactions/data.spec.ts -------------------------------------------------------------------------------- /test/transactions/leasing.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/test/transactions/leasing.spec.ts -------------------------------------------------------------------------------- /test/transactions/scripts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/test/transactions/scripts.spec.ts -------------------------------------------------------------------------------- /test/transactions/sponsorship.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/test/transactions/sponsorship.spec.ts -------------------------------------------------------------------------------- /test/transactions/tokens.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/test/transactions/tokens.spec.ts -------------------------------------------------------------------------------- /test/transactions/transfers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/test/transactions/transfers.spec.ts -------------------------------------------------------------------------------- /test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/test/utils.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wavesplatform/signer/HEAD/webpack.config.js --------------------------------------------------------------------------------