-
Notifications
You must be signed in to change notification settings - Fork 353
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add eth_account main logic * feat: add tests * fix: workflow * feat: change EthPublicKey to Secp256k1Point * feat: add more tests * feat: add entry to CHANGELOG * feat: add tests for preset * docs: add API Reference entries * Update src/account/eth_account/eth_account.cairo Co-authored-by: Andrew Fleming <[email protected]> * feat: apply review updates * refactor: test * feat: apply review updates * feat: update error messages * feat: apply review updates * Update docs/modules/ROOT/pages/api/account.adoc Co-authored-by: Martín Triay <[email protected]> * feat: add tests for upgrade * feat: add tests for signature * refactor: drop X.Y.Z in favor of last released version * feat: updated class hashes * fix: casm target * fix: versions * refactor: account directory * fix: comments * fix: class hashes --------- Co-authored-by: Andrew Fleming <[email protected]> Co-authored-by: Martín Triay <[email protected]>
- Loading branch information
1 parent
1448616
commit 6d26b84
Showing
30 changed files
with
2,844 additions
and
95 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
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,7 +1,9 @@ | ||
mod account; | ||
mod dual_account; | ||
mod dual_eth_account; | ||
mod eth_account; | ||
mod interface; | ||
mod utils; | ||
|
||
use account::AccountComponent; | ||
use interface::AccountABIDispatcher; | ||
use interface::AccountABIDispatcherTrait; | ||
use eth_account::EthAccountComponent; |
Oops, something went wrong.