├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── contracts └── WasteGas.sol ├── package.json ├── src └── index.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- 1 | ETH_RPC_URL= 2 | PRIVATE_KEY= -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | .env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t4sk/hello-flashbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t4sk/hello-flashbot/HEAD/README.md -------------------------------------------------------------------------------- /contracts/WasteGas.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t4sk/hello-flashbot/HEAD/contracts/WasteGas.sol -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t4sk/hello-flashbot/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t4sk/hello-flashbot/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t4sk/hello-flashbot/HEAD/tsconfig.json --------------------------------------------------------------------------------