├── .gitignore ├── .gitlab └── issue_templates │ ├── bug.md │ └── transaction-failure.md ├── LICENSE.md ├── README.md ├── contracts ├── Migrations.sol ├── MindsBoost.sol ├── MindsBoostStorage.sol ├── MindsToken.sol ├── MindsTokenSaleEvent.sol ├── MindsWire.sol ├── MindsWireStorage.sol ├── MindsWithdraw.sol └── Whitelist.sol ├── migrations ├── 1_initial_migration.js ├── 2_deploy_token.js ├── 3_deploy_tde.js ├── 4_deploy_storage.js ├── 5_deploy_wire.js ├── 6_deploy_boost_storage.js ├── 7_deploy_peer_boost.js └── 8_deploy_withdrawal.js ├── package.json ├── test ├── MindsBoost.js ├── MindsToken.js ├── MindsTokenSaleEvent.js ├── MindsWire.js ├── MindsWithdraw.js └── helpers │ ├── increaseTime.js │ └── padding.js ├── testserver.sh └── truffle.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /build 3 | !.gitlab 4 | -------------------------------------------------------------------------------- /.gitlab/issue_templates/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/.gitlab/issue_templates/bug.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/transaction-failure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/.gitlab/issue_templates/transaction-failure.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/MindsBoost.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/contracts/MindsBoost.sol -------------------------------------------------------------------------------- /contracts/MindsBoostStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/contracts/MindsBoostStorage.sol -------------------------------------------------------------------------------- /contracts/MindsToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/contracts/MindsToken.sol -------------------------------------------------------------------------------- /contracts/MindsTokenSaleEvent.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/contracts/MindsTokenSaleEvent.sol -------------------------------------------------------------------------------- /contracts/MindsWire.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/contracts/MindsWire.sol -------------------------------------------------------------------------------- /contracts/MindsWireStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/contracts/MindsWireStorage.sol -------------------------------------------------------------------------------- /contracts/MindsWithdraw.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/contracts/MindsWithdraw.sol -------------------------------------------------------------------------------- /contracts/Whitelist.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/contracts/Whitelist.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/migrations/2_deploy_token.js -------------------------------------------------------------------------------- /migrations/3_deploy_tde.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/migrations/3_deploy_tde.js -------------------------------------------------------------------------------- /migrations/4_deploy_storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/migrations/4_deploy_storage.js -------------------------------------------------------------------------------- /migrations/5_deploy_wire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/migrations/5_deploy_wire.js -------------------------------------------------------------------------------- /migrations/6_deploy_boost_storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/migrations/6_deploy_boost_storage.js -------------------------------------------------------------------------------- /migrations/7_deploy_peer_boost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/migrations/7_deploy_peer_boost.js -------------------------------------------------------------------------------- /migrations/8_deploy_withdrawal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/migrations/8_deploy_withdrawal.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/package.json -------------------------------------------------------------------------------- /test/MindsBoost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/test/MindsBoost.js -------------------------------------------------------------------------------- /test/MindsToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/test/MindsToken.js -------------------------------------------------------------------------------- /test/MindsTokenSaleEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/test/MindsTokenSaleEvent.js -------------------------------------------------------------------------------- /test/MindsWire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/test/MindsWire.js -------------------------------------------------------------------------------- /test/MindsWithdraw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/test/MindsWithdraw.js -------------------------------------------------------------------------------- /test/helpers/increaseTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/test/helpers/increaseTime.js -------------------------------------------------------------------------------- /test/helpers/padding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/test/helpers/padding.js -------------------------------------------------------------------------------- /testserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/testserver.sh -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minds/crypto/HEAD/truffle.js --------------------------------------------------------------------------------