Minimal Multicall3 Flashloan Module.
Flashloan-rs is published to crates.io as flashloan-rs.
To use the crate in a Rust project, run the cargo add command like so: cargo add flashloan-rs
.
Or, add the following to your Cargo.toml:
toml
[dependencies]
flashloan-rs = "0.1.0"
Flashloan-rs is built to be extremely simple to use.
rust
// TODO
ml
.
├─ contracts
│ ├─ interfaces
│ │ ├─ IERC20.sol — ERC20 interface
│ │ ├─ IERC3156FlashBorrower.sol — Flashloan borrower interface
| | └─ IERC3156FlashLender.sol — Flashloan lender interface
│ ├─ FlashBorrower.huff — A [huff](https://github.com/huff-language) Flashloan Receiver Contract Implementation
│ └─ FlashBorrower.sol — An Extensible Flashloan Receiver Contract
├─ examples
│ ├─ custom_borrower.rs — Flashloan-rs usage with a custom borrower contract
│ └─ pure_arb.rs — Executing a pure arbitrage with flashloan-rs
├─ lib — Foundry Libraries
├─ src
│ ├─ builder.rs — The FlashloanBuilder
│ ├─ errors.rs — Custom errors for flashloan-rs
│ └─ lib.rs — Module Exports
├─ foundry.toml — Foundry Config
└─ Cargo.toml — The flashloan-rs Cargo Manifest
A few very notable repositories that were used as reference: