├── .github └── workflows │ └── test.yml ├── .gitignore ├── .mocharc.json ├── README.md ├── audits ├── .gitkeep ├── Audit#1.md ├── Audit#2.md └── Audit#3.pdf ├── contracts ├── DePayLaunchpadV1.sol └── test │ └── TestToken.sol ├── flatten ├── DePayLaunchpadV1.sol └── TestToken.sol ├── hardhat.config.ts ├── package.json ├── test ├── DePayLaunchpadV1.spec.ts └── helpers │ ├── deploy │ ├── launchpad.ts │ └── token.ts │ ├── impersonate.ts │ └── now.ts ├── tsconfig.json ├── waffle.json └── yarn.lock /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/.mocharc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/README.md -------------------------------------------------------------------------------- /audits/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /audits/Audit#1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/audits/Audit#1.md -------------------------------------------------------------------------------- /audits/Audit#2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/audits/Audit#2.md -------------------------------------------------------------------------------- /audits/Audit#3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/audits/Audit#3.pdf -------------------------------------------------------------------------------- /contracts/DePayLaunchpadV1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/contracts/DePayLaunchpadV1.sol -------------------------------------------------------------------------------- /contracts/test/TestToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/contracts/test/TestToken.sol -------------------------------------------------------------------------------- /flatten/DePayLaunchpadV1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/flatten/DePayLaunchpadV1.sol -------------------------------------------------------------------------------- /flatten/TestToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/flatten/TestToken.sol -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/package.json -------------------------------------------------------------------------------- /test/DePayLaunchpadV1.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/test/DePayLaunchpadV1.spec.ts -------------------------------------------------------------------------------- /test/helpers/deploy/launchpad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/test/helpers/deploy/launchpad.ts -------------------------------------------------------------------------------- /test/helpers/deploy/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/test/helpers/deploy/token.ts -------------------------------------------------------------------------------- /test/helpers/impersonate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/test/helpers/impersonate.ts -------------------------------------------------------------------------------- /test/helpers/now.ts: -------------------------------------------------------------------------------- 1 | export default () => Math.round(new Date().getTime() / 1000) 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/tsconfig.json -------------------------------------------------------------------------------- /waffle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/waffle.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DePayFi/depay-evm-launchpad/HEAD/yarn.lock --------------------------------------------------------------------------------