├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .images └── styled-example.png ├── .npmignore ├── .nvmrc ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin └── rc ├── docs ├── README.md ├── classes │ ├── _ricardiancontractfactory_.ricardiancontractfactory.md │ ├── _ricardiancontractrendererror_.ricardiancontractrendererror.md │ ├── _specversions_v0_0_ricardiancontractprocessorimpl_.ricardiancontractprocessorimpl.md │ ├── _specversions_v0_0_variablewrapper_.variablewrapper.md │ ├── _specversions_v0_1_ricardiancontractprocessorimpl_.ricardiancontractprocessorimpl.md │ └── _specversions_v0_2_ricardiancontractprocessorimpl_.ricardiancontractprocessorimpl.md ├── interfaces │ ├── _interfaces_.abi.md │ ├── _interfaces_.abiaction.md │ ├── _interfaces_.contractmetadata.md │ ├── _interfaces_.ricardianclause.md │ ├── _interfaces_.ricardiancontract.md │ ├── _interfaces_.ricardiancontractconfig.md │ ├── _interfaces_.ricardiancontractprocessor.md │ ├── _interfaces_.specversion.md │ ├── _interfaces_.transaction.md │ ├── _interfaces_.transactionaction.md │ ├── _interfaces_.transactionactionauthorization.md │ ├── _ricardiancontractrendererror_.htmlvalidationerrorargs.md │ ├── _specversions_v0_0_ricardiancontext_.ricardiancontext.md │ └── _specversions_v0_1_helpers_.asset.md └── modules │ ├── _bin_rc_.md │ ├── _config_.md │ ├── _factoryhelpers_.md │ ├── _interfaces_.md │ ├── _ricardiancontractfactory_.md │ ├── _ricardiancontractrendererror_.md │ ├── _specversions_v0_0_helpers_.md │ ├── _specversions_v0_0_ricardiancontext_.md │ ├── _specversions_v0_0_ricardiancontractprocessorimpl_.md │ ├── _specversions_v0_0_validators_.md │ ├── _specversions_v0_0_variablewrapper_.md │ ├── _specversions_v0_0_whitelist_.md │ ├── _specversions_v0_0_wrapvariable_.md │ ├── _specversions_v0_1_helpers_.md │ ├── _specversions_v0_1_ricardiancontractprocessorimpl_.md │ ├── _specversions_v0_2_helpers_.md │ ├── _specversions_v0_2_ricardiancontractprocessorimpl_.md │ └── _utils_contractutils_.md ├── examples ├── abi.json └── transaction.json ├── index-complex.js ├── index-simple.js ├── index.js ├── jest.config.js ├── package.json ├── src ├── RicardianContractFactory.test.ts ├── RicardianContractFactory.ts ├── RicardianContractRenderError.test.ts ├── RicardianContractRenderError.ts ├── bin │ └── rc.ts ├── config.ts ├── factoryHelpers.test.ts ├── factoryHelpers.ts ├── index.ts ├── interfaces.ts ├── specVersions │ ├── v0.0 │ │ ├── RicardianContext.ts │ │ ├── RicardianContract.smoke.test.ts │ │ ├── RicardianContractProcessorImpl.test.ts │ │ ├── RicardianContractProcessorImpl.ts │ │ ├── VariableWrapper.test.ts │ │ ├── VariableWrapper.ts │ │ ├── WrapVariable.ts │ │ ├── helpers.test.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── testfixtures │ │ │ └── jscore-fixtures.ts │ │ ├── validators.test.ts │ │ ├── validators.ts │ │ └── whitelist.ts │ ├── v0.1 │ │ ├── RicardianContractProcessorImpl.test.ts │ │ ├── RicardianContractProcessorImpl.ts │ │ ├── helpers.test.ts │ │ ├── helpers.ts │ │ └── index.ts │ └── v0.2 │ │ ├── RicardianContractProcessorImpl.test.ts │ │ ├── RicardianContractProcessorImpl.ts │ │ ├── helpers.test.ts │ │ ├── helpers.ts │ │ └── index.ts ├── testfixtures │ ├── complex-fixtures.ts │ └── fixtures.ts ├── utils │ ├── contractUtils.test.ts │ └── contractUtils.ts └── xss.d.ts ├── tsconfig.json ├── tsconfig.webpack.json ├── tslint.json ├── webpack.jscore.config.js ├── webpack.web.config.js └── yarn.lock /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.images/styled-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/.images/styled-example.png -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 10.15.0 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /bin/rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/bin/rc -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/classes/_ricardiancontractfactory_.ricardiancontractfactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/classes/_ricardiancontractfactory_.ricardiancontractfactory.md -------------------------------------------------------------------------------- /docs/classes/_ricardiancontractrendererror_.ricardiancontractrendererror.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/classes/_ricardiancontractrendererror_.ricardiancontractrendererror.md -------------------------------------------------------------------------------- /docs/classes/_specversions_v0_0_ricardiancontractprocessorimpl_.ricardiancontractprocessorimpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/classes/_specversions_v0_0_ricardiancontractprocessorimpl_.ricardiancontractprocessorimpl.md -------------------------------------------------------------------------------- /docs/classes/_specversions_v0_0_variablewrapper_.variablewrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/classes/_specversions_v0_0_variablewrapper_.variablewrapper.md -------------------------------------------------------------------------------- /docs/classes/_specversions_v0_1_ricardiancontractprocessorimpl_.ricardiancontractprocessorimpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/classes/_specversions_v0_1_ricardiancontractprocessorimpl_.ricardiancontractprocessorimpl.md -------------------------------------------------------------------------------- /docs/classes/_specversions_v0_2_ricardiancontractprocessorimpl_.ricardiancontractprocessorimpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/classes/_specversions_v0_2_ricardiancontractprocessorimpl_.ricardiancontractprocessorimpl.md -------------------------------------------------------------------------------- /docs/interfaces/_interfaces_.abi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/interfaces/_interfaces_.abi.md -------------------------------------------------------------------------------- /docs/interfaces/_interfaces_.abiaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/interfaces/_interfaces_.abiaction.md -------------------------------------------------------------------------------- /docs/interfaces/_interfaces_.contractmetadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/interfaces/_interfaces_.contractmetadata.md -------------------------------------------------------------------------------- /docs/interfaces/_interfaces_.ricardianclause.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/interfaces/_interfaces_.ricardianclause.md -------------------------------------------------------------------------------- /docs/interfaces/_interfaces_.ricardiancontract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/interfaces/_interfaces_.ricardiancontract.md -------------------------------------------------------------------------------- /docs/interfaces/_interfaces_.ricardiancontractconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/interfaces/_interfaces_.ricardiancontractconfig.md -------------------------------------------------------------------------------- /docs/interfaces/_interfaces_.ricardiancontractprocessor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/interfaces/_interfaces_.ricardiancontractprocessor.md -------------------------------------------------------------------------------- /docs/interfaces/_interfaces_.specversion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/interfaces/_interfaces_.specversion.md -------------------------------------------------------------------------------- /docs/interfaces/_interfaces_.transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/interfaces/_interfaces_.transaction.md -------------------------------------------------------------------------------- /docs/interfaces/_interfaces_.transactionaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/interfaces/_interfaces_.transactionaction.md -------------------------------------------------------------------------------- /docs/interfaces/_interfaces_.transactionactionauthorization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/interfaces/_interfaces_.transactionactionauthorization.md -------------------------------------------------------------------------------- /docs/interfaces/_ricardiancontractrendererror_.htmlvalidationerrorargs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/interfaces/_ricardiancontractrendererror_.htmlvalidationerrorargs.md -------------------------------------------------------------------------------- /docs/interfaces/_specversions_v0_0_ricardiancontext_.ricardiancontext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/interfaces/_specversions_v0_0_ricardiancontext_.ricardiancontext.md -------------------------------------------------------------------------------- /docs/interfaces/_specversions_v0_1_helpers_.asset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/interfaces/_specversions_v0_1_helpers_.asset.md -------------------------------------------------------------------------------- /docs/modules/_bin_rc_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/modules/_bin_rc_.md -------------------------------------------------------------------------------- /docs/modules/_config_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/modules/_config_.md -------------------------------------------------------------------------------- /docs/modules/_factoryhelpers_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/modules/_factoryhelpers_.md -------------------------------------------------------------------------------- /docs/modules/_interfaces_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/modules/_interfaces_.md -------------------------------------------------------------------------------- /docs/modules/_ricardiancontractfactory_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/modules/_ricardiancontractfactory_.md -------------------------------------------------------------------------------- /docs/modules/_ricardiancontractrendererror_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/modules/_ricardiancontractrendererror_.md -------------------------------------------------------------------------------- /docs/modules/_specversions_v0_0_helpers_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/modules/_specversions_v0_0_helpers_.md -------------------------------------------------------------------------------- /docs/modules/_specversions_v0_0_ricardiancontext_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/modules/_specversions_v0_0_ricardiancontext_.md -------------------------------------------------------------------------------- /docs/modules/_specversions_v0_0_ricardiancontractprocessorimpl_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/modules/_specversions_v0_0_ricardiancontractprocessorimpl_.md -------------------------------------------------------------------------------- /docs/modules/_specversions_v0_0_validators_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/modules/_specversions_v0_0_validators_.md -------------------------------------------------------------------------------- /docs/modules/_specversions_v0_0_variablewrapper_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/modules/_specversions_v0_0_variablewrapper_.md -------------------------------------------------------------------------------- /docs/modules/_specversions_v0_0_whitelist_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/modules/_specversions_v0_0_whitelist_.md -------------------------------------------------------------------------------- /docs/modules/_specversions_v0_0_wrapvariable_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/modules/_specversions_v0_0_wrapvariable_.md -------------------------------------------------------------------------------- /docs/modules/_specversions_v0_1_helpers_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/modules/_specversions_v0_1_helpers_.md -------------------------------------------------------------------------------- /docs/modules/_specversions_v0_1_ricardiancontractprocessorimpl_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/modules/_specversions_v0_1_ricardiancontractprocessorimpl_.md -------------------------------------------------------------------------------- /docs/modules/_specversions_v0_2_helpers_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/modules/_specversions_v0_2_helpers_.md -------------------------------------------------------------------------------- /docs/modules/_specversions_v0_2_ricardiancontractprocessorimpl_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/modules/_specversions_v0_2_ricardiancontractprocessorimpl_.md -------------------------------------------------------------------------------- /docs/modules/_utils_contractutils_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/docs/modules/_utils_contractutils_.md -------------------------------------------------------------------------------- /examples/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/examples/abi.json -------------------------------------------------------------------------------- /examples/transaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/examples/transaction.json -------------------------------------------------------------------------------- /index-complex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/index-complex.js -------------------------------------------------------------------------------- /index-simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/index-simple.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/index.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/package.json -------------------------------------------------------------------------------- /src/RicardianContractFactory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/RicardianContractFactory.test.ts -------------------------------------------------------------------------------- /src/RicardianContractFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/RicardianContractFactory.ts -------------------------------------------------------------------------------- /src/RicardianContractRenderError.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/RicardianContractRenderError.test.ts -------------------------------------------------------------------------------- /src/RicardianContractRenderError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/RicardianContractRenderError.ts -------------------------------------------------------------------------------- /src/bin/rc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/bin/rc.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- 1 | export const MAX_PASSES = 3 2 | -------------------------------------------------------------------------------- /src/factoryHelpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/factoryHelpers.test.ts -------------------------------------------------------------------------------- /src/factoryHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/factoryHelpers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/interfaces.ts -------------------------------------------------------------------------------- /src/specVersions/v0.0/RicardianContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.0/RicardianContext.ts -------------------------------------------------------------------------------- /src/specVersions/v0.0/RicardianContract.smoke.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.0/RicardianContract.smoke.test.ts -------------------------------------------------------------------------------- /src/specVersions/v0.0/RicardianContractProcessorImpl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.0/RicardianContractProcessorImpl.test.ts -------------------------------------------------------------------------------- /src/specVersions/v0.0/RicardianContractProcessorImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.0/RicardianContractProcessorImpl.ts -------------------------------------------------------------------------------- /src/specVersions/v0.0/VariableWrapper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.0/VariableWrapper.test.ts -------------------------------------------------------------------------------- /src/specVersions/v0.0/VariableWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.0/VariableWrapper.ts -------------------------------------------------------------------------------- /src/specVersions/v0.0/WrapVariable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.0/WrapVariable.ts -------------------------------------------------------------------------------- /src/specVersions/v0.0/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.0/helpers.test.ts -------------------------------------------------------------------------------- /src/specVersions/v0.0/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.0/helpers.ts -------------------------------------------------------------------------------- /src/specVersions/v0.0/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.0/index.ts -------------------------------------------------------------------------------- /src/specVersions/v0.0/testfixtures/jscore-fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.0/testfixtures/jscore-fixtures.ts -------------------------------------------------------------------------------- /src/specVersions/v0.0/validators.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.0/validators.test.ts -------------------------------------------------------------------------------- /src/specVersions/v0.0/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.0/validators.ts -------------------------------------------------------------------------------- /src/specVersions/v0.0/whitelist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.0/whitelist.ts -------------------------------------------------------------------------------- /src/specVersions/v0.1/RicardianContractProcessorImpl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.1/RicardianContractProcessorImpl.test.ts -------------------------------------------------------------------------------- /src/specVersions/v0.1/RicardianContractProcessorImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.1/RicardianContractProcessorImpl.ts -------------------------------------------------------------------------------- /src/specVersions/v0.1/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.1/helpers.test.ts -------------------------------------------------------------------------------- /src/specVersions/v0.1/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.1/helpers.ts -------------------------------------------------------------------------------- /src/specVersions/v0.1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.1/index.ts -------------------------------------------------------------------------------- /src/specVersions/v0.2/RicardianContractProcessorImpl.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.2/RicardianContractProcessorImpl.test.ts -------------------------------------------------------------------------------- /src/specVersions/v0.2/RicardianContractProcessorImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.2/RicardianContractProcessorImpl.ts -------------------------------------------------------------------------------- /src/specVersions/v0.2/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.2/helpers.test.ts -------------------------------------------------------------------------------- /src/specVersions/v0.2/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.2/helpers.ts -------------------------------------------------------------------------------- /src/specVersions/v0.2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/specVersions/v0.2/index.ts -------------------------------------------------------------------------------- /src/testfixtures/complex-fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/testfixtures/complex-fixtures.ts -------------------------------------------------------------------------------- /src/testfixtures/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/testfixtures/fixtures.ts -------------------------------------------------------------------------------- /src/utils/contractUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/utils/contractUtils.test.ts -------------------------------------------------------------------------------- /src/utils/contractUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/src/utils/contractUtils.ts -------------------------------------------------------------------------------- /src/xss.d.ts: -------------------------------------------------------------------------------- 1 | declare module "xss" 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.webpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/tsconfig.webpack.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.jscore.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/webpack.jscore.config.js -------------------------------------------------------------------------------- /webpack.web.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/webpack.web.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/ricardian-template-toolkit/HEAD/yarn.lock --------------------------------------------------------------------------------