├── .dockerignore ├── .env.example ├── .gitattributes ├── .gitignore ├── .gitmodules ├── Dockerfile ├── Makefile ├── README.md ├── hardhat.config.ts ├── package.json ├── scripts ├── benchmark-all.sh ├── benchmark-blocknative.sh ├── benchmark-dapptools.sh ├── benchmark-foundry.sh ├── benchmark-ganache.sh ├── benchmark-hardhat.sh ├── benchmark-tenderly.sh ├── convex.blocknative.ts ├── convex.ganache.ts ├── convex.hardhat.ts └── convex.tenderly.ts ├── src └── Convex.t.sol ├── testDockerfile.sh └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/README.md -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/package.json -------------------------------------------------------------------------------- /scripts/benchmark-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/scripts/benchmark-all.sh -------------------------------------------------------------------------------- /scripts/benchmark-blocknative.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/scripts/benchmark-blocknative.sh -------------------------------------------------------------------------------- /scripts/benchmark-dapptools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/scripts/benchmark-dapptools.sh -------------------------------------------------------------------------------- /scripts/benchmark-foundry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/scripts/benchmark-foundry.sh -------------------------------------------------------------------------------- /scripts/benchmark-ganache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/scripts/benchmark-ganache.sh -------------------------------------------------------------------------------- /scripts/benchmark-hardhat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/scripts/benchmark-hardhat.sh -------------------------------------------------------------------------------- /scripts/benchmark-tenderly.sh: -------------------------------------------------------------------------------- 1 | . ./.env 2 | 3 | time yarn ts-node ./scripts/convex.tenderly.ts 4 | -------------------------------------------------------------------------------- /scripts/convex.blocknative.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/scripts/convex.blocknative.ts -------------------------------------------------------------------------------- /scripts/convex.ganache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/scripts/convex.ganache.ts -------------------------------------------------------------------------------- /scripts/convex.hardhat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/scripts/convex.hardhat.ts -------------------------------------------------------------------------------- /scripts/convex.tenderly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/scripts/convex.tenderly.ts -------------------------------------------------------------------------------- /src/Convex.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/src/Convex.t.sol -------------------------------------------------------------------------------- /testDockerfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/testDockerfile.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/convex-shutdown-simulation/HEAD/yarn.lock --------------------------------------------------------------------------------