├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .npmignore ├── .prettierrc ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Polymath.png ├── README.md ├── contracts ├── Compliance.sol ├── Customers.sol ├── Migrations.sol ├── PolyTokenMock.sol ├── STO20.sol ├── STOContract.sol ├── SafeMath.sol ├── SecurityToken.sol ├── SecurityTokenRegistrar.sol ├── Template.sol └── interfaces │ ├── ICompliance.sol │ ├── ICustomers.sol │ ├── IERC20.sol │ ├── ISTRegistrar.sol │ ├── ISecurityToken.sol │ └── ITemplate.sol ├── docs ├── assets │ ├── anchor.js │ ├── bass-addons.css │ ├── bass.css │ ├── fonts │ │ ├── EOT │ │ │ ├── SourceCodePro-Bold.eot │ │ │ └── SourceCodePro-Regular.eot │ │ ├── LICENSE.txt │ │ ├── OTF │ │ │ ├── SourceCodePro-Bold.otf │ │ │ └── SourceCodePro-Regular.otf │ │ ├── TTF │ │ │ ├── SourceCodePro-Bold.ttf │ │ │ └── SourceCodePro-Regular.ttf │ │ ├── WOFF │ │ │ ├── OTF │ │ │ │ ├── SourceCodePro-Bold.otf.woff │ │ │ │ └── SourceCodePro-Regular.otf.woff │ │ │ └── TTF │ │ │ │ ├── SourceCodePro-Bold.ttf.woff │ │ │ │ └── SourceCodePro-Regular.ttf.woff │ │ ├── WOFF2 │ │ │ ├── OTF │ │ │ │ ├── SourceCodePro-Bold.otf.woff2 │ │ │ │ └── SourceCodePro-Regular.otf.woff2 │ │ │ └── TTF │ │ │ │ ├── SourceCodePro-Bold.ttf.woff2 │ │ │ │ └── SourceCodePro-Regular.ttf.woff2 │ │ └── source-code-pro.css │ ├── github.css │ ├── site.js │ ├── split.css │ ├── split.js │ └── style.css └── index.html ├── documentation.yml ├── flow-typed └── npm │ ├── @0xproject │ └── web3-wrapper_vx.x.x.js │ ├── babel-cli_vx.x.x.js │ ├── babel-core_vx.x.x.js │ ├── babel-eslint_vx.x.x.js │ ├── babel-loader_vx.x.x.js │ ├── babel-plugin-transform-object-rest-spread_vx.x.x.js │ ├── babel-plugin-transform-runtime_vx.x.x.js │ ├── babel-preset-env_vx.x.x.js │ ├── babel-preset-flow_vx.x.x.js │ ├── bignumber.js_vx.x.x.js │ ├── chai_v4.x.x.js │ ├── doctrine-temporary-fork_vx.x.x.js │ ├── eslint-config-airbnb-base_vx.x.x.js │ ├── eslint-config-prettier_vx.x.x.js │ ├── eslint-plugin-import_vx.x.x.js │ ├── eslint-plugin-prettier_vx.x.x.js │ ├── eslint-watch_vx.x.x.js │ ├── eslint_vx.x.x.js │ ├── flow-bin_v0.x.x.js │ ├── fs-extra_vx.x.x.js │ ├── ganache-cli_vx.x.x.js │ ├── github-slugger_vx.x.x.js │ ├── globals-docs_vx.x.x.js │ ├── highlight.js_vx.x.x.js │ ├── husky_vx.x.x.js │ ├── json-loader_vx.x.x.js │ ├── lint-staged_vx.x.x.js │ ├── mocha_v4.x.x.js │ ├── npm-run-all_vx.x.x.js │ ├── prettier_vx.x.x.js │ ├── remark-html_vx.x.x.js │ ├── remark_vx.x.x.js │ ├── truffle-contract_vx.x.x.js │ ├── truffle_vx.x.x.js │ ├── uglifyjs-webpack-plugin_vx.x.x.js │ ├── unist-builder_vx.x.x.js │ ├── uuid_v3.x.x.js │ ├── vinyl-fs_vx.x.x.js │ ├── vinyl_vx.x.x.js │ ├── web3_vx.x.x.js │ ├── webpack-node-externals_vx.x.x.js │ ├── webpack_vx.x.x.js │ └── yargs_v10.x.x.js ├── index.html ├── index.js ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── scripts ├── autoPull.sh ├── test.sh └── updateContracts.sh ├── src ├── artifacts │ ├── Compliance.json │ ├── Customers.json │ ├── PolyTokenMock.json │ ├── STOContract.json │ ├── SecurityToken.json │ ├── SecurityTokenRegistrar.json │ └── Template.json ├── bytes32Zero.js ├── cli │ └── index.js ├── contract_wrappers │ ├── Compliance.js │ ├── ContractWrapper.js │ ├── Customers.js │ ├── PolyToken.js │ ├── STOContract.js │ ├── SecurityToken.js │ ├── SecurityTokenRegistrar.js │ ├── Template.js │ └── index.js ├── index.js ├── roles.js ├── theme_polymath │ ├── README.md │ ├── assets │ │ ├── anchor.js │ │ ├── bass-addons.css │ │ ├── bass.css │ │ ├── fonts │ │ │ ├── EOT │ │ │ │ ├── SourceCodePro-Bold.eot │ │ │ │ └── SourceCodePro-Regular.eot │ │ │ ├── LICENSE.txt │ │ │ ├── OTF │ │ │ │ ├── SourceCodePro-Bold.otf │ │ │ │ └── SourceCodePro-Regular.otf │ │ │ ├── TTF │ │ │ │ ├── SourceCodePro-Bold.ttf │ │ │ │ └── SourceCodePro-Regular.ttf │ │ │ ├── WOFF │ │ │ │ ├── OTF │ │ │ │ │ ├── SourceCodePro-Bold.otf.woff │ │ │ │ │ └── SourceCodePro-Regular.otf.woff │ │ │ │ └── TTF │ │ │ │ │ ├── SourceCodePro-Bold.ttf.woff │ │ │ │ │ └── SourceCodePro-Regular.ttf.woff │ │ │ ├── WOFF2 │ │ │ │ ├── OTF │ │ │ │ │ ├── SourceCodePro-Bold.otf.woff2 │ │ │ │ │ └── SourceCodePro-Regular.otf.woff2 │ │ │ │ └── TTF │ │ │ │ │ ├── SourceCodePro-Bold.ttf.woff2 │ │ │ │ │ └── SourceCodePro-Regular.ttf.woff2 │ │ │ └── source-code-pro.css │ │ ├── github.css │ │ ├── site.js │ │ ├── split.css │ │ ├── split.js │ │ └── style.css │ ├── documentation.yml │ ├── index._ │ ├── index.js │ ├── note._ │ ├── output │ │ ├── highlighter.js │ │ ├── html.js │ │ ├── json.js │ │ ├── markdown.js │ │ ├── markdown_ast.js │ │ └── util │ │ │ ├── format_type.js │ │ │ ├── formatters.js │ │ │ ├── linker_stack.js │ │ │ └── reroute_links.js │ ├── paramProperty._ │ ├── section._ │ ├── section_list._ │ └── walk.js └── types.js ├── test ├── Compliance_test.js ├── Customers_test.js ├── PolyToken_test.js ├── SecurityTokenRegistrar_test.js ├── SecurityToken_test.js ├── Template_test.js └── util │ ├── fake.js │ ├── getAccounts.js │ ├── make_examples.js │ ├── time.js │ └── web3.js ├── truffle.js ├── webpack.config.js ├── whitepaper.pdf └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/LICENSE -------------------------------------------------------------------------------- /Polymath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/Polymath.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Compliance.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/contracts/Compliance.sol -------------------------------------------------------------------------------- /contracts/Customers.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/contracts/Customers.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/PolyTokenMock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/contracts/PolyTokenMock.sol -------------------------------------------------------------------------------- /contracts/STO20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/contracts/STO20.sol -------------------------------------------------------------------------------- /contracts/STOContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/contracts/STOContract.sol -------------------------------------------------------------------------------- /contracts/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/contracts/SafeMath.sol -------------------------------------------------------------------------------- /contracts/SecurityToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/contracts/SecurityToken.sol -------------------------------------------------------------------------------- /contracts/SecurityTokenRegistrar.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/contracts/SecurityTokenRegistrar.sol -------------------------------------------------------------------------------- /contracts/Template.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/contracts/Template.sol -------------------------------------------------------------------------------- /contracts/interfaces/ICompliance.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/contracts/interfaces/ICompliance.sol -------------------------------------------------------------------------------- /contracts/interfaces/ICustomers.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/contracts/interfaces/ICustomers.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/contracts/interfaces/IERC20.sol -------------------------------------------------------------------------------- /contracts/interfaces/ISTRegistrar.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/contracts/interfaces/ISTRegistrar.sol -------------------------------------------------------------------------------- /contracts/interfaces/ISecurityToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/contracts/interfaces/ISecurityToken.sol -------------------------------------------------------------------------------- /contracts/interfaces/ITemplate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/contracts/interfaces/ITemplate.sol -------------------------------------------------------------------------------- /docs/assets/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/anchor.js -------------------------------------------------------------------------------- /docs/assets/bass-addons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/bass-addons.css -------------------------------------------------------------------------------- /docs/assets/bass.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/bass.css -------------------------------------------------------------------------------- /docs/assets/fonts/EOT/SourceCodePro-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/fonts/EOT/SourceCodePro-Bold.eot -------------------------------------------------------------------------------- /docs/assets/fonts/EOT/SourceCodePro-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/fonts/EOT/SourceCodePro-Regular.eot -------------------------------------------------------------------------------- /docs/assets/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/fonts/LICENSE.txt -------------------------------------------------------------------------------- /docs/assets/fonts/OTF/SourceCodePro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/fonts/OTF/SourceCodePro-Bold.otf -------------------------------------------------------------------------------- /docs/assets/fonts/OTF/SourceCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/fonts/OTF/SourceCodePro-Regular.otf -------------------------------------------------------------------------------- /docs/assets/fonts/TTF/SourceCodePro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/fonts/TTF/SourceCodePro-Bold.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/TTF/SourceCodePro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/fonts/TTF/SourceCodePro-Regular.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/WOFF/OTF/SourceCodePro-Bold.otf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/fonts/WOFF/OTF/SourceCodePro-Bold.otf.woff -------------------------------------------------------------------------------- /docs/assets/fonts/WOFF/OTF/SourceCodePro-Regular.otf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/fonts/WOFF/OTF/SourceCodePro-Regular.otf.woff -------------------------------------------------------------------------------- /docs/assets/fonts/WOFF/TTF/SourceCodePro-Bold.ttf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/fonts/WOFF/TTF/SourceCodePro-Bold.ttf.woff -------------------------------------------------------------------------------- /docs/assets/fonts/WOFF/TTF/SourceCodePro-Regular.ttf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/fonts/WOFF/TTF/SourceCodePro-Regular.ttf.woff -------------------------------------------------------------------------------- /docs/assets/fonts/WOFF2/OTF/SourceCodePro-Bold.otf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/fonts/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/WOFF2/OTF/SourceCodePro-Regular.otf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/fonts/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/fonts/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/fonts/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/source-code-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/fonts/source-code-pro.css -------------------------------------------------------------------------------- /docs/assets/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/github.css -------------------------------------------------------------------------------- /docs/assets/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/site.js -------------------------------------------------------------------------------- /docs/assets/split.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/split.css -------------------------------------------------------------------------------- /docs/assets/split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/split.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/docs/index.html -------------------------------------------------------------------------------- /documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/documentation.yml -------------------------------------------------------------------------------- /flow-typed/npm/@0xproject/web3-wrapper_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/@0xproject/web3-wrapper_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-cli_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/babel-cli_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-core_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/babel-core_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-eslint_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/babel-eslint_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-loader_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/babel-loader_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-plugin-transform-object-rest-spread_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/babel-plugin-transform-object-rest-spread_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-plugin-transform-runtime_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/babel-plugin-transform-runtime_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-env_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/babel-preset-env_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-flow_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/babel-preset-flow_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/bignumber.js_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/bignumber.js_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/chai_v4.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/chai_v4.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/doctrine-temporary-fork_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/doctrine-temporary-fork_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-config-airbnb-base_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/eslint-config-airbnb-base_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-config-prettier_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/eslint-config-prettier_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-plugin-import_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/eslint-plugin-import_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-plugin-prettier_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/eslint-plugin-prettier_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint-watch_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/eslint-watch_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/eslint_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/eslint_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/flow-bin_v0.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/flow-bin_v0.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/fs-extra_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/fs-extra_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/ganache-cli_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/ganache-cli_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/github-slugger_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/github-slugger_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/globals-docs_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/globals-docs_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/highlight.js_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/highlight.js_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/husky_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/husky_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/json-loader_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/json-loader_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/lint-staged_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/lint-staged_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/mocha_v4.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/mocha_v4.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/npm-run-all_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/npm-run-all_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/prettier_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/prettier_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/remark-html_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/remark-html_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/remark_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/remark_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/truffle-contract_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/truffle-contract_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/truffle_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/truffle_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/uglifyjs-webpack-plugin_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/uglifyjs-webpack-plugin_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/unist-builder_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/unist-builder_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/uuid_v3.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/uuid_v3.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/vinyl-fs_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/vinyl-fs_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/vinyl_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/vinyl_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/web3_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/web3_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/webpack-node-externals_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/webpack-node-externals_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/webpack_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/webpack_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/yargs_v10.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/flow-typed/npm/yargs_v10.x.x.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/index.js -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/package.json -------------------------------------------------------------------------------- /scripts/autoPull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/scripts/autoPull.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/updateContracts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/scripts/updateContracts.sh -------------------------------------------------------------------------------- /src/artifacts/Compliance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/artifacts/Compliance.json -------------------------------------------------------------------------------- /src/artifacts/Customers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/artifacts/Customers.json -------------------------------------------------------------------------------- /src/artifacts/PolyTokenMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/artifacts/PolyTokenMock.json -------------------------------------------------------------------------------- /src/artifacts/STOContract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/artifacts/STOContract.json -------------------------------------------------------------------------------- /src/artifacts/SecurityToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/artifacts/SecurityToken.json -------------------------------------------------------------------------------- /src/artifacts/SecurityTokenRegistrar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/artifacts/SecurityTokenRegistrar.json -------------------------------------------------------------------------------- /src/artifacts/Template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/artifacts/Template.json -------------------------------------------------------------------------------- /src/bytes32Zero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/bytes32Zero.js -------------------------------------------------------------------------------- /src/cli/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/cli/index.js -------------------------------------------------------------------------------- /src/contract_wrappers/Compliance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/contract_wrappers/Compliance.js -------------------------------------------------------------------------------- /src/contract_wrappers/ContractWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/contract_wrappers/ContractWrapper.js -------------------------------------------------------------------------------- /src/contract_wrappers/Customers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/contract_wrappers/Customers.js -------------------------------------------------------------------------------- /src/contract_wrappers/PolyToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/contract_wrappers/PolyToken.js -------------------------------------------------------------------------------- /src/contract_wrappers/STOContract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/contract_wrappers/STOContract.js -------------------------------------------------------------------------------- /src/contract_wrappers/SecurityToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/contract_wrappers/SecurityToken.js -------------------------------------------------------------------------------- /src/contract_wrappers/SecurityTokenRegistrar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/contract_wrappers/SecurityTokenRegistrar.js -------------------------------------------------------------------------------- /src/contract_wrappers/Template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/contract_wrappers/Template.js -------------------------------------------------------------------------------- /src/contract_wrappers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/contract_wrappers/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/index.js -------------------------------------------------------------------------------- /src/roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/roles.js -------------------------------------------------------------------------------- /src/theme_polymath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/README.md -------------------------------------------------------------------------------- /src/theme_polymath/assets/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/anchor.js -------------------------------------------------------------------------------- /src/theme_polymath/assets/bass-addons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/bass-addons.css -------------------------------------------------------------------------------- /src/theme_polymath/assets/bass.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/bass.css -------------------------------------------------------------------------------- /src/theme_polymath/assets/fonts/EOT/SourceCodePro-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/fonts/EOT/SourceCodePro-Bold.eot -------------------------------------------------------------------------------- /src/theme_polymath/assets/fonts/EOT/SourceCodePro-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/fonts/EOT/SourceCodePro-Regular.eot -------------------------------------------------------------------------------- /src/theme_polymath/assets/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/fonts/LICENSE.txt -------------------------------------------------------------------------------- /src/theme_polymath/assets/fonts/OTF/SourceCodePro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/fonts/OTF/SourceCodePro-Bold.otf -------------------------------------------------------------------------------- /src/theme_polymath/assets/fonts/OTF/SourceCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/fonts/OTF/SourceCodePro-Regular.otf -------------------------------------------------------------------------------- /src/theme_polymath/assets/fonts/TTF/SourceCodePro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/fonts/TTF/SourceCodePro-Bold.ttf -------------------------------------------------------------------------------- /src/theme_polymath/assets/fonts/TTF/SourceCodePro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/fonts/TTF/SourceCodePro-Regular.ttf -------------------------------------------------------------------------------- /src/theme_polymath/assets/fonts/WOFF/OTF/SourceCodePro-Bold.otf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/fonts/WOFF/OTF/SourceCodePro-Bold.otf.woff -------------------------------------------------------------------------------- /src/theme_polymath/assets/fonts/WOFF/OTF/SourceCodePro-Regular.otf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/fonts/WOFF/OTF/SourceCodePro-Regular.otf.woff -------------------------------------------------------------------------------- /src/theme_polymath/assets/fonts/WOFF/TTF/SourceCodePro-Bold.ttf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/fonts/WOFF/TTF/SourceCodePro-Bold.ttf.woff -------------------------------------------------------------------------------- /src/theme_polymath/assets/fonts/WOFF/TTF/SourceCodePro-Regular.ttf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/fonts/WOFF/TTF/SourceCodePro-Regular.ttf.woff -------------------------------------------------------------------------------- /src/theme_polymath/assets/fonts/WOFF2/OTF/SourceCodePro-Bold.otf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/fonts/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 -------------------------------------------------------------------------------- /src/theme_polymath/assets/fonts/WOFF2/OTF/SourceCodePro-Regular.otf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/fonts/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 -------------------------------------------------------------------------------- /src/theme_polymath/assets/fonts/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/fonts/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 -------------------------------------------------------------------------------- /src/theme_polymath/assets/fonts/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/fonts/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 -------------------------------------------------------------------------------- /src/theme_polymath/assets/fonts/source-code-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/fonts/source-code-pro.css -------------------------------------------------------------------------------- /src/theme_polymath/assets/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/github.css -------------------------------------------------------------------------------- /src/theme_polymath/assets/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/site.js -------------------------------------------------------------------------------- /src/theme_polymath/assets/split.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/split.css -------------------------------------------------------------------------------- /src/theme_polymath/assets/split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/split.js -------------------------------------------------------------------------------- /src/theme_polymath/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/assets/style.css -------------------------------------------------------------------------------- /src/theme_polymath/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/documentation.yml -------------------------------------------------------------------------------- /src/theme_polymath/index._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/index._ -------------------------------------------------------------------------------- /src/theme_polymath/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/index.js -------------------------------------------------------------------------------- /src/theme_polymath/note._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/note._ -------------------------------------------------------------------------------- /src/theme_polymath/output/highlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/output/highlighter.js -------------------------------------------------------------------------------- /src/theme_polymath/output/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/output/html.js -------------------------------------------------------------------------------- /src/theme_polymath/output/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/output/json.js -------------------------------------------------------------------------------- /src/theme_polymath/output/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/output/markdown.js -------------------------------------------------------------------------------- /src/theme_polymath/output/markdown_ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/output/markdown_ast.js -------------------------------------------------------------------------------- /src/theme_polymath/output/util/format_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/output/util/format_type.js -------------------------------------------------------------------------------- /src/theme_polymath/output/util/formatters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/output/util/formatters.js -------------------------------------------------------------------------------- /src/theme_polymath/output/util/linker_stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/output/util/linker_stack.js -------------------------------------------------------------------------------- /src/theme_polymath/output/util/reroute_links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/output/util/reroute_links.js -------------------------------------------------------------------------------- /src/theme_polymath/paramProperty._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/paramProperty._ -------------------------------------------------------------------------------- /src/theme_polymath/section._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/section._ -------------------------------------------------------------------------------- /src/theme_polymath/section_list._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/section_list._ -------------------------------------------------------------------------------- /src/theme_polymath/walk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/theme_polymath/walk.js -------------------------------------------------------------------------------- /src/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/src/types.js -------------------------------------------------------------------------------- /test/Compliance_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/test/Compliance_test.js -------------------------------------------------------------------------------- /test/Customers_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/test/Customers_test.js -------------------------------------------------------------------------------- /test/PolyToken_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/test/PolyToken_test.js -------------------------------------------------------------------------------- /test/SecurityTokenRegistrar_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/test/SecurityTokenRegistrar_test.js -------------------------------------------------------------------------------- /test/SecurityToken_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/test/SecurityToken_test.js -------------------------------------------------------------------------------- /test/Template_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/test/Template_test.js -------------------------------------------------------------------------------- /test/util/fake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/test/util/fake.js -------------------------------------------------------------------------------- /test/util/getAccounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/test/util/getAccounts.js -------------------------------------------------------------------------------- /test/util/make_examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/test/util/make_examples.js -------------------------------------------------------------------------------- /test/util/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/test/util/time.js -------------------------------------------------------------------------------- /test/util/web3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/test/util/web3.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/truffle.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/webpack.config.js -------------------------------------------------------------------------------- /whitepaper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/whitepaper.pdf -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath.js-deprecated/HEAD/yarn.lock --------------------------------------------------------------------------------