├── .dapprc ├── .env.example ├── .prettierrc.cjs ├── .shellcheckrc ├── .vscode └── settings.json ├── README.md ├── dprint.json ├── foundry.toml ├── justfile ├── package.json ├── scripts ├── IAddressResolver.sol ├── common.sh ├── contract-size.sh ├── deploy-production.sh ├── deploy.sh ├── deploy_gen_network_files.sh ├── estimate-gas.sh ├── exctract-yul-irOptimized.sh ├── helper-config.sh ├── run-temp-testnet.sh ├── test-deploy.sh └── verify-deployment.sh └── src └── PhonyUser.sol /.dapprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/.dapprc -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/.env.example -------------------------------------------------------------------------------- /.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/.prettierrc.cjs -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/README.md -------------------------------------------------------------------------------- /dprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/dprint.json -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/foundry.toml -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/justfile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/package.json -------------------------------------------------------------------------------- /scripts/IAddressResolver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/scripts/IAddressResolver.sol -------------------------------------------------------------------------------- /scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/scripts/common.sh -------------------------------------------------------------------------------- /scripts/contract-size.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/scripts/contract-size.sh -------------------------------------------------------------------------------- /scripts/deploy-production.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/scripts/deploy-production.sh -------------------------------------------------------------------------------- /scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/scripts/deploy.sh -------------------------------------------------------------------------------- /scripts/deploy_gen_network_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/scripts/deploy_gen_network_files.sh -------------------------------------------------------------------------------- /scripts/estimate-gas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/scripts/estimate-gas.sh -------------------------------------------------------------------------------- /scripts/exctract-yul-irOptimized.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/scripts/exctract-yul-irOptimized.sh -------------------------------------------------------------------------------- /scripts/helper-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/scripts/helper-config.sh -------------------------------------------------------------------------------- /scripts/run-temp-testnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/scripts/run-temp-testnet.sh -------------------------------------------------------------------------------- /scripts/test-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/scripts/test-deploy.sh -------------------------------------------------------------------------------- /scripts/verify-deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/scripts/verify-deployment.sh -------------------------------------------------------------------------------- /src/PhonyUser.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sambacha/zen-foundry-template/HEAD/src/PhonyUser.sol --------------------------------------------------------------------------------