├── .gitignore ├── .travis.yml ├── README.md ├── contracts ├── .DS_Store ├── Migrations.sol ├── Sale.sol └── Token.sol ├── migrations ├── .DS_Store └── 2_deploy_contracts.js ├── package.json ├── test └── sale_erc20.js └── truffle.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/ethereum-ico-contract/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/ethereum-ico-contract/HEAD/README.md -------------------------------------------------------------------------------- /contracts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/ethereum-ico-contract/HEAD/contracts/.DS_Store -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/ethereum-ico-contract/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/Sale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/ethereum-ico-contract/HEAD/contracts/Sale.sol -------------------------------------------------------------------------------- /contracts/Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/ethereum-ico-contract/HEAD/contracts/Token.sol -------------------------------------------------------------------------------- /migrations/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/ethereum-ico-contract/HEAD/migrations/.DS_Store -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/ethereum-ico-contract/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/ethereum-ico-contract/HEAD/package.json -------------------------------------------------------------------------------- /test/sale_erc20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/ethereum-ico-contract/HEAD/test/sale_erc20.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunterlong/ethereum-ico-contract/HEAD/truffle.js --------------------------------------------------------------------------------