-
Notifications
You must be signed in to change notification settings - Fork 594
add eoa execution options type #7428
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
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
How to use the Graphite Merge QueueAdd either label to this PR to merge it via 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. |
WalkthroughA new Changes
Sequence Diagram(s)sequenceDiagram
participant Client
participant ServerWallet
Client->>ServerWallet: Send sign request (SignTransaction/SignMessage/SignTypedData) with executionOptions (can be EOA)
ServerWallet-->>Client: Process request using EoaExecutionOptions if provided
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
⏰ Context from checks skipped due to timeout of 90000ms (5)
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Merge activity
|
size-limit report 📦
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #7428 +/- ##
=======================================
Coverage 52.08% 52.08%
=======================================
Files 947 947
Lines 63636 63636
Branches 4216 4214 -2
=======================================
Hits 33146 33146
Misses 30384 30384
Partials 106 106
🚀 New features to boost your workflow:
|
PR-Codex overview
This PR introduces support for
EoaExecutionOptions
in theServerWalletOptions
and various transaction-related types, allowing for execution using externally owned accounts (EOA). This enhances the flexibility of transaction handling in the wallet.Detailed summary
EoaExecutionOptions
type with properties:type
,address
,chainId
, and optionalidempotencyKey
.ServerWalletOptions
to includeEoaExecutionOptions
.executionOptions
inWriteContractData
,SendTransactionData
,SignTransactionData
,SignMessageData
, andSignTypedDataData
to includeEoaExecutionOptions
.Summary by CodeRabbit