Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Erc20flash mint #407

Open
wants to merge 22 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
ab91bbe
chore: Implemented ERC3156FlashLender and ERC3156FlashBorrower
Ifechukwudaniel Nov 13, 2024
7862012
chore: removed lender
Ifechukwudaniel Nov 14, 2024
a7c0160
chore: flashmint
Ifechukwudaniel Nov 14, 2024
70d67a1
Merge branch 'main' into erc20flashMint
Ifechukwudaniel Nov 14, 2024
47053bc
chore : cargo format
Ifechukwudaniel Nov 14, 2024
6ea75eb
Update contracts/src/token/erc20/extensions/flashmint.rs
Ifechukwudaniel Nov 14, 2024
53ee21a
Update contracts/src/token/erc20/extensions/flashmint.rs
Ifechukwudaniel Nov 14, 2024
3bd25cf
chore: added docs for IERC3156FlashBorrower
Ifechukwudaniel Nov 14, 2024
b9cce5d
chore: docs
Ifechukwudaniel Nov 14, 2024
03f6f38
Merge branch 'main' into erc20flashMint
Ifechukwudaniel Nov 15, 2024
6aa5b6d
Create erc20-flashloan.adoc
Ifechukwudaniel Nov 15, 2024
ebee8d5
Merge pull request #1 from Ifechukwudaniel/patch-1
Ifechukwudaniel Nov 15, 2024
55672f6
chore: removed flashlaon and smaller changes
Ifechukwudaniel Nov 16, 2024
626ae03
chore: cargo format
Ifechukwudaniel Nov 16, 2024
f8cdcf2
chore: abi and constructor
Ifechukwudaniel Nov 16, 2024
85e62b1
chore: flashloan example setup
Ifechukwudaniel Nov 16, 2024
5feeb90
chore: changed erc20FlashMint to erc20FlashMint
Ifechukwudaniel Nov 17, 2024
47aad90
chore: erc20flashmint example
Ifechukwudaniel Nov 17, 2024
99a8089
chore: mock, abi and initial e2e test
Ifechukwudaniel Nov 17, 2024
1b20ea6
chore: created Erc3156FlashBorrowerMock
Ifechukwudaniel Nov 18, 2024
4d08485
chore: minor changes
Ifechukwudaniel Nov 18, 2024
c3271bf
chore: cargo fmt fix
Ifechukwudaniel Nov 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ members = [
"lib/e2e-proc",
"examples/erc20",
"examples/erc20-permit",
"examples/erc20-flashmint",
"examples/erc721",
"examples/erc721-consecutive",
"examples/erc721-metadata",
Expand All @@ -32,6 +33,7 @@ default-members = [
"lib/e2e-proc",
"examples/erc20",
"examples/erc20-permit",
"examples/erc20-flashmint",
"examples/erc721",
"examples/erc721-consecutive",
"examples/erc721-metadata",
Expand Down
16 changes: 0 additions & 16 deletions contracts/src/flashloan/borrower.rs

This file was deleted.

5 changes: 0 additions & 5 deletions contracts/src/flashloan/mod.rs

This file was deleted.

1 change: 0 additions & 1 deletion contracts/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,3 @@ extern crate alloc;
pub mod access;
pub mod token;
pub mod utils;
pub mod flashloan;
Loading