├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── checks.yml │ ├── codeql.yml │ └── test-contracts.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.yml ├── .solcover.js ├── .solhint.json ├── .solhintignore ├── FUNDING.json ├── LICENSE ├── README.md ├── SECURITY.md ├── abis └── contracts │ ├── Create2Deployer.sol │ └── Create2Deployer.json │ └── Create2DeployerDeprecated.sol │ └── Create2DeployerDeprecated.json ├── assets └── img │ └── distribution.jpg ├── contracts ├── Create2Deployer.sol ├── Create2DeployerDeprecated.sol └── mocks │ └── ERC20Mock.sol ├── deploy └── deploy-zksync.ts ├── eslint.config.js ├── flattened ├── Create2Deployer_Flat_OZ_4_4_1.sol ├── Create2Deployer_Flat_OZ_4_8_0.sol └── Create2Deployer_Flat_OZ_4_9_3.sol ├── hardhat.config.ts ├── package.json ├── pnpm-lock.yaml ├── renovate.json ├── scripts └── deploy.ts ├── slither.config.json ├── test └── Create2Deployer.test.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/test-contracts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/.github/workflows/test-contracts.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /.solcover.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | skipFiles: ["mocks/"], 3 | }; 4 | -------------------------------------------------------------------------------- /.solhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/.solhint.json -------------------------------------------------------------------------------- /.solhintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/.solhintignore -------------------------------------------------------------------------------- /FUNDING.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/FUNDING.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/SECURITY.md -------------------------------------------------------------------------------- /abis/contracts/Create2Deployer.sol/Create2Deployer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/abis/contracts/Create2Deployer.sol/Create2Deployer.json -------------------------------------------------------------------------------- /abis/contracts/Create2DeployerDeprecated.sol/Create2DeployerDeprecated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/abis/contracts/Create2DeployerDeprecated.sol/Create2DeployerDeprecated.json -------------------------------------------------------------------------------- /assets/img/distribution.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/assets/img/distribution.jpg -------------------------------------------------------------------------------- /contracts/Create2Deployer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/contracts/Create2Deployer.sol -------------------------------------------------------------------------------- /contracts/Create2DeployerDeprecated.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/contracts/Create2DeployerDeprecated.sol -------------------------------------------------------------------------------- /contracts/mocks/ERC20Mock.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/contracts/mocks/ERC20Mock.sol -------------------------------------------------------------------------------- /deploy/deploy-zksync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/deploy/deploy-zksync.ts -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/eslint.config.js -------------------------------------------------------------------------------- /flattened/Create2Deployer_Flat_OZ_4_4_1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/flattened/Create2Deployer_Flat_OZ_4_4_1.sol -------------------------------------------------------------------------------- /flattened/Create2Deployer_Flat_OZ_4_8_0.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/flattened/Create2Deployer_Flat_OZ_4_8_0.sol -------------------------------------------------------------------------------- /flattened/Create2Deployer_Flat_OZ_4_9_3.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/flattened/Create2Deployer_Flat_OZ_4_9_3.sol -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/scripts/deploy.ts -------------------------------------------------------------------------------- /slither.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/slither.config.json -------------------------------------------------------------------------------- /test/Create2Deployer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/test/Create2Deployer.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/create2deployer/HEAD/tsconfig.json --------------------------------------------------------------------------------