├── .gitignore ├── .eslintignore ├── tsconfig.json ├── src ├── tsconfig.json ├── errors │ ├── deviceUnsupported.ts │ ├── errorBase.ts │ ├── index.ts │ ├── invalidData.ts │ └── deviceStatusError.ts ├── interactions │ ├── common │ │ ├── types.ts │ │ └── ins.ts │ ├── runTests.ts │ ├── serialization │ │ ├── operationalCertificate.ts │ │ ├── txAuxiliaryData.ts │ │ ├── messageData.ts │ │ ├── nativeScript.ts │ │ ├── addressParams.ts │ │ ├── txOutput.ts │ │ ├── cVoteRegistration.ts │ │ ├── txOther.ts │ │ ├── txInit.ts │ │ ├── txCertificate.ts │ │ └── poolRegistrationCertificate.ts │ ├── getSerial.ts │ ├── showAddress.ts │ ├── signOperationalCertificate.ts │ ├── deriveAddress.ts │ ├── signCVote.ts │ ├── getExtendedPublicKeys.ts │ ├── signMessage.ts │ ├── deriveNativeScriptHash.ts │ └── getVersion.ts ├── parsing │ ├── constants.ts │ ├── network.ts │ ├── cVote.ts │ ├── operationalCertificate.ts │ ├── messageData.ts │ ├── txAuxiliaryData.ts │ ├── nativeScript.ts │ ├── certificate.ts │ └── output.ts ├── utils │ ├── assert.ts │ ├── address.ts │ └── serialize.ts └── utils.ts ├── _typedoc └── custom-theme │ ├── templates │ ├── index.hbs │ └── reflection.hbs │ ├── assets │ └── images │ │ ├── icons.png │ │ ├── widgets.png │ │ ├── icons@2x.png │ │ └── widgets@2x.png │ ├── partials │ ├── toc.hbs │ ├── breadcrumb.hbs │ ├── member.signatures.hbs │ ├── member.reference.hbs │ ├── toc.root.hbs │ ├── hierarchy.hbs │ ├── analytics.hbs │ ├── typeParameters.hbs │ ├── members.hbs │ ├── members.group.hbs │ ├── comment.hbs │ ├── member.hbs │ ├── footer.hbs │ ├── member.sources.hbs │ ├── navigation.hbs │ ├── member.declaration.hbs │ ├── member.getterSetter.hbs │ ├── member.signature.title.hbs │ ├── typeAndParent.hbs │ ├── member.signature.body.hbs │ ├── index.hbs │ ├── header.hbs │ └── parameter.hbs │ └── layouts │ └── default.hbs ├── .prettierignore ├── .prettierrc.js ├── test ├── tsconfig.json ├── device-self-test │ └── runTestsDevice.test.ts ├── integration │ ├── signTxCVote.test.ts │ ├── getSerial.test.ts │ ├── signCVote.test.ts │ ├── signMessage.test.ts │ ├── __fixtures__ │ │ ├── signOperationalCertificate.ts │ │ ├── signCVote.ts │ │ └── getExtendedPublicKey.ts │ ├── signOperationalCertificate.test.ts │ ├── getVersion.test.ts │ ├── signTxPoolRegistration.test.ts │ ├── deriveNativeScriptHash.test.ts │ ├── signTx.test.ts │ ├── deriveAddress.test.ts │ └── getExtendedPublicKey.test.ts ├── unit │ └── parse.test.ts └── test_utils.ts ├── .flowconfig ├── example-node └── tsconfig.json ├── workspace.code-workspace ├── typedoc.json ├── tsconfig.base.json ├── .cspell.json ├── .eslintrc.js ├── README.md ├── .circleci └── config.yml └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | .vscode 4 | docs_generated/ 5 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | docs_generated/ 3 | _typedoc/ 4 | node_modules/ 5 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.base", 3 | "include": ["./**/*.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.base", 3 | "include": ["./**/*.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /_typedoc/custom-theme/templates/index.hbs: -------------------------------------------------------------------------------- 1 |
Generated using TypeDoc
20 |
14 | {{#each tags}} 15 |- {{tagName}}
16 | - {{#markdown}}{{{text}}}{{/markdown}}
17 | {{/each}}
18 |
19 | {{/if}} 20 |