-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
70d67a1
commit 47053bc
Showing
4 changed files
with
53 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
use alloy_sol_macro::sol; | ||
use stylus_sdk::{prelude::*, call::MethodError}; | ||
use stylus_sdk::{call::MethodError, prelude::*}; | ||
|
||
|
||
pub mod borrower; | ||
pub mod borrower; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
//! Common extensions to the ERC-20 standard. | ||
pub mod burnable; | ||
pub mod capped; | ||
pub mod flashmint; | ||
pub mod metadata; | ||
pub mod permit; | ||
pub mod flashmint; | ||
|
||
|
||
pub use burnable::IErc20Burnable; | ||
pub use capped::Capped; | ||
pub use flashmint::IERC3156FlashLender; | ||
pub use metadata::{Erc20Metadata, IErc20Metadata}; | ||
pub use permit::Erc20Permit; | ||
pub use flashmint::IERC3156FlashLender; |