File tree Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -159,18 +159,30 @@ The method takes an array containing one string element, a bundle ID returned by
159
159
160
160
##### ` wallet_getBundleStatus ` Example Parameters
161
161
162
+ As with the return value of ` wallet_sendFunctionCallBundle ` , the bundle identifier may be any string of max length ` 66 ` .
163
+
164
+ It may be the hash of the call bundle:
162
165
``` json
163
- [
164
- " 0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331"
165
- ]
166
+ [" 0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331" ]
167
+ ```
168
+
169
+ It may contain a numeric identifier as a hex string:
170
+
171
+ ``` json
172
+ [" 0x01" ]
173
+ ```
174
+
175
+ It may be a base64 encoded string:
176
+
177
+ ``` json
178
+ [" aGVsbG8gd29ybGQ=" ]
166
179
```
167
180
168
181
#### ` wallet_getBundleStatus ` Return value
169
182
170
183
Returns an object describing the status of each call in the bundle. Each call has its own status in the response,
171
184
even if all the calls were submitted as part of a single transaction.
172
185
173
- - ` id ` : ` DATA ` - The identifier of the transaction returned by ` wallet_sendFunctionCallBundle `
174
186
- ` calls ` : ` ARRAY ` - An array of objects containing the status of each call from the bundle
175
187
- ` status ` : ` "PENDING" | "CONFIRMED" ` - Either ` "PENDING" ` indicating the call is not yet included on-chain,
176
188
or ` "CONFIRMED" ` indicating the call was included in a block
@@ -188,7 +200,6 @@ even if all the calls were submitted as part of a single transaction.
188
200
189
201
``` json
190
202
{
191
- "id" : " 0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331" ,
192
203
"calls" : [
193
204
{
194
205
"status" : " CONFIRMED" ,
You can’t perform that action at this time.
0 commit comments