├── .eslintignore ├── .eslintrc ├── .gitignore ├── .hound.yml ├── .travis.yml ├── contracts ├── Migrations.sol ├── Trustcoin.sol └── deps │ └── ERC20TokenInterface.sol ├── docs └── audits │ └── TrustCoin audit.pdf ├── index.js ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── readme.md ├── test ├── approve.js ├── compareAndApprove.js ├── initialBalance.js ├── migrationInfo.js ├── transfer.js └── utils │ ├── consts.js │ └── utils.js ├── testrpc_command.sh ├── tools ├── build │ ├── run-testrpc-and-tests.sh │ └── run-tests.sh └── eslint │ └── google.eslintrc.json └── truffle.js /.eslintignore: -------------------------------------------------------------------------------- 1 | build/* 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/.hound.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/.travis.yml -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/Trustcoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/contracts/Trustcoin.sol -------------------------------------------------------------------------------- /contracts/deps/ERC20TokenInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/contracts/deps/ERC20TokenInterface.sol -------------------------------------------------------------------------------- /docs/audits/TrustCoin audit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/docs/audits/TrustCoin audit.pdf -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/index.js -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/readme.md -------------------------------------------------------------------------------- /test/approve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/test/approve.js -------------------------------------------------------------------------------- /test/compareAndApprove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/test/compareAndApprove.js -------------------------------------------------------------------------------- /test/initialBalance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/test/initialBalance.js -------------------------------------------------------------------------------- /test/migrationInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/test/migrationInfo.js -------------------------------------------------------------------------------- /test/transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/test/transfer.js -------------------------------------------------------------------------------- /test/utils/consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/test/utils/consts.js -------------------------------------------------------------------------------- /test/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/test/utils/utils.js -------------------------------------------------------------------------------- /testrpc_command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/testrpc_command.sh -------------------------------------------------------------------------------- /tools/build/run-testrpc-and-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/tools/build/run-testrpc-and-tests.sh -------------------------------------------------------------------------------- /tools/build/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/tools/build/run-tests.sh -------------------------------------------------------------------------------- /tools/eslint/google.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/tools/eslint/google.eslintrc.json -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeTrustPlatform/token-contracts/HEAD/truffle.js --------------------------------------------------------------------------------