├── .babelrc ├── .eslintignore ├── .gitignore ├── .soliumignore ├── .soliumrc.json ├── .travis.yml ├── LICENSE ├── Polymath.png ├── README.md ├── audits ├── solidified audit report - polymath token.pdf └── zeppelin solutions audit report.md ├── contracts ├── Migrations.sol ├── Ownable.sol ├── PolyDistribution.sol ├── PolyToken.sol ├── SafeMath.sol └── interfaces │ └── IERC20.sol ├── flat ├── Migrations.sol ├── Ownable.sol ├── PolyDistribution.sol ├── PolyToken.sol └── SafeMath.sol ├── migrations └── 1_deploy_contracts.js ├── package.json ├── scripts ├── coverage.sh └── test.sh ├── test ├── TestPolyDistribution.js └── TestPolyToken.js └── truffle.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /migrations/* 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/.gitignore -------------------------------------------------------------------------------- /.soliumignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | -------------------------------------------------------------------------------- /.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/.soliumrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/LICENSE -------------------------------------------------------------------------------- /Polymath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/Polymath.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/README.md -------------------------------------------------------------------------------- /audits/solidified audit report - polymath token.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/audits/solidified audit report - polymath token.pdf -------------------------------------------------------------------------------- /audits/zeppelin solutions audit report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/audits/zeppelin solutions audit report.md -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/Ownable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/contracts/Ownable.sol -------------------------------------------------------------------------------- /contracts/PolyDistribution.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/contracts/PolyDistribution.sol -------------------------------------------------------------------------------- /contracts/PolyToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/contracts/PolyToken.sol -------------------------------------------------------------------------------- /contracts/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/contracts/SafeMath.sol -------------------------------------------------------------------------------- /contracts/interfaces/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/contracts/interfaces/IERC20.sol -------------------------------------------------------------------------------- /flat/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/flat/Migrations.sol -------------------------------------------------------------------------------- /flat/Ownable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/flat/Ownable.sol -------------------------------------------------------------------------------- /flat/PolyDistribution.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/flat/PolyDistribution.sol -------------------------------------------------------------------------------- /flat/PolyToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/flat/PolyToken.sol -------------------------------------------------------------------------------- /flat/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/flat/SafeMath.sol -------------------------------------------------------------------------------- /migrations/1_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/migrations/1_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/package.json -------------------------------------------------------------------------------- /scripts/coverage.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | SOLIDITY_COVERAGE=true scripts/test.sh 4 | -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /test/TestPolyDistribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/test/TestPolyDistribution.js -------------------------------------------------------------------------------- /test/TestPolyToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/test/TestPolyToken.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PolymathNetwork/polymath-token/HEAD/truffle.js --------------------------------------------------------------------------------