Skip to content

Commit

Permalink
Rename status response field from 'capabilitiesData' to 'capabilities…
Browse files Browse the repository at this point in the history
…ResultsData'
  • Loading branch information
forshtat committed Sep 4, 2024
1 parent a97f3a2 commit d14ce17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EIPS/eip-5792.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ Returns the status of a call batch that was sent via `wallet_sendCalls`.
The identifier of the batch is the value returned from the `wallet_sendCalls` RPC.
Note that the `receipts` objects of this method's response is a strict subset of the object returned by `eth_getTransactionReceipt`.

The `capabilitiesData` object allows the wallets to attach a capability-specific metadata to the response.
The `capabilitiesResultsData` object allows the wallets to attach a capability-specific metadata to the response.

* The receipts in the `receipts` field MUST be in order they are included on-chain.
* The `receipts` field MUST contain receipts for all calls in a batch that were included on-chain, including reverted ones.
Expand Down Expand Up @@ -151,7 +151,7 @@ type GetCallsResult = {
gasUsed: `0x${string}`;
transactionHash: `0x${string}`;
}[];
capabilitiesData?: Record<string, any> | undefined;
capabilitiesResultsData?: Record<string, any> | undefined;
};
```

Expand Down

0 comments on commit d14ce17

Please sign in to comment.