Skip to content

Commit 4abc362

Browse files
committed
update atomic capability status
1 parent 61425cf commit 4abc362

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

wallet/how-to/send-transactions/send-batch-transactions.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,25 @@ This method returns whether the `atomic` capability is supported for each chain
4141
{
4242
"0x2105": {
4343
"atomic": {
44-
"supported": true
44+
"status": "supported"
4545
}
4646
},
4747
"0x14A34": {
4848
"atomic": {
49-
"supported": false
49+
"status": "unsupported"
5050
}
5151
}
5252
}
5353
```
5454

55+
The `atomic` capability can have a `status` of `supported`, `ready`, or `unsupported`:
56+
57+
- `supported` means the wallet supports atomic batch transactions.
58+
- `ready` means the wallet can upgrade to `supported` pending user approval (for example, via
59+
[EIP-7702](https://eips.ethereum.org/EIPS/eip-7702)).
60+
- `unsupported` means the wallet does not support atomic batch transactions, and will not
61+
suggest an upgrade to the user.
62+
5563
:::note
5664
If atomic batch is not supported, fall back to [`eth_sendTransaction`](index.md) instead of `wallet_sendCalls`,
5765
and [`eth_getTransactionReceipt`](/wallet/reference/json-rpc-methods/eth_gettransactionreceipt)

0 commit comments

Comments
 (0)