-
Notifications
You must be signed in to change notification settings - Fork 358
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add ERC20Permit component * Add ERC20Permit preset * Add ERC20Pemit mock and update visibility modifiers * Add tests for ERC20Permit component * Add tests for ERC20Permit preset * Run linter * Remove ERC20Permit preset * Add ERC20Permit as a trait of ERC20Component * Remove ERC20Permit component, restructure files * Update tests * Fix test error messages * Make slight changes to functions doc * Address review issues * Update changelog * Restructure files * Support fixes in tests * Fix changelog * Change signature type to Span * Support sig changes in tests * Update in-code doc * Refactor tests * Add ERC20Mixin interface, remove ERC20PermitABI interface * Update doc * Remove unnecessary constant * Make StructHashStarknetDomainImpl non-public back
- Loading branch information
Showing
14 changed files
with
802 additions
and
48 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
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,6 +1,7 @@ | ||
pub mod erc20; | ||
pub mod extensions; | ||
pub mod interface; | ||
pub mod snip12_utils; | ||
|
||
pub use erc20::{ERC20Component, ERC20HooksEmptyImpl}; | ||
pub use interface::{ERC20ABIDispatcher, ERC20ABIDispatcherTrait}; |
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
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
pub mod permit; | ||
pub mod votes; |
Oops, something went wrong.