-
Notifications
You must be signed in to change notification settings - Fork 158
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
feat: add entity id and nonce reader #1487
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
How to use the Graphite Merge QueueAdd the label graphite-merge-queue to this PR to add it to the merge queue. You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. |
0b6d062
to
f3c36d4
Compare
409121c
to
5ceb282
Compare
also -> rename |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great! Left a suggestion in the tests.
account-kit/smart-contracts/src/ma-v2/actions/deferralActions.ts
Outdated
Show resolved
Hide resolved
16fe1c4
to
d7f99b8
Compare
[feat, large] added a utility to get the smallest entity id for a modular account using a utility contract. this is done via an eth_call deployment to reduce the number of round trips to obtaining both values. solidity code is here
[feat, small] added a helper function to build the full MA v2 nonce given the variables - the u152 nonceKey, the entity id, and the global validation/deferred actions flag
[chore, small] added a
salt
variable to the test file. In our current test file, it is not obvious but tests have a dependency on each other in terms of certain state. A good workaround is to set a different accountsalt
each test, so we regain test independencePR-Codex overview
This PR introduces a new
entityIdAndNonceReader
with its ABI and bytecode, enhances nonce handling inDeferralActions
, and adds a method to retrieve entity IDs and nonces. It also updates tests to validate these changes.Detailed summary
entityIdAndNonceReaderAbi
andentityIdAndNonceReaderBytecode
inentityIdAndNonceReader.ts
.BuildNonceParams
type andbuildFullNonceKey
function inutils.ts
.DeferralActions
withgetEntityIdAndNonce
method.createDeferredActionTypedDataObject
.client.test.ts
to validate entity ID and nonce selection.