File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
wallet/how-to/send-transactions Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff 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
5664If atomic batch is not supported, fall back to [ ` eth_sendTransaction ` ] ( index.md ) instead of ` wallet_sendCalls ` ,
5765and [ ` eth_getTransactionReceipt ` ] ( /wallet/reference/json-rpc-methods/eth_gettransactionreceipt )
You can’t perform that action at this time.
0 commit comments