├── .gitattributes ├── LICENSE.md ├── README.md ├── contracts ├── IICO.sol ├── LevelWhitelistedIICO.sol └── Migrations.sol ├── migrations └── 1_initial_migration.js ├── owasp.png ├── test-stress-finalize └── StressFinalize.js ├── test ├── IICO.js └── LevelWhitelistedIICO.js ├── truffle-config.js └── truffle.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleros/openiico-contract/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleros/openiico-contract/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleros/openiico-contract/HEAD/README.md -------------------------------------------------------------------------------- /contracts/IICO.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleros/openiico-contract/HEAD/contracts/IICO.sol -------------------------------------------------------------------------------- /contracts/LevelWhitelistedIICO.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleros/openiico-contract/HEAD/contracts/LevelWhitelistedIICO.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleros/openiico-contract/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleros/openiico-contract/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /owasp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleros/openiico-contract/HEAD/owasp.png -------------------------------------------------------------------------------- /test-stress-finalize/StressFinalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleros/openiico-contract/HEAD/test-stress-finalize/StressFinalize.js -------------------------------------------------------------------------------- /test/IICO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleros/openiico-contract/HEAD/test/IICO.js -------------------------------------------------------------------------------- /test/LevelWhitelistedIICO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleros/openiico-contract/HEAD/test/LevelWhitelistedIICO.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleros/openiico-contract/HEAD/truffle-config.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kleros/openiico-contract/HEAD/truffle.js --------------------------------------------------------------------------------