├── .gitignore ├── LICENSE ├── README.md ├── contracts ├── TestErc20Token.sol ├── TestUSDT.sol └── TokenPreSale.sol ├── migrations ├── 1_token_pre_sale.js ├── 2_fake_usdt.js └── 3_test_erc20_token.js ├── package.json └── truffle-config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3D4NG3L/PresaleSmartContract/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3D4NG3L/PresaleSmartContract/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3D4NG3L/PresaleSmartContract/HEAD/README.md -------------------------------------------------------------------------------- /contracts/TestErc20Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3D4NG3L/PresaleSmartContract/HEAD/contracts/TestErc20Token.sol -------------------------------------------------------------------------------- /contracts/TestUSDT.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3D4NG3L/PresaleSmartContract/HEAD/contracts/TestUSDT.sol -------------------------------------------------------------------------------- /contracts/TokenPreSale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3D4NG3L/PresaleSmartContract/HEAD/contracts/TokenPreSale.sol -------------------------------------------------------------------------------- /migrations/1_token_pre_sale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3D4NG3L/PresaleSmartContract/HEAD/migrations/1_token_pre_sale.js -------------------------------------------------------------------------------- /migrations/2_fake_usdt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3D4NG3L/PresaleSmartContract/HEAD/migrations/2_fake_usdt.js -------------------------------------------------------------------------------- /migrations/3_test_erc20_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3D4NG3L/PresaleSmartContract/HEAD/migrations/3_test_erc20_token.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3D4NG3L/PresaleSmartContract/HEAD/package.json -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R3D4NG3L/PresaleSmartContract/HEAD/truffle-config.js --------------------------------------------------------------------------------