├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── .solhint.json ├── .solhintignore ├── README.md ├── contracts └── FlashLoan.sol ├── hardhat.config.ts ├── package.json ├── scripts └── flash-loan.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- 1 | ALCHEMY_URL=https://arb-mainnet.g.alchemy.com/v2/ 2 | BLOCK_NUMBER_PIN=9984700 3 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | artifacts 3 | cache 4 | coverage 5 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akornato/flash-loan/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akornato/flash-loan/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | hardhat.config.ts 2 | scripts 3 | test 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | artifacts 3 | cache 4 | coverage* 5 | gasReporterOutput.json 6 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.solhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akornato/flash-loan/HEAD/.solhint.json -------------------------------------------------------------------------------- /.solhintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akornato/flash-loan/HEAD/README.md -------------------------------------------------------------------------------- /contracts/FlashLoan.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akornato/flash-loan/HEAD/contracts/FlashLoan.sol -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akornato/flash-loan/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akornato/flash-loan/HEAD/package.json -------------------------------------------------------------------------------- /scripts/flash-loan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akornato/flash-loan/HEAD/scripts/flash-loan.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akornato/flash-loan/HEAD/tsconfig.json --------------------------------------------------------------------------------