├── .github └── CODEOWNERS ├── README.md ├── contracts ├── ERC20 │ ├── IERC20.sol │ └── SafeERC20.sol ├── Migrations.sol ├── Ownable │ ├── Context.sol │ └── Ownable.sol └── SeedifyFund │ ├── SeedifyFundBNB.sol │ ├── SeedifyFundBUSD.sol │ └── SeedifyFundBUSDWithMerkle.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── seedifyFundSingleFile.sol ├── test └── seedifyFundTest.js └── truffle-config.js /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | @mvp1983 @Bit0ps -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seedifyfund/Launchpad-smart-contract/HEAD/README.md -------------------------------------------------------------------------------- /contracts/ERC20/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seedifyfund/Launchpad-smart-contract/HEAD/contracts/ERC20/IERC20.sol -------------------------------------------------------------------------------- /contracts/ERC20/SafeERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seedifyfund/Launchpad-smart-contract/HEAD/contracts/ERC20/SafeERC20.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seedifyfund/Launchpad-smart-contract/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/Ownable/Context.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seedifyfund/Launchpad-smart-contract/HEAD/contracts/Ownable/Context.sol -------------------------------------------------------------------------------- /contracts/Ownable/Ownable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seedifyfund/Launchpad-smart-contract/HEAD/contracts/Ownable/Ownable.sol -------------------------------------------------------------------------------- /contracts/SeedifyFund/SeedifyFundBNB.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seedifyfund/Launchpad-smart-contract/HEAD/contracts/SeedifyFund/SeedifyFundBNB.sol -------------------------------------------------------------------------------- /contracts/SeedifyFund/SeedifyFundBUSD.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seedifyfund/Launchpad-smart-contract/HEAD/contracts/SeedifyFund/SeedifyFundBUSD.sol -------------------------------------------------------------------------------- /contracts/SeedifyFund/SeedifyFundBUSDWithMerkle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seedifyfund/Launchpad-smart-contract/HEAD/contracts/SeedifyFund/SeedifyFundBUSDWithMerkle.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seedifyfund/Launchpad-smart-contract/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seedifyfund/Launchpad-smart-contract/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /seedifyFundSingleFile.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seedifyfund/Launchpad-smart-contract/HEAD/seedifyFundSingleFile.sol -------------------------------------------------------------------------------- /test/seedifyFundTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seedifyfund/Launchpad-smart-contract/HEAD/test/seedifyFundTest.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seedifyfund/Launchpad-smart-contract/HEAD/truffle-config.js --------------------------------------------------------------------------------