├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── assets └── banner.png ├── contracts └── ExampleContract.sol ├── hardhat.config.ts ├── package.json ├── scripts ├── gasEstimation.ts └── helpers │ ├── oracle.ts │ ├── transactions.ts │ └── utils.ts ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scroll-tech/gas-estimation-example/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scroll-tech/gas-estimation-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scroll-tech/gas-estimation-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scroll-tech/gas-estimation-example/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scroll-tech/gas-estimation-example/HEAD/assets/banner.png -------------------------------------------------------------------------------- /contracts/ExampleContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scroll-tech/gas-estimation-example/HEAD/contracts/ExampleContract.sol -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scroll-tech/gas-estimation-example/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scroll-tech/gas-estimation-example/HEAD/package.json -------------------------------------------------------------------------------- /scripts/gasEstimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scroll-tech/gas-estimation-example/HEAD/scripts/gasEstimation.ts -------------------------------------------------------------------------------- /scripts/helpers/oracle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scroll-tech/gas-estimation-example/HEAD/scripts/helpers/oracle.ts -------------------------------------------------------------------------------- /scripts/helpers/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scroll-tech/gas-estimation-example/HEAD/scripts/helpers/transactions.ts -------------------------------------------------------------------------------- /scripts/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scroll-tech/gas-estimation-example/HEAD/scripts/helpers/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scroll-tech/gas-estimation-example/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scroll-tech/gas-estimation-example/HEAD/yarn.lock --------------------------------------------------------------------------------