├── .soliumrc.json ├── contracts ├── CoinPokerICO.sol ├── CoinPokerToken.sol └── Migrations.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── test ├── ico.js ├── token.js └── utils.js ├── testrpc.txt └── truffle.js /.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinPokerOfficial/ico-smartcontracts/HEAD/.soliumrc.json -------------------------------------------------------------------------------- /contracts/CoinPokerICO.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinPokerOfficial/ico-smartcontracts/HEAD/contracts/CoinPokerICO.sol -------------------------------------------------------------------------------- /contracts/CoinPokerToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinPokerOfficial/ico-smartcontracts/HEAD/contracts/CoinPokerToken.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinPokerOfficial/ico-smartcontracts/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinPokerOfficial/ico-smartcontracts/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinPokerOfficial/ico-smartcontracts/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /test/ico.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinPokerOfficial/ico-smartcontracts/HEAD/test/ico.js -------------------------------------------------------------------------------- /test/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinPokerOfficial/ico-smartcontracts/HEAD/test/token.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinPokerOfficial/ico-smartcontracts/HEAD/test/utils.js -------------------------------------------------------------------------------- /testrpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinPokerOfficial/ico-smartcontracts/HEAD/testrpc.txt -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoinPokerOfficial/ico-smartcontracts/HEAD/truffle.js --------------------------------------------------------------------------------