@bloxchain/sdk 1.0.0-alpha → 1.0.0-alpha.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. package/README.md +48 -10
  2. package/abi/{ControlBlox.abi.json → AccountBlox.abi.json} +699 -2974
  3. package/abi/BareBlox.abi.json +127 -90
  4. package/abi/BaseStateMachine.abi.json +127 -90
  5. package/abi/EngineBlox.abi.json +11 -31
  6. package/abi/GuardController.abi.json +217 -895
  7. package/abi/GuardControllerDefinitions.abi.json +380 -0
  8. package/abi/IDefinition.abi.json +19 -0
  9. package/abi/RoleBlox.abi.json +818 -2404
  10. package/abi/RuntimeRBAC.abi.json +122 -328
  11. package/abi/RuntimeRBACDefinitions.abi.json +243 -0
  12. package/abi/SecureBlox.abi.json +620 -1952
  13. package/abi/SecureOwnable.abi.json +469 -1801
  14. package/abi/SecureOwnableDefinitions.abi.json +57 -0
  15. package/abi/SimpleRWA20.abi.json +486 -1999
  16. package/abi/SimpleRWA20Definitions.abi.json +19 -0
  17. package/abi/SimpleVault.abi.json +884 -2685
  18. package/abi/SimpleVaultDefinitions.abi.json +19 -0
  19. package/dist/abi/AccountBlox.abi.json +3935 -0
  20. package/dist/abi/BareBlox.abi.json +1378 -0
  21. package/dist/abi/BaseStateMachine.abi.json +1259 -1222
  22. package/dist/abi/EngineBlox.abi.json +852 -0
  23. package/dist/abi/GuardController.abi.json +2232 -2910
  24. package/dist/abi/GuardControllerDefinitions.abi.json +380 -0
  25. package/dist/abi/IDefinition.abi.json +110 -91
  26. package/dist/abi/RoleBlox.abi.json +2983 -0
  27. package/dist/abi/RuntimeRBAC.abi.json +1540 -1746
  28. package/dist/abi/RuntimeRBACDefinitions.abi.json +376 -0
  29. package/dist/abi/SecureBlox.abi.json +2753 -0
  30. package/dist/abi/SecureOwnable.abi.json +2583 -3915
  31. package/dist/abi/SecureOwnableDefinitions.abi.json +411 -0
  32. package/dist/abi/SimpleRWA20.abi.json +4032 -0
  33. package/dist/abi/SimpleRWA20Definitions.abi.json +191 -0
  34. package/dist/abi/SimpleVault.abi.json +3407 -0
  35. package/dist/abi/SimpleVaultDefinitions.abi.json +269 -0
  36. package/dist/abi.d.ts +11 -0
  37. package/dist/abi.d.ts.map +1 -0
  38. package/dist/abi.js +10 -0
  39. package/dist/abi.js.map +1 -0
  40. package/dist/contracts/BaseStateMachine.d.ts +9 -0
  41. package/dist/contracts/BaseStateMachine.d.ts.map +1 -1
  42. package/dist/contracts/BaseStateMachine.js +12 -0
  43. package/dist/contracts/BaseStateMachine.js.map +1 -1
  44. package/dist/contracts/GuardController.d.ts +4 -4
  45. package/dist/contracts/GuardController.d.ts.map +1 -1
  46. package/dist/contracts/GuardController.js +8 -7
  47. package/dist/contracts/GuardController.js.map +1 -1
  48. package/dist/contracts/RuntimeRBAC.d.ts +4 -20
  49. package/dist/contracts/RuntimeRBAC.d.ts.map +1 -1
  50. package/dist/contracts/RuntimeRBAC.js +5 -12
  51. package/dist/contracts/RuntimeRBAC.js.map +1 -1
  52. package/dist/contracts/SecureOwnable.d.ts +3 -3
  53. package/dist/contracts/SecureOwnable.d.ts.map +1 -1
  54. package/dist/contracts/SecureOwnable.js +7 -8
  55. package/dist/contracts/SecureOwnable.js.map +1 -1
  56. package/dist/contracts/core/BaseStateMachine.d.ts +98 -0
  57. package/dist/contracts/core/BaseStateMachine.d.ts.map +1 -0
  58. package/dist/contracts/core/BaseStateMachine.js +271 -0
  59. package/dist/contracts/core/BaseStateMachine.js.map +1 -0
  60. package/dist/contracts/core/GuardController.d.ts +120 -0
  61. package/dist/contracts/core/GuardController.d.ts.map +1 -0
  62. package/dist/contracts/core/GuardController.js +150 -0
  63. package/dist/contracts/core/GuardController.js.map +1 -0
  64. package/dist/contracts/core/RuntimeRBAC.d.ts +40 -0
  65. package/dist/contracts/core/RuntimeRBAC.d.ts.map +1 -0
  66. package/dist/contracts/core/RuntimeRBAC.js +50 -0
  67. package/dist/contracts/core/RuntimeRBAC.js.map +1 -0
  68. package/dist/contracts/core/SecureOwnable.d.ts +41 -0
  69. package/dist/contracts/core/SecureOwnable.d.ts.map +1 -0
  70. package/dist/contracts/core/SecureOwnable.js +81 -0
  71. package/dist/contracts/core/SecureOwnable.js.map +1 -0
  72. package/dist/index.d.ts +6 -4
  73. package/dist/index.d.ts.map +1 -1
  74. package/dist/index.js +5 -4
  75. package/dist/index.js.map +1 -1
  76. package/dist/interfaces/base.state.machine.index.d.ts +3 -0
  77. package/dist/interfaces/base.state.machine.index.d.ts.map +1 -1
  78. package/dist/interfaces/core.access.index.d.ts +3 -14
  79. package/dist/interfaces/core.access.index.d.ts.map +1 -1
  80. package/dist/interfaces/core.execution.index.d.ts +2 -2
  81. package/dist/interfaces/core.execution.index.d.ts.map +1 -1
  82. package/dist/interfaces/core.security.index.d.ts +1 -1
  83. package/dist/interfaces/core.security.index.d.ts.map +1 -1
  84. package/dist/lib/EngineBlox.d.ts +0 -9
  85. package/dist/lib/EngineBlox.d.ts.map +1 -1
  86. package/dist/lib/EngineBlox.js +0 -9
  87. package/dist/lib/EngineBlox.js.map +1 -1
  88. package/dist/lib/definitions/GuardControllerDefinitions.d.ts +43 -0
  89. package/dist/lib/definitions/GuardControllerDefinitions.d.ts.map +1 -0
  90. package/dist/lib/definitions/GuardControllerDefinitions.js +69 -0
  91. package/dist/lib/definitions/GuardControllerDefinitions.js.map +1 -0
  92. package/dist/lib/definitions/RuntimeRBACDefinitions.d.ts +59 -0
  93. package/dist/lib/definitions/RuntimeRBACDefinitions.d.ts.map +1 -0
  94. package/dist/lib/definitions/RuntimeRBACDefinitions.js +92 -0
  95. package/dist/lib/definitions/RuntimeRBACDefinitions.js.map +1 -0
  96. package/dist/lib/definitions/SecureOwnableDefinitions.d.ts +17 -0
  97. package/dist/lib/definitions/SecureOwnableDefinitions.d.ts.map +1 -0
  98. package/dist/lib/definitions/SecureOwnableDefinitions.js +21 -0
  99. package/dist/lib/definitions/SecureOwnableDefinitions.js.map +1 -0
  100. package/dist/lib/definitions/index.d.ts +9 -0
  101. package/dist/lib/definitions/index.d.ts.map +1 -0
  102. package/dist/lib/definitions/index.js +8 -0
  103. package/dist/lib/definitions/index.js.map +1 -0
  104. package/dist/types/base.state.machine.index.d.ts +0 -1
  105. package/dist/types/base.state.machine.index.d.ts.map +1 -1
  106. package/dist/types/base.state.machine.index.js +1 -2
  107. package/dist/types/base.state.machine.index.js.map +1 -1
  108. package/dist/types/core.execution.index.d.ts +1 -1
  109. package/dist/types/core.execution.index.js +1 -1
  110. package/dist/types/core.security.index.d.ts.map +1 -1
  111. package/dist/types/core.security.index.js +2 -2
  112. package/dist/types/core.security.index.js.map +1 -1
  113. package/dist/utils/contract-errors.d.ts +15 -2
  114. package/dist/utils/contract-errors.d.ts.map +1 -1
  115. package/dist/utils/contract-errors.js +18 -4
  116. package/dist/utils/contract-errors.js.map +1 -1
  117. package/dist/utils/interface-ids.js +1 -1
  118. package/dist/utils/interface-ids.js.map +1 -1
  119. package/package.json +75 -65
@@ -0,0 +1,3407 @@
1
+ [
2
+ {
3
+ "inputs": [
4
+ {
5
+ "internalType": "uint256",
6
+ "name": "array1Length",
7
+ "type": "uint256"
8
+ },
9
+ {
10
+ "internalType": "uint256",
11
+ "name": "array2Length",
12
+ "type": "uint256"
13
+ }
14
+ ],
15
+ "name": "ArrayLengthMismatch",
16
+ "type": "error"
17
+ },
18
+ {
19
+ "inputs": [
20
+ {
21
+ "internalType": "bytes32",
22
+ "name": "resourceId",
23
+ "type": "bytes32"
24
+ }
25
+ ],
26
+ "name": "CannotModifyProtected",
27
+ "type": "error"
28
+ },
29
+ {
30
+ "inputs": [
31
+ {
32
+ "internalType": "address",
33
+ "name": "provided",
34
+ "type": "address"
35
+ }
36
+ ],
37
+ "name": "InvalidAddress",
38
+ "type": "error"
39
+ },
40
+ {
41
+ "inputs": [],
42
+ "name": "InvalidInitialization",
43
+ "type": "error"
44
+ },
45
+ {
46
+ "inputs": [
47
+ {
48
+ "internalType": "uint256",
49
+ "name": "from",
50
+ "type": "uint256"
51
+ },
52
+ {
53
+ "internalType": "uint256",
54
+ "name": "to",
55
+ "type": "uint256"
56
+ }
57
+ ],
58
+ "name": "InvalidRange",
59
+ "type": "error"
60
+ },
61
+ {
62
+ "inputs": [
63
+ {
64
+ "internalType": "uint256",
65
+ "name": "provided",
66
+ "type": "uint256"
67
+ }
68
+ ],
69
+ "name": "InvalidTimeLockPeriod",
70
+ "type": "error"
71
+ },
72
+ {
73
+ "inputs": [
74
+ {
75
+ "internalType": "address",
76
+ "name": "caller",
77
+ "type": "address"
78
+ }
79
+ ],
80
+ "name": "NoPermission",
81
+ "type": "error"
82
+ },
83
+ {
84
+ "inputs": [],
85
+ "name": "NotInitializing",
86
+ "type": "error"
87
+ },
88
+ {
89
+ "inputs": [],
90
+ "name": "NotSupported",
91
+ "type": "error"
92
+ },
93
+ {
94
+ "inputs": [
95
+ {
96
+ "internalType": "address",
97
+ "name": "caller",
98
+ "type": "address"
99
+ },
100
+ {
101
+ "internalType": "address",
102
+ "name": "contractAddress",
103
+ "type": "address"
104
+ }
105
+ ],
106
+ "name": "OnlyCallableByContract",
107
+ "type": "error"
108
+ },
109
+ {
110
+ "inputs": [],
111
+ "name": "PendingSecureRequest",
112
+ "type": "error"
113
+ },
114
+ {
115
+ "inputs": [
116
+ {
117
+ "internalType": "uint256",
118
+ "name": "rangeSize",
119
+ "type": "uint256"
120
+ },
121
+ {
122
+ "internalType": "uint256",
123
+ "name": "maxRangeSize",
124
+ "type": "uint256"
125
+ }
126
+ ],
127
+ "name": "RangeSizeExceeded",
128
+ "type": "error"
129
+ },
130
+ {
131
+ "inputs": [],
132
+ "name": "ReentrancyGuardReentrantCall",
133
+ "type": "error"
134
+ },
135
+ {
136
+ "inputs": [
137
+ {
138
+ "internalType": "bytes32",
139
+ "name": "resourceId",
140
+ "type": "bytes32"
141
+ }
142
+ ],
143
+ "name": "ResourceNotFound",
144
+ "type": "error"
145
+ },
146
+ {
147
+ "inputs": [
148
+ {
149
+ "internalType": "address",
150
+ "name": "caller",
151
+ "type": "address"
152
+ },
153
+ {
154
+ "internalType": "address",
155
+ "name": "owner",
156
+ "type": "address"
157
+ }
158
+ ],
159
+ "name": "RestrictedOwner",
160
+ "type": "error"
161
+ },
162
+ {
163
+ "inputs": [
164
+ {
165
+ "internalType": "address",
166
+ "name": "caller",
167
+ "type": "address"
168
+ },
169
+ {
170
+ "internalType": "address",
171
+ "name": "owner",
172
+ "type": "address"
173
+ },
174
+ {
175
+ "internalType": "address",
176
+ "name": "recovery",
177
+ "type": "address"
178
+ }
179
+ ],
180
+ "name": "RestrictedOwnerRecovery",
181
+ "type": "error"
182
+ },
183
+ {
184
+ "inputs": [
185
+ {
186
+ "internalType": "address",
187
+ "name": "caller",
188
+ "type": "address"
189
+ },
190
+ {
191
+ "internalType": "address",
192
+ "name": "recovery",
193
+ "type": "address"
194
+ }
195
+ ],
196
+ "name": "RestrictedRecovery",
197
+ "type": "error"
198
+ },
199
+ {
200
+ "inputs": [
201
+ {
202
+ "internalType": "address",
203
+ "name": "token",
204
+ "type": "address"
205
+ }
206
+ ],
207
+ "name": "SafeERC20FailedOperation",
208
+ "type": "error"
209
+ },
210
+ {
211
+ "anonymous": false,
212
+ "inputs": [
213
+ {
214
+ "indexed": true,
215
+ "internalType": "bytes4",
216
+ "name": "functionSelector",
217
+ "type": "bytes4"
218
+ },
219
+ {
220
+ "indexed": false,
221
+ "internalType": "bytes",
222
+ "name": "data",
223
+ "type": "bytes"
224
+ }
225
+ ],
226
+ "name": "ComponentEvent",
227
+ "type": "event"
228
+ },
229
+ {
230
+ "anonymous": false,
231
+ "inputs": [
232
+ {
233
+ "indexed": true,
234
+ "internalType": "address",
235
+ "name": "from",
236
+ "type": "address"
237
+ },
238
+ {
239
+ "indexed": false,
240
+ "internalType": "uint256",
241
+ "name": "amount",
242
+ "type": "uint256"
243
+ }
244
+ ],
245
+ "name": "EthReceived",
246
+ "type": "event"
247
+ },
248
+ {
249
+ "anonymous": false,
250
+ "inputs": [
251
+ {
252
+ "indexed": true,
253
+ "internalType": "address",
254
+ "name": "to",
255
+ "type": "address"
256
+ },
257
+ {
258
+ "indexed": false,
259
+ "internalType": "uint256",
260
+ "name": "amount",
261
+ "type": "uint256"
262
+ }
263
+ ],
264
+ "name": "EthWithdrawn",
265
+ "type": "event"
266
+ },
267
+ {
268
+ "anonymous": false,
269
+ "inputs": [
270
+ {
271
+ "indexed": false,
272
+ "internalType": "uint64",
273
+ "name": "version",
274
+ "type": "uint64"
275
+ }
276
+ ],
277
+ "name": "Initialized",
278
+ "type": "event"
279
+ },
280
+ {
281
+ "anonymous": false,
282
+ "inputs": [
283
+ {
284
+ "indexed": true,
285
+ "internalType": "address",
286
+ "name": "token",
287
+ "type": "address"
288
+ },
289
+ {
290
+ "indexed": true,
291
+ "internalType": "address",
292
+ "name": "to",
293
+ "type": "address"
294
+ },
295
+ {
296
+ "indexed": false,
297
+ "internalType": "uint256",
298
+ "name": "amount",
299
+ "type": "uint256"
300
+ }
301
+ ],
302
+ "name": "TokenWithdrawn",
303
+ "type": "event"
304
+ },
305
+ {
306
+ "inputs": [
307
+ {
308
+ "internalType": "address",
309
+ "name": "handlerContract",
310
+ "type": "address"
311
+ },
312
+ {
313
+ "internalType": "bytes4",
314
+ "name": "handlerSelector",
315
+ "type": "bytes4"
316
+ },
317
+ {
318
+ "internalType": "enum EngineBlox.TxAction",
319
+ "name": "action",
320
+ "type": "uint8"
321
+ },
322
+ {
323
+ "internalType": "uint256",
324
+ "name": "deadline",
325
+ "type": "uint256"
326
+ },
327
+ {
328
+ "internalType": "uint256",
329
+ "name": "maxGasPrice",
330
+ "type": "uint256"
331
+ },
332
+ {
333
+ "internalType": "address",
334
+ "name": "signer",
335
+ "type": "address"
336
+ }
337
+ ],
338
+ "name": "createMetaTxParams",
339
+ "outputs": [
340
+ {
341
+ "components": [
342
+ {
343
+ "internalType": "uint256",
344
+ "name": "chainId",
345
+ "type": "uint256"
346
+ },
347
+ {
348
+ "internalType": "uint256",
349
+ "name": "nonce",
350
+ "type": "uint256"
351
+ },
352
+ {
353
+ "internalType": "address",
354
+ "name": "handlerContract",
355
+ "type": "address"
356
+ },
357
+ {
358
+ "internalType": "bytes4",
359
+ "name": "handlerSelector",
360
+ "type": "bytes4"
361
+ },
362
+ {
363
+ "internalType": "enum EngineBlox.TxAction",
364
+ "name": "action",
365
+ "type": "uint8"
366
+ },
367
+ {
368
+ "internalType": "uint256",
369
+ "name": "deadline",
370
+ "type": "uint256"
371
+ },
372
+ {
373
+ "internalType": "uint256",
374
+ "name": "maxGasPrice",
375
+ "type": "uint256"
376
+ },
377
+ {
378
+ "internalType": "address",
379
+ "name": "signer",
380
+ "type": "address"
381
+ }
382
+ ],
383
+ "internalType": "struct EngineBlox.MetaTxParams",
384
+ "name": "",
385
+ "type": "tuple"
386
+ }
387
+ ],
388
+ "stateMutability": "view",
389
+ "type": "function"
390
+ },
391
+ {
392
+ "inputs": [
393
+ {
394
+ "internalType": "address",
395
+ "name": "newBroadcaster",
396
+ "type": "address"
397
+ },
398
+ {
399
+ "internalType": "uint256",
400
+ "name": "location",
401
+ "type": "uint256"
402
+ }
403
+ ],
404
+ "name": "executeBroadcasterUpdate",
405
+ "outputs": [],
406
+ "stateMutability": "nonpayable",
407
+ "type": "function"
408
+ },
409
+ {
410
+ "inputs": [
411
+ {
412
+ "internalType": "address",
413
+ "name": "newRecoveryAddress",
414
+ "type": "address"
415
+ }
416
+ ],
417
+ "name": "executeRecoveryUpdate",
418
+ "outputs": [],
419
+ "stateMutability": "nonpayable",
420
+ "type": "function"
421
+ },
422
+ {
423
+ "inputs": [
424
+ {
425
+ "internalType": "uint256",
426
+ "name": "newTimeLockPeriodSec",
427
+ "type": "uint256"
428
+ }
429
+ ],
430
+ "name": "executeTimeLockUpdate",
431
+ "outputs": [],
432
+ "stateMutability": "nonpayable",
433
+ "type": "function"
434
+ },
435
+ {
436
+ "inputs": [
437
+ {
438
+ "internalType": "address",
439
+ "name": "newOwner",
440
+ "type": "address"
441
+ }
442
+ ],
443
+ "name": "executeTransferOwnership",
444
+ "outputs": [],
445
+ "stateMutability": "nonpayable",
446
+ "type": "function"
447
+ },
448
+ {
449
+ "inputs": [
450
+ {
451
+ "internalType": "bytes4",
452
+ "name": "functionSelector",
453
+ "type": "bytes4"
454
+ }
455
+ ],
456
+ "name": "functionSchemaExists",
457
+ "outputs": [
458
+ {
459
+ "internalType": "bool",
460
+ "name": "",
461
+ "type": "bool"
462
+ }
463
+ ],
464
+ "stateMutability": "view",
465
+ "type": "function"
466
+ },
467
+ {
468
+ "inputs": [
469
+ {
470
+ "internalType": "uint256",
471
+ "name": "txId",
472
+ "type": "uint256"
473
+ },
474
+ {
475
+ "components": [
476
+ {
477
+ "internalType": "uint256",
478
+ "name": "chainId",
479
+ "type": "uint256"
480
+ },
481
+ {
482
+ "internalType": "uint256",
483
+ "name": "nonce",
484
+ "type": "uint256"
485
+ },
486
+ {
487
+ "internalType": "address",
488
+ "name": "handlerContract",
489
+ "type": "address"
490
+ },
491
+ {
492
+ "internalType": "bytes4",
493
+ "name": "handlerSelector",
494
+ "type": "bytes4"
495
+ },
496
+ {
497
+ "internalType": "enum EngineBlox.TxAction",
498
+ "name": "action",
499
+ "type": "uint8"
500
+ },
501
+ {
502
+ "internalType": "uint256",
503
+ "name": "deadline",
504
+ "type": "uint256"
505
+ },
506
+ {
507
+ "internalType": "uint256",
508
+ "name": "maxGasPrice",
509
+ "type": "uint256"
510
+ },
511
+ {
512
+ "internalType": "address",
513
+ "name": "signer",
514
+ "type": "address"
515
+ }
516
+ ],
517
+ "internalType": "struct EngineBlox.MetaTxParams",
518
+ "name": "metaTxParams",
519
+ "type": "tuple"
520
+ }
521
+ ],
522
+ "name": "generateUnsignedMetaTransactionForExisting",
523
+ "outputs": [
524
+ {
525
+ "components": [
526
+ {
527
+ "components": [
528
+ {
529
+ "internalType": "uint256",
530
+ "name": "txId",
531
+ "type": "uint256"
532
+ },
533
+ {
534
+ "internalType": "uint256",
535
+ "name": "releaseTime",
536
+ "type": "uint256"
537
+ },
538
+ {
539
+ "internalType": "enum EngineBlox.TxStatus",
540
+ "name": "status",
541
+ "type": "uint8"
542
+ },
543
+ {
544
+ "components": [
545
+ {
546
+ "internalType": "address",
547
+ "name": "requester",
548
+ "type": "address"
549
+ },
550
+ {
551
+ "internalType": "address",
552
+ "name": "target",
553
+ "type": "address"
554
+ },
555
+ {
556
+ "internalType": "uint256",
557
+ "name": "value",
558
+ "type": "uint256"
559
+ },
560
+ {
561
+ "internalType": "uint256",
562
+ "name": "gasLimit",
563
+ "type": "uint256"
564
+ },
565
+ {
566
+ "internalType": "bytes32",
567
+ "name": "operationType",
568
+ "type": "bytes32"
569
+ },
570
+ {
571
+ "internalType": "bytes4",
572
+ "name": "executionSelector",
573
+ "type": "bytes4"
574
+ },
575
+ {
576
+ "internalType": "bytes",
577
+ "name": "executionParams",
578
+ "type": "bytes"
579
+ }
580
+ ],
581
+ "internalType": "struct EngineBlox.TxParams",
582
+ "name": "params",
583
+ "type": "tuple"
584
+ },
585
+ {
586
+ "internalType": "bytes32",
587
+ "name": "message",
588
+ "type": "bytes32"
589
+ },
590
+ {
591
+ "internalType": "bytes",
592
+ "name": "result",
593
+ "type": "bytes"
594
+ },
595
+ {
596
+ "components": [
597
+ {
598
+ "internalType": "address",
599
+ "name": "recipient",
600
+ "type": "address"
601
+ },
602
+ {
603
+ "internalType": "uint256",
604
+ "name": "nativeTokenAmount",
605
+ "type": "uint256"
606
+ },
607
+ {
608
+ "internalType": "address",
609
+ "name": "erc20TokenAddress",
610
+ "type": "address"
611
+ },
612
+ {
613
+ "internalType": "uint256",
614
+ "name": "erc20TokenAmount",
615
+ "type": "uint256"
616
+ }
617
+ ],
618
+ "internalType": "struct EngineBlox.PaymentDetails",
619
+ "name": "payment",
620
+ "type": "tuple"
621
+ }
622
+ ],
623
+ "internalType": "struct EngineBlox.TxRecord",
624
+ "name": "txRecord",
625
+ "type": "tuple"
626
+ },
627
+ {
628
+ "components": [
629
+ {
630
+ "internalType": "uint256",
631
+ "name": "chainId",
632
+ "type": "uint256"
633
+ },
634
+ {
635
+ "internalType": "uint256",
636
+ "name": "nonce",
637
+ "type": "uint256"
638
+ },
639
+ {
640
+ "internalType": "address",
641
+ "name": "handlerContract",
642
+ "type": "address"
643
+ },
644
+ {
645
+ "internalType": "bytes4",
646
+ "name": "handlerSelector",
647
+ "type": "bytes4"
648
+ },
649
+ {
650
+ "internalType": "enum EngineBlox.TxAction",
651
+ "name": "action",
652
+ "type": "uint8"
653
+ },
654
+ {
655
+ "internalType": "uint256",
656
+ "name": "deadline",
657
+ "type": "uint256"
658
+ },
659
+ {
660
+ "internalType": "uint256",
661
+ "name": "maxGasPrice",
662
+ "type": "uint256"
663
+ },
664
+ {
665
+ "internalType": "address",
666
+ "name": "signer",
667
+ "type": "address"
668
+ }
669
+ ],
670
+ "internalType": "struct EngineBlox.MetaTxParams",
671
+ "name": "params",
672
+ "type": "tuple"
673
+ },
674
+ {
675
+ "internalType": "bytes32",
676
+ "name": "message",
677
+ "type": "bytes32"
678
+ },
679
+ {
680
+ "internalType": "bytes",
681
+ "name": "signature",
682
+ "type": "bytes"
683
+ },
684
+ {
685
+ "internalType": "bytes",
686
+ "name": "data",
687
+ "type": "bytes"
688
+ }
689
+ ],
690
+ "internalType": "struct EngineBlox.MetaTransaction",
691
+ "name": "",
692
+ "type": "tuple"
693
+ }
694
+ ],
695
+ "stateMutability": "view",
696
+ "type": "function"
697
+ },
698
+ {
699
+ "inputs": [
700
+ {
701
+ "internalType": "address",
702
+ "name": "requester",
703
+ "type": "address"
704
+ },
705
+ {
706
+ "internalType": "address",
707
+ "name": "target",
708
+ "type": "address"
709
+ },
710
+ {
711
+ "internalType": "uint256",
712
+ "name": "value",
713
+ "type": "uint256"
714
+ },
715
+ {
716
+ "internalType": "uint256",
717
+ "name": "gasLimit",
718
+ "type": "uint256"
719
+ },
720
+ {
721
+ "internalType": "bytes32",
722
+ "name": "operationType",
723
+ "type": "bytes32"
724
+ },
725
+ {
726
+ "internalType": "bytes4",
727
+ "name": "executionSelector",
728
+ "type": "bytes4"
729
+ },
730
+ {
731
+ "internalType": "bytes",
732
+ "name": "executionParams",
733
+ "type": "bytes"
734
+ },
735
+ {
736
+ "components": [
737
+ {
738
+ "internalType": "uint256",
739
+ "name": "chainId",
740
+ "type": "uint256"
741
+ },
742
+ {
743
+ "internalType": "uint256",
744
+ "name": "nonce",
745
+ "type": "uint256"
746
+ },
747
+ {
748
+ "internalType": "address",
749
+ "name": "handlerContract",
750
+ "type": "address"
751
+ },
752
+ {
753
+ "internalType": "bytes4",
754
+ "name": "handlerSelector",
755
+ "type": "bytes4"
756
+ },
757
+ {
758
+ "internalType": "enum EngineBlox.TxAction",
759
+ "name": "action",
760
+ "type": "uint8"
761
+ },
762
+ {
763
+ "internalType": "uint256",
764
+ "name": "deadline",
765
+ "type": "uint256"
766
+ },
767
+ {
768
+ "internalType": "uint256",
769
+ "name": "maxGasPrice",
770
+ "type": "uint256"
771
+ },
772
+ {
773
+ "internalType": "address",
774
+ "name": "signer",
775
+ "type": "address"
776
+ }
777
+ ],
778
+ "internalType": "struct EngineBlox.MetaTxParams",
779
+ "name": "metaTxParams",
780
+ "type": "tuple"
781
+ }
782
+ ],
783
+ "name": "generateUnsignedMetaTransactionForNew",
784
+ "outputs": [
785
+ {
786
+ "components": [
787
+ {
788
+ "components": [
789
+ {
790
+ "internalType": "uint256",
791
+ "name": "txId",
792
+ "type": "uint256"
793
+ },
794
+ {
795
+ "internalType": "uint256",
796
+ "name": "releaseTime",
797
+ "type": "uint256"
798
+ },
799
+ {
800
+ "internalType": "enum EngineBlox.TxStatus",
801
+ "name": "status",
802
+ "type": "uint8"
803
+ },
804
+ {
805
+ "components": [
806
+ {
807
+ "internalType": "address",
808
+ "name": "requester",
809
+ "type": "address"
810
+ },
811
+ {
812
+ "internalType": "address",
813
+ "name": "target",
814
+ "type": "address"
815
+ },
816
+ {
817
+ "internalType": "uint256",
818
+ "name": "value",
819
+ "type": "uint256"
820
+ },
821
+ {
822
+ "internalType": "uint256",
823
+ "name": "gasLimit",
824
+ "type": "uint256"
825
+ },
826
+ {
827
+ "internalType": "bytes32",
828
+ "name": "operationType",
829
+ "type": "bytes32"
830
+ },
831
+ {
832
+ "internalType": "bytes4",
833
+ "name": "executionSelector",
834
+ "type": "bytes4"
835
+ },
836
+ {
837
+ "internalType": "bytes",
838
+ "name": "executionParams",
839
+ "type": "bytes"
840
+ }
841
+ ],
842
+ "internalType": "struct EngineBlox.TxParams",
843
+ "name": "params",
844
+ "type": "tuple"
845
+ },
846
+ {
847
+ "internalType": "bytes32",
848
+ "name": "message",
849
+ "type": "bytes32"
850
+ },
851
+ {
852
+ "internalType": "bytes",
853
+ "name": "result",
854
+ "type": "bytes"
855
+ },
856
+ {
857
+ "components": [
858
+ {
859
+ "internalType": "address",
860
+ "name": "recipient",
861
+ "type": "address"
862
+ },
863
+ {
864
+ "internalType": "uint256",
865
+ "name": "nativeTokenAmount",
866
+ "type": "uint256"
867
+ },
868
+ {
869
+ "internalType": "address",
870
+ "name": "erc20TokenAddress",
871
+ "type": "address"
872
+ },
873
+ {
874
+ "internalType": "uint256",
875
+ "name": "erc20TokenAmount",
876
+ "type": "uint256"
877
+ }
878
+ ],
879
+ "internalType": "struct EngineBlox.PaymentDetails",
880
+ "name": "payment",
881
+ "type": "tuple"
882
+ }
883
+ ],
884
+ "internalType": "struct EngineBlox.TxRecord",
885
+ "name": "txRecord",
886
+ "type": "tuple"
887
+ },
888
+ {
889
+ "components": [
890
+ {
891
+ "internalType": "uint256",
892
+ "name": "chainId",
893
+ "type": "uint256"
894
+ },
895
+ {
896
+ "internalType": "uint256",
897
+ "name": "nonce",
898
+ "type": "uint256"
899
+ },
900
+ {
901
+ "internalType": "address",
902
+ "name": "handlerContract",
903
+ "type": "address"
904
+ },
905
+ {
906
+ "internalType": "bytes4",
907
+ "name": "handlerSelector",
908
+ "type": "bytes4"
909
+ },
910
+ {
911
+ "internalType": "enum EngineBlox.TxAction",
912
+ "name": "action",
913
+ "type": "uint8"
914
+ },
915
+ {
916
+ "internalType": "uint256",
917
+ "name": "deadline",
918
+ "type": "uint256"
919
+ },
920
+ {
921
+ "internalType": "uint256",
922
+ "name": "maxGasPrice",
923
+ "type": "uint256"
924
+ },
925
+ {
926
+ "internalType": "address",
927
+ "name": "signer",
928
+ "type": "address"
929
+ }
930
+ ],
931
+ "internalType": "struct EngineBlox.MetaTxParams",
932
+ "name": "params",
933
+ "type": "tuple"
934
+ },
935
+ {
936
+ "internalType": "bytes32",
937
+ "name": "message",
938
+ "type": "bytes32"
939
+ },
940
+ {
941
+ "internalType": "bytes",
942
+ "name": "signature",
943
+ "type": "bytes"
944
+ },
945
+ {
946
+ "internalType": "bytes",
947
+ "name": "data",
948
+ "type": "bytes"
949
+ }
950
+ ],
951
+ "internalType": "struct EngineBlox.MetaTransaction",
952
+ "name": "",
953
+ "type": "tuple"
954
+ }
955
+ ],
956
+ "stateMutability": "view",
957
+ "type": "function"
958
+ },
959
+ {
960
+ "inputs": [
961
+ {
962
+ "internalType": "bytes32",
963
+ "name": "roleHash",
964
+ "type": "bytes32"
965
+ }
966
+ ],
967
+ "name": "getActiveRolePermissions",
968
+ "outputs": [
969
+ {
970
+ "components": [
971
+ {
972
+ "internalType": "bytes4",
973
+ "name": "functionSelector",
974
+ "type": "bytes4"
975
+ },
976
+ {
977
+ "internalType": "uint16",
978
+ "name": "grantedActionsBitmap",
979
+ "type": "uint16"
980
+ },
981
+ {
982
+ "internalType": "bytes4[]",
983
+ "name": "handlerForSelectors",
984
+ "type": "bytes4[]"
985
+ }
986
+ ],
987
+ "internalType": "struct EngineBlox.FunctionPermission[]",
988
+ "name": "",
989
+ "type": "tuple[]"
990
+ }
991
+ ],
992
+ "stateMutability": "view",
993
+ "type": "function"
994
+ },
995
+ {
996
+ "inputs": [],
997
+ "name": "getBroadcasters",
998
+ "outputs": [
999
+ {
1000
+ "internalType": "address[]",
1001
+ "name": "",
1002
+ "type": "address[]"
1003
+ }
1004
+ ],
1005
+ "stateMutability": "view",
1006
+ "type": "function"
1007
+ },
1008
+ {
1009
+ "inputs": [
1010
+ {
1011
+ "internalType": "bytes4",
1012
+ "name": "functionSelector",
1013
+ "type": "bytes4"
1014
+ }
1015
+ ],
1016
+ "name": "getFunctionSchema",
1017
+ "outputs": [
1018
+ {
1019
+ "components": [
1020
+ {
1021
+ "internalType": "string",
1022
+ "name": "functionSignature",
1023
+ "type": "string"
1024
+ },
1025
+ {
1026
+ "internalType": "bytes4",
1027
+ "name": "functionSelector",
1028
+ "type": "bytes4"
1029
+ },
1030
+ {
1031
+ "internalType": "bytes32",
1032
+ "name": "operationType",
1033
+ "type": "bytes32"
1034
+ },
1035
+ {
1036
+ "internalType": "string",
1037
+ "name": "operationName",
1038
+ "type": "string"
1039
+ },
1040
+ {
1041
+ "internalType": "uint16",
1042
+ "name": "supportedActionsBitmap",
1043
+ "type": "uint16"
1044
+ },
1045
+ {
1046
+ "internalType": "bool",
1047
+ "name": "isProtected",
1048
+ "type": "bool"
1049
+ },
1050
+ {
1051
+ "internalType": "bytes4[]",
1052
+ "name": "handlerForSelectors",
1053
+ "type": "bytes4[]"
1054
+ }
1055
+ ],
1056
+ "internalType": "struct EngineBlox.FunctionSchema",
1057
+ "name": "",
1058
+ "type": "tuple"
1059
+ }
1060
+ ],
1061
+ "stateMutability": "view",
1062
+ "type": "function"
1063
+ },
1064
+ {
1065
+ "inputs": [
1066
+ {
1067
+ "internalType": "bytes4",
1068
+ "name": "functionSelector",
1069
+ "type": "bytes4"
1070
+ }
1071
+ ],
1072
+ "name": "getFunctionWhitelistTargets",
1073
+ "outputs": [
1074
+ {
1075
+ "internalType": "address[]",
1076
+ "name": "",
1077
+ "type": "address[]"
1078
+ }
1079
+ ],
1080
+ "stateMutability": "view",
1081
+ "type": "function"
1082
+ },
1083
+ {
1084
+ "inputs": [
1085
+ {
1086
+ "internalType": "bytes4",
1087
+ "name": "functionSelector",
1088
+ "type": "bytes4"
1089
+ }
1090
+ ],
1091
+ "name": "getHooks",
1092
+ "outputs": [
1093
+ {
1094
+ "internalType": "address[]",
1095
+ "name": "hooks",
1096
+ "type": "address[]"
1097
+ }
1098
+ ],
1099
+ "stateMutability": "view",
1100
+ "type": "function"
1101
+ },
1102
+ {
1103
+ "inputs": [],
1104
+ "name": "getPendingTransactions",
1105
+ "outputs": [
1106
+ {
1107
+ "internalType": "uint256[]",
1108
+ "name": "",
1109
+ "type": "uint256[]"
1110
+ }
1111
+ ],
1112
+ "stateMutability": "view",
1113
+ "type": "function"
1114
+ },
1115
+ {
1116
+ "inputs": [],
1117
+ "name": "getRecovery",
1118
+ "outputs": [
1119
+ {
1120
+ "internalType": "address",
1121
+ "name": "",
1122
+ "type": "address"
1123
+ }
1124
+ ],
1125
+ "stateMutability": "view",
1126
+ "type": "function"
1127
+ },
1128
+ {
1129
+ "inputs": [
1130
+ {
1131
+ "internalType": "bytes32",
1132
+ "name": "roleHash",
1133
+ "type": "bytes32"
1134
+ }
1135
+ ],
1136
+ "name": "getRole",
1137
+ "outputs": [
1138
+ {
1139
+ "internalType": "string",
1140
+ "name": "roleName",
1141
+ "type": "string"
1142
+ },
1143
+ {
1144
+ "internalType": "bytes32",
1145
+ "name": "roleHashReturn",
1146
+ "type": "bytes32"
1147
+ },
1148
+ {
1149
+ "internalType": "uint256",
1150
+ "name": "maxWallets",
1151
+ "type": "uint256"
1152
+ },
1153
+ {
1154
+ "internalType": "uint256",
1155
+ "name": "walletCount",
1156
+ "type": "uint256"
1157
+ },
1158
+ {
1159
+ "internalType": "bool",
1160
+ "name": "isProtected",
1161
+ "type": "bool"
1162
+ }
1163
+ ],
1164
+ "stateMutability": "view",
1165
+ "type": "function"
1166
+ },
1167
+ {
1168
+ "inputs": [
1169
+ {
1170
+ "internalType": "address",
1171
+ "name": "signer",
1172
+ "type": "address"
1173
+ }
1174
+ ],
1175
+ "name": "getSignerNonce",
1176
+ "outputs": [
1177
+ {
1178
+ "internalType": "uint256",
1179
+ "name": "",
1180
+ "type": "uint256"
1181
+ }
1182
+ ],
1183
+ "stateMutability": "view",
1184
+ "type": "function"
1185
+ },
1186
+ {
1187
+ "inputs": [],
1188
+ "name": "getSupportedFunctions",
1189
+ "outputs": [
1190
+ {
1191
+ "internalType": "bytes4[]",
1192
+ "name": "",
1193
+ "type": "bytes4[]"
1194
+ }
1195
+ ],
1196
+ "stateMutability": "view",
1197
+ "type": "function"
1198
+ },
1199
+ {
1200
+ "inputs": [],
1201
+ "name": "getSupportedOperationTypes",
1202
+ "outputs": [
1203
+ {
1204
+ "internalType": "bytes32[]",
1205
+ "name": "",
1206
+ "type": "bytes32[]"
1207
+ }
1208
+ ],
1209
+ "stateMutability": "view",
1210
+ "type": "function"
1211
+ },
1212
+ {
1213
+ "inputs": [],
1214
+ "name": "getSupportedRoles",
1215
+ "outputs": [
1216
+ {
1217
+ "internalType": "bytes32[]",
1218
+ "name": "",
1219
+ "type": "bytes32[]"
1220
+ }
1221
+ ],
1222
+ "stateMutability": "view",
1223
+ "type": "function"
1224
+ },
1225
+ {
1226
+ "inputs": [],
1227
+ "name": "getTimeLockPeriodSec",
1228
+ "outputs": [
1229
+ {
1230
+ "internalType": "uint256",
1231
+ "name": "",
1232
+ "type": "uint256"
1233
+ }
1234
+ ],
1235
+ "stateMutability": "view",
1236
+ "type": "function"
1237
+ },
1238
+ {
1239
+ "inputs": [
1240
+ {
1241
+ "internalType": "uint256",
1242
+ "name": "txId",
1243
+ "type": "uint256"
1244
+ }
1245
+ ],
1246
+ "name": "getTransaction",
1247
+ "outputs": [
1248
+ {
1249
+ "components": [
1250
+ {
1251
+ "internalType": "uint256",
1252
+ "name": "txId",
1253
+ "type": "uint256"
1254
+ },
1255
+ {
1256
+ "internalType": "uint256",
1257
+ "name": "releaseTime",
1258
+ "type": "uint256"
1259
+ },
1260
+ {
1261
+ "internalType": "enum EngineBlox.TxStatus",
1262
+ "name": "status",
1263
+ "type": "uint8"
1264
+ },
1265
+ {
1266
+ "components": [
1267
+ {
1268
+ "internalType": "address",
1269
+ "name": "requester",
1270
+ "type": "address"
1271
+ },
1272
+ {
1273
+ "internalType": "address",
1274
+ "name": "target",
1275
+ "type": "address"
1276
+ },
1277
+ {
1278
+ "internalType": "uint256",
1279
+ "name": "value",
1280
+ "type": "uint256"
1281
+ },
1282
+ {
1283
+ "internalType": "uint256",
1284
+ "name": "gasLimit",
1285
+ "type": "uint256"
1286
+ },
1287
+ {
1288
+ "internalType": "bytes32",
1289
+ "name": "operationType",
1290
+ "type": "bytes32"
1291
+ },
1292
+ {
1293
+ "internalType": "bytes4",
1294
+ "name": "executionSelector",
1295
+ "type": "bytes4"
1296
+ },
1297
+ {
1298
+ "internalType": "bytes",
1299
+ "name": "executionParams",
1300
+ "type": "bytes"
1301
+ }
1302
+ ],
1303
+ "internalType": "struct EngineBlox.TxParams",
1304
+ "name": "params",
1305
+ "type": "tuple"
1306
+ },
1307
+ {
1308
+ "internalType": "bytes32",
1309
+ "name": "message",
1310
+ "type": "bytes32"
1311
+ },
1312
+ {
1313
+ "internalType": "bytes",
1314
+ "name": "result",
1315
+ "type": "bytes"
1316
+ },
1317
+ {
1318
+ "components": [
1319
+ {
1320
+ "internalType": "address",
1321
+ "name": "recipient",
1322
+ "type": "address"
1323
+ },
1324
+ {
1325
+ "internalType": "uint256",
1326
+ "name": "nativeTokenAmount",
1327
+ "type": "uint256"
1328
+ },
1329
+ {
1330
+ "internalType": "address",
1331
+ "name": "erc20TokenAddress",
1332
+ "type": "address"
1333
+ },
1334
+ {
1335
+ "internalType": "uint256",
1336
+ "name": "erc20TokenAmount",
1337
+ "type": "uint256"
1338
+ }
1339
+ ],
1340
+ "internalType": "struct EngineBlox.PaymentDetails",
1341
+ "name": "payment",
1342
+ "type": "tuple"
1343
+ }
1344
+ ],
1345
+ "internalType": "struct EngineBlox.TxRecord",
1346
+ "name": "",
1347
+ "type": "tuple"
1348
+ }
1349
+ ],
1350
+ "stateMutability": "view",
1351
+ "type": "function"
1352
+ },
1353
+ {
1354
+ "inputs": [
1355
+ {
1356
+ "internalType": "uint256",
1357
+ "name": "fromTxId",
1358
+ "type": "uint256"
1359
+ },
1360
+ {
1361
+ "internalType": "uint256",
1362
+ "name": "toTxId",
1363
+ "type": "uint256"
1364
+ }
1365
+ ],
1366
+ "name": "getTransactionHistory",
1367
+ "outputs": [
1368
+ {
1369
+ "components": [
1370
+ {
1371
+ "internalType": "uint256",
1372
+ "name": "txId",
1373
+ "type": "uint256"
1374
+ },
1375
+ {
1376
+ "internalType": "uint256",
1377
+ "name": "releaseTime",
1378
+ "type": "uint256"
1379
+ },
1380
+ {
1381
+ "internalType": "enum EngineBlox.TxStatus",
1382
+ "name": "status",
1383
+ "type": "uint8"
1384
+ },
1385
+ {
1386
+ "components": [
1387
+ {
1388
+ "internalType": "address",
1389
+ "name": "requester",
1390
+ "type": "address"
1391
+ },
1392
+ {
1393
+ "internalType": "address",
1394
+ "name": "target",
1395
+ "type": "address"
1396
+ },
1397
+ {
1398
+ "internalType": "uint256",
1399
+ "name": "value",
1400
+ "type": "uint256"
1401
+ },
1402
+ {
1403
+ "internalType": "uint256",
1404
+ "name": "gasLimit",
1405
+ "type": "uint256"
1406
+ },
1407
+ {
1408
+ "internalType": "bytes32",
1409
+ "name": "operationType",
1410
+ "type": "bytes32"
1411
+ },
1412
+ {
1413
+ "internalType": "bytes4",
1414
+ "name": "executionSelector",
1415
+ "type": "bytes4"
1416
+ },
1417
+ {
1418
+ "internalType": "bytes",
1419
+ "name": "executionParams",
1420
+ "type": "bytes"
1421
+ }
1422
+ ],
1423
+ "internalType": "struct EngineBlox.TxParams",
1424
+ "name": "params",
1425
+ "type": "tuple"
1426
+ },
1427
+ {
1428
+ "internalType": "bytes32",
1429
+ "name": "message",
1430
+ "type": "bytes32"
1431
+ },
1432
+ {
1433
+ "internalType": "bytes",
1434
+ "name": "result",
1435
+ "type": "bytes"
1436
+ },
1437
+ {
1438
+ "components": [
1439
+ {
1440
+ "internalType": "address",
1441
+ "name": "recipient",
1442
+ "type": "address"
1443
+ },
1444
+ {
1445
+ "internalType": "uint256",
1446
+ "name": "nativeTokenAmount",
1447
+ "type": "uint256"
1448
+ },
1449
+ {
1450
+ "internalType": "address",
1451
+ "name": "erc20TokenAddress",
1452
+ "type": "address"
1453
+ },
1454
+ {
1455
+ "internalType": "uint256",
1456
+ "name": "erc20TokenAmount",
1457
+ "type": "uint256"
1458
+ }
1459
+ ],
1460
+ "internalType": "struct EngineBlox.PaymentDetails",
1461
+ "name": "payment",
1462
+ "type": "tuple"
1463
+ }
1464
+ ],
1465
+ "internalType": "struct EngineBlox.TxRecord[]",
1466
+ "name": "",
1467
+ "type": "tuple[]"
1468
+ }
1469
+ ],
1470
+ "stateMutability": "view",
1471
+ "type": "function"
1472
+ },
1473
+ {
1474
+ "inputs": [
1475
+ {
1476
+ "internalType": "address",
1477
+ "name": "wallet",
1478
+ "type": "address"
1479
+ }
1480
+ ],
1481
+ "name": "getWalletRoles",
1482
+ "outputs": [
1483
+ {
1484
+ "internalType": "bytes32[]",
1485
+ "name": "",
1486
+ "type": "bytes32[]"
1487
+ }
1488
+ ],
1489
+ "stateMutability": "view",
1490
+ "type": "function"
1491
+ },
1492
+ {
1493
+ "inputs": [
1494
+ {
1495
+ "internalType": "bytes32",
1496
+ "name": "roleHash",
1497
+ "type": "bytes32"
1498
+ }
1499
+ ],
1500
+ "name": "getWalletsInRole",
1501
+ "outputs": [
1502
+ {
1503
+ "internalType": "address[]",
1504
+ "name": "",
1505
+ "type": "address[]"
1506
+ }
1507
+ ],
1508
+ "stateMutability": "view",
1509
+ "type": "function"
1510
+ },
1511
+ {
1512
+ "inputs": [
1513
+ {
1514
+ "internalType": "bytes32",
1515
+ "name": "roleHash",
1516
+ "type": "bytes32"
1517
+ },
1518
+ {
1519
+ "internalType": "address",
1520
+ "name": "wallet",
1521
+ "type": "address"
1522
+ }
1523
+ ],
1524
+ "name": "hasRole",
1525
+ "outputs": [
1526
+ {
1527
+ "internalType": "bool",
1528
+ "name": "",
1529
+ "type": "bool"
1530
+ }
1531
+ ],
1532
+ "stateMutability": "view",
1533
+ "type": "function"
1534
+ },
1535
+ {
1536
+ "inputs": [],
1537
+ "name": "initialized",
1538
+ "outputs": [
1539
+ {
1540
+ "internalType": "bool",
1541
+ "name": "",
1542
+ "type": "bool"
1543
+ }
1544
+ ],
1545
+ "stateMutability": "view",
1546
+ "type": "function"
1547
+ },
1548
+ {
1549
+ "inputs": [
1550
+ {
1551
+ "internalType": "bytes4",
1552
+ "name": "functionSelector",
1553
+ "type": "bytes4"
1554
+ },
1555
+ {
1556
+ "internalType": "enum EngineBlox.TxAction",
1557
+ "name": "action",
1558
+ "type": "uint8"
1559
+ }
1560
+ ],
1561
+ "name": "isActionSupportedByFunction",
1562
+ "outputs": [
1563
+ {
1564
+ "internalType": "bool",
1565
+ "name": "",
1566
+ "type": "bool"
1567
+ }
1568
+ ],
1569
+ "stateMutability": "view",
1570
+ "type": "function"
1571
+ },
1572
+ {
1573
+ "inputs": [],
1574
+ "name": "owner",
1575
+ "outputs": [
1576
+ {
1577
+ "internalType": "address",
1578
+ "name": "",
1579
+ "type": "address"
1580
+ }
1581
+ ],
1582
+ "stateMutability": "view",
1583
+ "type": "function"
1584
+ },
1585
+ {
1586
+ "inputs": [
1587
+ {
1588
+ "internalType": "bytes4",
1589
+ "name": "interfaceId",
1590
+ "type": "bytes4"
1591
+ }
1592
+ ],
1593
+ "name": "supportsInterface",
1594
+ "outputs": [
1595
+ {
1596
+ "internalType": "bool",
1597
+ "name": "",
1598
+ "type": "bool"
1599
+ }
1600
+ ],
1601
+ "stateMutability": "view",
1602
+ "type": "function"
1603
+ },
1604
+ {
1605
+ "inputs": [
1606
+ {
1607
+ "components": [
1608
+ {
1609
+ "components": [
1610
+ {
1611
+ "internalType": "uint256",
1612
+ "name": "txId",
1613
+ "type": "uint256"
1614
+ },
1615
+ {
1616
+ "internalType": "uint256",
1617
+ "name": "releaseTime",
1618
+ "type": "uint256"
1619
+ },
1620
+ {
1621
+ "internalType": "enum EngineBlox.TxStatus",
1622
+ "name": "status",
1623
+ "type": "uint8"
1624
+ },
1625
+ {
1626
+ "components": [
1627
+ {
1628
+ "internalType": "address",
1629
+ "name": "requester",
1630
+ "type": "address"
1631
+ },
1632
+ {
1633
+ "internalType": "address",
1634
+ "name": "target",
1635
+ "type": "address"
1636
+ },
1637
+ {
1638
+ "internalType": "uint256",
1639
+ "name": "value",
1640
+ "type": "uint256"
1641
+ },
1642
+ {
1643
+ "internalType": "uint256",
1644
+ "name": "gasLimit",
1645
+ "type": "uint256"
1646
+ },
1647
+ {
1648
+ "internalType": "bytes32",
1649
+ "name": "operationType",
1650
+ "type": "bytes32"
1651
+ },
1652
+ {
1653
+ "internalType": "bytes4",
1654
+ "name": "executionSelector",
1655
+ "type": "bytes4"
1656
+ },
1657
+ {
1658
+ "internalType": "bytes",
1659
+ "name": "executionParams",
1660
+ "type": "bytes"
1661
+ }
1662
+ ],
1663
+ "internalType": "struct EngineBlox.TxParams",
1664
+ "name": "params",
1665
+ "type": "tuple"
1666
+ },
1667
+ {
1668
+ "internalType": "bytes32",
1669
+ "name": "message",
1670
+ "type": "bytes32"
1671
+ },
1672
+ {
1673
+ "internalType": "bytes",
1674
+ "name": "result",
1675
+ "type": "bytes"
1676
+ },
1677
+ {
1678
+ "components": [
1679
+ {
1680
+ "internalType": "address",
1681
+ "name": "recipient",
1682
+ "type": "address"
1683
+ },
1684
+ {
1685
+ "internalType": "uint256",
1686
+ "name": "nativeTokenAmount",
1687
+ "type": "uint256"
1688
+ },
1689
+ {
1690
+ "internalType": "address",
1691
+ "name": "erc20TokenAddress",
1692
+ "type": "address"
1693
+ },
1694
+ {
1695
+ "internalType": "uint256",
1696
+ "name": "erc20TokenAmount",
1697
+ "type": "uint256"
1698
+ }
1699
+ ],
1700
+ "internalType": "struct EngineBlox.PaymentDetails",
1701
+ "name": "payment",
1702
+ "type": "tuple"
1703
+ }
1704
+ ],
1705
+ "internalType": "struct EngineBlox.TxRecord",
1706
+ "name": "txRecord",
1707
+ "type": "tuple"
1708
+ },
1709
+ {
1710
+ "components": [
1711
+ {
1712
+ "internalType": "uint256",
1713
+ "name": "chainId",
1714
+ "type": "uint256"
1715
+ },
1716
+ {
1717
+ "internalType": "uint256",
1718
+ "name": "nonce",
1719
+ "type": "uint256"
1720
+ },
1721
+ {
1722
+ "internalType": "address",
1723
+ "name": "handlerContract",
1724
+ "type": "address"
1725
+ },
1726
+ {
1727
+ "internalType": "bytes4",
1728
+ "name": "handlerSelector",
1729
+ "type": "bytes4"
1730
+ },
1731
+ {
1732
+ "internalType": "enum EngineBlox.TxAction",
1733
+ "name": "action",
1734
+ "type": "uint8"
1735
+ },
1736
+ {
1737
+ "internalType": "uint256",
1738
+ "name": "deadline",
1739
+ "type": "uint256"
1740
+ },
1741
+ {
1742
+ "internalType": "uint256",
1743
+ "name": "maxGasPrice",
1744
+ "type": "uint256"
1745
+ },
1746
+ {
1747
+ "internalType": "address",
1748
+ "name": "signer",
1749
+ "type": "address"
1750
+ }
1751
+ ],
1752
+ "internalType": "struct EngineBlox.MetaTxParams",
1753
+ "name": "params",
1754
+ "type": "tuple"
1755
+ },
1756
+ {
1757
+ "internalType": "bytes32",
1758
+ "name": "message",
1759
+ "type": "bytes32"
1760
+ },
1761
+ {
1762
+ "internalType": "bytes",
1763
+ "name": "signature",
1764
+ "type": "bytes"
1765
+ },
1766
+ {
1767
+ "internalType": "bytes",
1768
+ "name": "data",
1769
+ "type": "bytes"
1770
+ }
1771
+ ],
1772
+ "internalType": "struct EngineBlox.MetaTransaction",
1773
+ "name": "metaTx",
1774
+ "type": "tuple"
1775
+ }
1776
+ ],
1777
+ "name": "transferOwnershipApprovalWithMetaTx",
1778
+ "outputs": [
1779
+ {
1780
+ "internalType": "uint256",
1781
+ "name": "",
1782
+ "type": "uint256"
1783
+ }
1784
+ ],
1785
+ "stateMutability": "nonpayable",
1786
+ "type": "function"
1787
+ },
1788
+ {
1789
+ "inputs": [
1790
+ {
1791
+ "internalType": "uint256",
1792
+ "name": "txId",
1793
+ "type": "uint256"
1794
+ }
1795
+ ],
1796
+ "name": "transferOwnershipCancellation",
1797
+ "outputs": [
1798
+ {
1799
+ "internalType": "uint256",
1800
+ "name": "",
1801
+ "type": "uint256"
1802
+ }
1803
+ ],
1804
+ "stateMutability": "nonpayable",
1805
+ "type": "function"
1806
+ },
1807
+ {
1808
+ "inputs": [
1809
+ {
1810
+ "components": [
1811
+ {
1812
+ "components": [
1813
+ {
1814
+ "internalType": "uint256",
1815
+ "name": "txId",
1816
+ "type": "uint256"
1817
+ },
1818
+ {
1819
+ "internalType": "uint256",
1820
+ "name": "releaseTime",
1821
+ "type": "uint256"
1822
+ },
1823
+ {
1824
+ "internalType": "enum EngineBlox.TxStatus",
1825
+ "name": "status",
1826
+ "type": "uint8"
1827
+ },
1828
+ {
1829
+ "components": [
1830
+ {
1831
+ "internalType": "address",
1832
+ "name": "requester",
1833
+ "type": "address"
1834
+ },
1835
+ {
1836
+ "internalType": "address",
1837
+ "name": "target",
1838
+ "type": "address"
1839
+ },
1840
+ {
1841
+ "internalType": "uint256",
1842
+ "name": "value",
1843
+ "type": "uint256"
1844
+ },
1845
+ {
1846
+ "internalType": "uint256",
1847
+ "name": "gasLimit",
1848
+ "type": "uint256"
1849
+ },
1850
+ {
1851
+ "internalType": "bytes32",
1852
+ "name": "operationType",
1853
+ "type": "bytes32"
1854
+ },
1855
+ {
1856
+ "internalType": "bytes4",
1857
+ "name": "executionSelector",
1858
+ "type": "bytes4"
1859
+ },
1860
+ {
1861
+ "internalType": "bytes",
1862
+ "name": "executionParams",
1863
+ "type": "bytes"
1864
+ }
1865
+ ],
1866
+ "internalType": "struct EngineBlox.TxParams",
1867
+ "name": "params",
1868
+ "type": "tuple"
1869
+ },
1870
+ {
1871
+ "internalType": "bytes32",
1872
+ "name": "message",
1873
+ "type": "bytes32"
1874
+ },
1875
+ {
1876
+ "internalType": "bytes",
1877
+ "name": "result",
1878
+ "type": "bytes"
1879
+ },
1880
+ {
1881
+ "components": [
1882
+ {
1883
+ "internalType": "address",
1884
+ "name": "recipient",
1885
+ "type": "address"
1886
+ },
1887
+ {
1888
+ "internalType": "uint256",
1889
+ "name": "nativeTokenAmount",
1890
+ "type": "uint256"
1891
+ },
1892
+ {
1893
+ "internalType": "address",
1894
+ "name": "erc20TokenAddress",
1895
+ "type": "address"
1896
+ },
1897
+ {
1898
+ "internalType": "uint256",
1899
+ "name": "erc20TokenAmount",
1900
+ "type": "uint256"
1901
+ }
1902
+ ],
1903
+ "internalType": "struct EngineBlox.PaymentDetails",
1904
+ "name": "payment",
1905
+ "type": "tuple"
1906
+ }
1907
+ ],
1908
+ "internalType": "struct EngineBlox.TxRecord",
1909
+ "name": "txRecord",
1910
+ "type": "tuple"
1911
+ },
1912
+ {
1913
+ "components": [
1914
+ {
1915
+ "internalType": "uint256",
1916
+ "name": "chainId",
1917
+ "type": "uint256"
1918
+ },
1919
+ {
1920
+ "internalType": "uint256",
1921
+ "name": "nonce",
1922
+ "type": "uint256"
1923
+ },
1924
+ {
1925
+ "internalType": "address",
1926
+ "name": "handlerContract",
1927
+ "type": "address"
1928
+ },
1929
+ {
1930
+ "internalType": "bytes4",
1931
+ "name": "handlerSelector",
1932
+ "type": "bytes4"
1933
+ },
1934
+ {
1935
+ "internalType": "enum EngineBlox.TxAction",
1936
+ "name": "action",
1937
+ "type": "uint8"
1938
+ },
1939
+ {
1940
+ "internalType": "uint256",
1941
+ "name": "deadline",
1942
+ "type": "uint256"
1943
+ },
1944
+ {
1945
+ "internalType": "uint256",
1946
+ "name": "maxGasPrice",
1947
+ "type": "uint256"
1948
+ },
1949
+ {
1950
+ "internalType": "address",
1951
+ "name": "signer",
1952
+ "type": "address"
1953
+ }
1954
+ ],
1955
+ "internalType": "struct EngineBlox.MetaTxParams",
1956
+ "name": "params",
1957
+ "type": "tuple"
1958
+ },
1959
+ {
1960
+ "internalType": "bytes32",
1961
+ "name": "message",
1962
+ "type": "bytes32"
1963
+ },
1964
+ {
1965
+ "internalType": "bytes",
1966
+ "name": "signature",
1967
+ "type": "bytes"
1968
+ },
1969
+ {
1970
+ "internalType": "bytes",
1971
+ "name": "data",
1972
+ "type": "bytes"
1973
+ }
1974
+ ],
1975
+ "internalType": "struct EngineBlox.MetaTransaction",
1976
+ "name": "metaTx",
1977
+ "type": "tuple"
1978
+ }
1979
+ ],
1980
+ "name": "transferOwnershipCancellationWithMetaTx",
1981
+ "outputs": [
1982
+ {
1983
+ "internalType": "uint256",
1984
+ "name": "",
1985
+ "type": "uint256"
1986
+ }
1987
+ ],
1988
+ "stateMutability": "nonpayable",
1989
+ "type": "function"
1990
+ },
1991
+ {
1992
+ "inputs": [
1993
+ {
1994
+ "internalType": "uint256",
1995
+ "name": "txId",
1996
+ "type": "uint256"
1997
+ }
1998
+ ],
1999
+ "name": "transferOwnershipDelayedApproval",
2000
+ "outputs": [
2001
+ {
2002
+ "internalType": "uint256",
2003
+ "name": "",
2004
+ "type": "uint256"
2005
+ }
2006
+ ],
2007
+ "stateMutability": "nonpayable",
2008
+ "type": "function"
2009
+ },
2010
+ {
2011
+ "inputs": [],
2012
+ "name": "transferOwnershipRequest",
2013
+ "outputs": [
2014
+ {
2015
+ "internalType": "uint256",
2016
+ "name": "txId",
2017
+ "type": "uint256"
2018
+ }
2019
+ ],
2020
+ "stateMutability": "nonpayable",
2021
+ "type": "function"
2022
+ },
2023
+ {
2024
+ "inputs": [
2025
+ {
2026
+ "components": [
2027
+ {
2028
+ "components": [
2029
+ {
2030
+ "internalType": "uint256",
2031
+ "name": "txId",
2032
+ "type": "uint256"
2033
+ },
2034
+ {
2035
+ "internalType": "uint256",
2036
+ "name": "releaseTime",
2037
+ "type": "uint256"
2038
+ },
2039
+ {
2040
+ "internalType": "enum EngineBlox.TxStatus",
2041
+ "name": "status",
2042
+ "type": "uint8"
2043
+ },
2044
+ {
2045
+ "components": [
2046
+ {
2047
+ "internalType": "address",
2048
+ "name": "requester",
2049
+ "type": "address"
2050
+ },
2051
+ {
2052
+ "internalType": "address",
2053
+ "name": "target",
2054
+ "type": "address"
2055
+ },
2056
+ {
2057
+ "internalType": "uint256",
2058
+ "name": "value",
2059
+ "type": "uint256"
2060
+ },
2061
+ {
2062
+ "internalType": "uint256",
2063
+ "name": "gasLimit",
2064
+ "type": "uint256"
2065
+ },
2066
+ {
2067
+ "internalType": "bytes32",
2068
+ "name": "operationType",
2069
+ "type": "bytes32"
2070
+ },
2071
+ {
2072
+ "internalType": "bytes4",
2073
+ "name": "executionSelector",
2074
+ "type": "bytes4"
2075
+ },
2076
+ {
2077
+ "internalType": "bytes",
2078
+ "name": "executionParams",
2079
+ "type": "bytes"
2080
+ }
2081
+ ],
2082
+ "internalType": "struct EngineBlox.TxParams",
2083
+ "name": "params",
2084
+ "type": "tuple"
2085
+ },
2086
+ {
2087
+ "internalType": "bytes32",
2088
+ "name": "message",
2089
+ "type": "bytes32"
2090
+ },
2091
+ {
2092
+ "internalType": "bytes",
2093
+ "name": "result",
2094
+ "type": "bytes"
2095
+ },
2096
+ {
2097
+ "components": [
2098
+ {
2099
+ "internalType": "address",
2100
+ "name": "recipient",
2101
+ "type": "address"
2102
+ },
2103
+ {
2104
+ "internalType": "uint256",
2105
+ "name": "nativeTokenAmount",
2106
+ "type": "uint256"
2107
+ },
2108
+ {
2109
+ "internalType": "address",
2110
+ "name": "erc20TokenAddress",
2111
+ "type": "address"
2112
+ },
2113
+ {
2114
+ "internalType": "uint256",
2115
+ "name": "erc20TokenAmount",
2116
+ "type": "uint256"
2117
+ }
2118
+ ],
2119
+ "internalType": "struct EngineBlox.PaymentDetails",
2120
+ "name": "payment",
2121
+ "type": "tuple"
2122
+ }
2123
+ ],
2124
+ "internalType": "struct EngineBlox.TxRecord",
2125
+ "name": "txRecord",
2126
+ "type": "tuple"
2127
+ },
2128
+ {
2129
+ "components": [
2130
+ {
2131
+ "internalType": "uint256",
2132
+ "name": "chainId",
2133
+ "type": "uint256"
2134
+ },
2135
+ {
2136
+ "internalType": "uint256",
2137
+ "name": "nonce",
2138
+ "type": "uint256"
2139
+ },
2140
+ {
2141
+ "internalType": "address",
2142
+ "name": "handlerContract",
2143
+ "type": "address"
2144
+ },
2145
+ {
2146
+ "internalType": "bytes4",
2147
+ "name": "handlerSelector",
2148
+ "type": "bytes4"
2149
+ },
2150
+ {
2151
+ "internalType": "enum EngineBlox.TxAction",
2152
+ "name": "action",
2153
+ "type": "uint8"
2154
+ },
2155
+ {
2156
+ "internalType": "uint256",
2157
+ "name": "deadline",
2158
+ "type": "uint256"
2159
+ },
2160
+ {
2161
+ "internalType": "uint256",
2162
+ "name": "maxGasPrice",
2163
+ "type": "uint256"
2164
+ },
2165
+ {
2166
+ "internalType": "address",
2167
+ "name": "signer",
2168
+ "type": "address"
2169
+ }
2170
+ ],
2171
+ "internalType": "struct EngineBlox.MetaTxParams",
2172
+ "name": "params",
2173
+ "type": "tuple"
2174
+ },
2175
+ {
2176
+ "internalType": "bytes32",
2177
+ "name": "message",
2178
+ "type": "bytes32"
2179
+ },
2180
+ {
2181
+ "internalType": "bytes",
2182
+ "name": "signature",
2183
+ "type": "bytes"
2184
+ },
2185
+ {
2186
+ "internalType": "bytes",
2187
+ "name": "data",
2188
+ "type": "bytes"
2189
+ }
2190
+ ],
2191
+ "internalType": "struct EngineBlox.MetaTransaction",
2192
+ "name": "metaTx",
2193
+ "type": "tuple"
2194
+ }
2195
+ ],
2196
+ "name": "updateBroadcasterApprovalWithMetaTx",
2197
+ "outputs": [
2198
+ {
2199
+ "internalType": "uint256",
2200
+ "name": "",
2201
+ "type": "uint256"
2202
+ }
2203
+ ],
2204
+ "stateMutability": "nonpayable",
2205
+ "type": "function"
2206
+ },
2207
+ {
2208
+ "inputs": [
2209
+ {
2210
+ "internalType": "uint256",
2211
+ "name": "txId",
2212
+ "type": "uint256"
2213
+ }
2214
+ ],
2215
+ "name": "updateBroadcasterCancellation",
2216
+ "outputs": [
2217
+ {
2218
+ "internalType": "uint256",
2219
+ "name": "",
2220
+ "type": "uint256"
2221
+ }
2222
+ ],
2223
+ "stateMutability": "nonpayable",
2224
+ "type": "function"
2225
+ },
2226
+ {
2227
+ "inputs": [
2228
+ {
2229
+ "components": [
2230
+ {
2231
+ "components": [
2232
+ {
2233
+ "internalType": "uint256",
2234
+ "name": "txId",
2235
+ "type": "uint256"
2236
+ },
2237
+ {
2238
+ "internalType": "uint256",
2239
+ "name": "releaseTime",
2240
+ "type": "uint256"
2241
+ },
2242
+ {
2243
+ "internalType": "enum EngineBlox.TxStatus",
2244
+ "name": "status",
2245
+ "type": "uint8"
2246
+ },
2247
+ {
2248
+ "components": [
2249
+ {
2250
+ "internalType": "address",
2251
+ "name": "requester",
2252
+ "type": "address"
2253
+ },
2254
+ {
2255
+ "internalType": "address",
2256
+ "name": "target",
2257
+ "type": "address"
2258
+ },
2259
+ {
2260
+ "internalType": "uint256",
2261
+ "name": "value",
2262
+ "type": "uint256"
2263
+ },
2264
+ {
2265
+ "internalType": "uint256",
2266
+ "name": "gasLimit",
2267
+ "type": "uint256"
2268
+ },
2269
+ {
2270
+ "internalType": "bytes32",
2271
+ "name": "operationType",
2272
+ "type": "bytes32"
2273
+ },
2274
+ {
2275
+ "internalType": "bytes4",
2276
+ "name": "executionSelector",
2277
+ "type": "bytes4"
2278
+ },
2279
+ {
2280
+ "internalType": "bytes",
2281
+ "name": "executionParams",
2282
+ "type": "bytes"
2283
+ }
2284
+ ],
2285
+ "internalType": "struct EngineBlox.TxParams",
2286
+ "name": "params",
2287
+ "type": "tuple"
2288
+ },
2289
+ {
2290
+ "internalType": "bytes32",
2291
+ "name": "message",
2292
+ "type": "bytes32"
2293
+ },
2294
+ {
2295
+ "internalType": "bytes",
2296
+ "name": "result",
2297
+ "type": "bytes"
2298
+ },
2299
+ {
2300
+ "components": [
2301
+ {
2302
+ "internalType": "address",
2303
+ "name": "recipient",
2304
+ "type": "address"
2305
+ },
2306
+ {
2307
+ "internalType": "uint256",
2308
+ "name": "nativeTokenAmount",
2309
+ "type": "uint256"
2310
+ },
2311
+ {
2312
+ "internalType": "address",
2313
+ "name": "erc20TokenAddress",
2314
+ "type": "address"
2315
+ },
2316
+ {
2317
+ "internalType": "uint256",
2318
+ "name": "erc20TokenAmount",
2319
+ "type": "uint256"
2320
+ }
2321
+ ],
2322
+ "internalType": "struct EngineBlox.PaymentDetails",
2323
+ "name": "payment",
2324
+ "type": "tuple"
2325
+ }
2326
+ ],
2327
+ "internalType": "struct EngineBlox.TxRecord",
2328
+ "name": "txRecord",
2329
+ "type": "tuple"
2330
+ },
2331
+ {
2332
+ "components": [
2333
+ {
2334
+ "internalType": "uint256",
2335
+ "name": "chainId",
2336
+ "type": "uint256"
2337
+ },
2338
+ {
2339
+ "internalType": "uint256",
2340
+ "name": "nonce",
2341
+ "type": "uint256"
2342
+ },
2343
+ {
2344
+ "internalType": "address",
2345
+ "name": "handlerContract",
2346
+ "type": "address"
2347
+ },
2348
+ {
2349
+ "internalType": "bytes4",
2350
+ "name": "handlerSelector",
2351
+ "type": "bytes4"
2352
+ },
2353
+ {
2354
+ "internalType": "enum EngineBlox.TxAction",
2355
+ "name": "action",
2356
+ "type": "uint8"
2357
+ },
2358
+ {
2359
+ "internalType": "uint256",
2360
+ "name": "deadline",
2361
+ "type": "uint256"
2362
+ },
2363
+ {
2364
+ "internalType": "uint256",
2365
+ "name": "maxGasPrice",
2366
+ "type": "uint256"
2367
+ },
2368
+ {
2369
+ "internalType": "address",
2370
+ "name": "signer",
2371
+ "type": "address"
2372
+ }
2373
+ ],
2374
+ "internalType": "struct EngineBlox.MetaTxParams",
2375
+ "name": "params",
2376
+ "type": "tuple"
2377
+ },
2378
+ {
2379
+ "internalType": "bytes32",
2380
+ "name": "message",
2381
+ "type": "bytes32"
2382
+ },
2383
+ {
2384
+ "internalType": "bytes",
2385
+ "name": "signature",
2386
+ "type": "bytes"
2387
+ },
2388
+ {
2389
+ "internalType": "bytes",
2390
+ "name": "data",
2391
+ "type": "bytes"
2392
+ }
2393
+ ],
2394
+ "internalType": "struct EngineBlox.MetaTransaction",
2395
+ "name": "metaTx",
2396
+ "type": "tuple"
2397
+ }
2398
+ ],
2399
+ "name": "updateBroadcasterCancellationWithMetaTx",
2400
+ "outputs": [
2401
+ {
2402
+ "internalType": "uint256",
2403
+ "name": "",
2404
+ "type": "uint256"
2405
+ }
2406
+ ],
2407
+ "stateMutability": "nonpayable",
2408
+ "type": "function"
2409
+ },
2410
+ {
2411
+ "inputs": [
2412
+ {
2413
+ "internalType": "uint256",
2414
+ "name": "txId",
2415
+ "type": "uint256"
2416
+ }
2417
+ ],
2418
+ "name": "updateBroadcasterDelayedApproval",
2419
+ "outputs": [
2420
+ {
2421
+ "internalType": "uint256",
2422
+ "name": "",
2423
+ "type": "uint256"
2424
+ }
2425
+ ],
2426
+ "stateMutability": "nonpayable",
2427
+ "type": "function"
2428
+ },
2429
+ {
2430
+ "inputs": [
2431
+ {
2432
+ "internalType": "address",
2433
+ "name": "newBroadcaster",
2434
+ "type": "address"
2435
+ },
2436
+ {
2437
+ "internalType": "uint256",
2438
+ "name": "location",
2439
+ "type": "uint256"
2440
+ }
2441
+ ],
2442
+ "name": "updateBroadcasterRequest",
2443
+ "outputs": [
2444
+ {
2445
+ "internalType": "uint256",
2446
+ "name": "txId",
2447
+ "type": "uint256"
2448
+ }
2449
+ ],
2450
+ "stateMutability": "nonpayable",
2451
+ "type": "function"
2452
+ },
2453
+ {
2454
+ "inputs": [
2455
+ {
2456
+ "components": [
2457
+ {
2458
+ "components": [
2459
+ {
2460
+ "internalType": "uint256",
2461
+ "name": "txId",
2462
+ "type": "uint256"
2463
+ },
2464
+ {
2465
+ "internalType": "uint256",
2466
+ "name": "releaseTime",
2467
+ "type": "uint256"
2468
+ },
2469
+ {
2470
+ "internalType": "enum EngineBlox.TxStatus",
2471
+ "name": "status",
2472
+ "type": "uint8"
2473
+ },
2474
+ {
2475
+ "components": [
2476
+ {
2477
+ "internalType": "address",
2478
+ "name": "requester",
2479
+ "type": "address"
2480
+ },
2481
+ {
2482
+ "internalType": "address",
2483
+ "name": "target",
2484
+ "type": "address"
2485
+ },
2486
+ {
2487
+ "internalType": "uint256",
2488
+ "name": "value",
2489
+ "type": "uint256"
2490
+ },
2491
+ {
2492
+ "internalType": "uint256",
2493
+ "name": "gasLimit",
2494
+ "type": "uint256"
2495
+ },
2496
+ {
2497
+ "internalType": "bytes32",
2498
+ "name": "operationType",
2499
+ "type": "bytes32"
2500
+ },
2501
+ {
2502
+ "internalType": "bytes4",
2503
+ "name": "executionSelector",
2504
+ "type": "bytes4"
2505
+ },
2506
+ {
2507
+ "internalType": "bytes",
2508
+ "name": "executionParams",
2509
+ "type": "bytes"
2510
+ }
2511
+ ],
2512
+ "internalType": "struct EngineBlox.TxParams",
2513
+ "name": "params",
2514
+ "type": "tuple"
2515
+ },
2516
+ {
2517
+ "internalType": "bytes32",
2518
+ "name": "message",
2519
+ "type": "bytes32"
2520
+ },
2521
+ {
2522
+ "internalType": "bytes",
2523
+ "name": "result",
2524
+ "type": "bytes"
2525
+ },
2526
+ {
2527
+ "components": [
2528
+ {
2529
+ "internalType": "address",
2530
+ "name": "recipient",
2531
+ "type": "address"
2532
+ },
2533
+ {
2534
+ "internalType": "uint256",
2535
+ "name": "nativeTokenAmount",
2536
+ "type": "uint256"
2537
+ },
2538
+ {
2539
+ "internalType": "address",
2540
+ "name": "erc20TokenAddress",
2541
+ "type": "address"
2542
+ },
2543
+ {
2544
+ "internalType": "uint256",
2545
+ "name": "erc20TokenAmount",
2546
+ "type": "uint256"
2547
+ }
2548
+ ],
2549
+ "internalType": "struct EngineBlox.PaymentDetails",
2550
+ "name": "payment",
2551
+ "type": "tuple"
2552
+ }
2553
+ ],
2554
+ "internalType": "struct EngineBlox.TxRecord",
2555
+ "name": "txRecord",
2556
+ "type": "tuple"
2557
+ },
2558
+ {
2559
+ "components": [
2560
+ {
2561
+ "internalType": "uint256",
2562
+ "name": "chainId",
2563
+ "type": "uint256"
2564
+ },
2565
+ {
2566
+ "internalType": "uint256",
2567
+ "name": "nonce",
2568
+ "type": "uint256"
2569
+ },
2570
+ {
2571
+ "internalType": "address",
2572
+ "name": "handlerContract",
2573
+ "type": "address"
2574
+ },
2575
+ {
2576
+ "internalType": "bytes4",
2577
+ "name": "handlerSelector",
2578
+ "type": "bytes4"
2579
+ },
2580
+ {
2581
+ "internalType": "enum EngineBlox.TxAction",
2582
+ "name": "action",
2583
+ "type": "uint8"
2584
+ },
2585
+ {
2586
+ "internalType": "uint256",
2587
+ "name": "deadline",
2588
+ "type": "uint256"
2589
+ },
2590
+ {
2591
+ "internalType": "uint256",
2592
+ "name": "maxGasPrice",
2593
+ "type": "uint256"
2594
+ },
2595
+ {
2596
+ "internalType": "address",
2597
+ "name": "signer",
2598
+ "type": "address"
2599
+ }
2600
+ ],
2601
+ "internalType": "struct EngineBlox.MetaTxParams",
2602
+ "name": "params",
2603
+ "type": "tuple"
2604
+ },
2605
+ {
2606
+ "internalType": "bytes32",
2607
+ "name": "message",
2608
+ "type": "bytes32"
2609
+ },
2610
+ {
2611
+ "internalType": "bytes",
2612
+ "name": "signature",
2613
+ "type": "bytes"
2614
+ },
2615
+ {
2616
+ "internalType": "bytes",
2617
+ "name": "data",
2618
+ "type": "bytes"
2619
+ }
2620
+ ],
2621
+ "internalType": "struct EngineBlox.MetaTransaction",
2622
+ "name": "metaTx",
2623
+ "type": "tuple"
2624
+ }
2625
+ ],
2626
+ "name": "updateRecoveryRequestAndApprove",
2627
+ "outputs": [
2628
+ {
2629
+ "internalType": "uint256",
2630
+ "name": "",
2631
+ "type": "uint256"
2632
+ }
2633
+ ],
2634
+ "stateMutability": "nonpayable",
2635
+ "type": "function"
2636
+ },
2637
+ {
2638
+ "inputs": [
2639
+ {
2640
+ "components": [
2641
+ {
2642
+ "components": [
2643
+ {
2644
+ "internalType": "uint256",
2645
+ "name": "txId",
2646
+ "type": "uint256"
2647
+ },
2648
+ {
2649
+ "internalType": "uint256",
2650
+ "name": "releaseTime",
2651
+ "type": "uint256"
2652
+ },
2653
+ {
2654
+ "internalType": "enum EngineBlox.TxStatus",
2655
+ "name": "status",
2656
+ "type": "uint8"
2657
+ },
2658
+ {
2659
+ "components": [
2660
+ {
2661
+ "internalType": "address",
2662
+ "name": "requester",
2663
+ "type": "address"
2664
+ },
2665
+ {
2666
+ "internalType": "address",
2667
+ "name": "target",
2668
+ "type": "address"
2669
+ },
2670
+ {
2671
+ "internalType": "uint256",
2672
+ "name": "value",
2673
+ "type": "uint256"
2674
+ },
2675
+ {
2676
+ "internalType": "uint256",
2677
+ "name": "gasLimit",
2678
+ "type": "uint256"
2679
+ },
2680
+ {
2681
+ "internalType": "bytes32",
2682
+ "name": "operationType",
2683
+ "type": "bytes32"
2684
+ },
2685
+ {
2686
+ "internalType": "bytes4",
2687
+ "name": "executionSelector",
2688
+ "type": "bytes4"
2689
+ },
2690
+ {
2691
+ "internalType": "bytes",
2692
+ "name": "executionParams",
2693
+ "type": "bytes"
2694
+ }
2695
+ ],
2696
+ "internalType": "struct EngineBlox.TxParams",
2697
+ "name": "params",
2698
+ "type": "tuple"
2699
+ },
2700
+ {
2701
+ "internalType": "bytes32",
2702
+ "name": "message",
2703
+ "type": "bytes32"
2704
+ },
2705
+ {
2706
+ "internalType": "bytes",
2707
+ "name": "result",
2708
+ "type": "bytes"
2709
+ },
2710
+ {
2711
+ "components": [
2712
+ {
2713
+ "internalType": "address",
2714
+ "name": "recipient",
2715
+ "type": "address"
2716
+ },
2717
+ {
2718
+ "internalType": "uint256",
2719
+ "name": "nativeTokenAmount",
2720
+ "type": "uint256"
2721
+ },
2722
+ {
2723
+ "internalType": "address",
2724
+ "name": "erc20TokenAddress",
2725
+ "type": "address"
2726
+ },
2727
+ {
2728
+ "internalType": "uint256",
2729
+ "name": "erc20TokenAmount",
2730
+ "type": "uint256"
2731
+ }
2732
+ ],
2733
+ "internalType": "struct EngineBlox.PaymentDetails",
2734
+ "name": "payment",
2735
+ "type": "tuple"
2736
+ }
2737
+ ],
2738
+ "internalType": "struct EngineBlox.TxRecord",
2739
+ "name": "txRecord",
2740
+ "type": "tuple"
2741
+ },
2742
+ {
2743
+ "components": [
2744
+ {
2745
+ "internalType": "uint256",
2746
+ "name": "chainId",
2747
+ "type": "uint256"
2748
+ },
2749
+ {
2750
+ "internalType": "uint256",
2751
+ "name": "nonce",
2752
+ "type": "uint256"
2753
+ },
2754
+ {
2755
+ "internalType": "address",
2756
+ "name": "handlerContract",
2757
+ "type": "address"
2758
+ },
2759
+ {
2760
+ "internalType": "bytes4",
2761
+ "name": "handlerSelector",
2762
+ "type": "bytes4"
2763
+ },
2764
+ {
2765
+ "internalType": "enum EngineBlox.TxAction",
2766
+ "name": "action",
2767
+ "type": "uint8"
2768
+ },
2769
+ {
2770
+ "internalType": "uint256",
2771
+ "name": "deadline",
2772
+ "type": "uint256"
2773
+ },
2774
+ {
2775
+ "internalType": "uint256",
2776
+ "name": "maxGasPrice",
2777
+ "type": "uint256"
2778
+ },
2779
+ {
2780
+ "internalType": "address",
2781
+ "name": "signer",
2782
+ "type": "address"
2783
+ }
2784
+ ],
2785
+ "internalType": "struct EngineBlox.MetaTxParams",
2786
+ "name": "params",
2787
+ "type": "tuple"
2788
+ },
2789
+ {
2790
+ "internalType": "bytes32",
2791
+ "name": "message",
2792
+ "type": "bytes32"
2793
+ },
2794
+ {
2795
+ "internalType": "bytes",
2796
+ "name": "signature",
2797
+ "type": "bytes"
2798
+ },
2799
+ {
2800
+ "internalType": "bytes",
2801
+ "name": "data",
2802
+ "type": "bytes"
2803
+ }
2804
+ ],
2805
+ "internalType": "struct EngineBlox.MetaTransaction",
2806
+ "name": "metaTx",
2807
+ "type": "tuple"
2808
+ }
2809
+ ],
2810
+ "name": "updateTimeLockRequestAndApprove",
2811
+ "outputs": [
2812
+ {
2813
+ "internalType": "uint256",
2814
+ "name": "",
2815
+ "type": "uint256"
2816
+ }
2817
+ ],
2818
+ "stateMutability": "nonpayable",
2819
+ "type": "function"
2820
+ },
2821
+ {
2822
+ "stateMutability": "payable",
2823
+ "type": "receive"
2824
+ },
2825
+ {
2826
+ "inputs": [
2827
+ {
2828
+ "internalType": "address",
2829
+ "name": "initialOwner",
2830
+ "type": "address"
2831
+ },
2832
+ {
2833
+ "internalType": "address",
2834
+ "name": "broadcaster",
2835
+ "type": "address"
2836
+ },
2837
+ {
2838
+ "internalType": "address",
2839
+ "name": "recovery",
2840
+ "type": "address"
2841
+ },
2842
+ {
2843
+ "internalType": "uint256",
2844
+ "name": "timeLockPeriodSec",
2845
+ "type": "uint256"
2846
+ },
2847
+ {
2848
+ "internalType": "address",
2849
+ "name": "eventForwarder",
2850
+ "type": "address"
2851
+ }
2852
+ ],
2853
+ "name": "initialize",
2854
+ "outputs": [],
2855
+ "stateMutability": "nonpayable",
2856
+ "type": "function"
2857
+ },
2858
+ {
2859
+ "inputs": [],
2860
+ "name": "getEthBalance",
2861
+ "outputs": [
2862
+ {
2863
+ "internalType": "uint256",
2864
+ "name": "",
2865
+ "type": "uint256"
2866
+ }
2867
+ ],
2868
+ "stateMutability": "view",
2869
+ "type": "function"
2870
+ },
2871
+ {
2872
+ "inputs": [
2873
+ {
2874
+ "internalType": "address",
2875
+ "name": "token",
2876
+ "type": "address"
2877
+ }
2878
+ ],
2879
+ "name": "getTokenBalance",
2880
+ "outputs": [
2881
+ {
2882
+ "internalType": "uint256",
2883
+ "name": "",
2884
+ "type": "uint256"
2885
+ }
2886
+ ],
2887
+ "stateMutability": "view",
2888
+ "type": "function"
2889
+ },
2890
+ {
2891
+ "inputs": [
2892
+ {
2893
+ "internalType": "address",
2894
+ "name": "to",
2895
+ "type": "address"
2896
+ },
2897
+ {
2898
+ "internalType": "uint256",
2899
+ "name": "amount",
2900
+ "type": "uint256"
2901
+ }
2902
+ ],
2903
+ "name": "withdrawEthRequest",
2904
+ "outputs": [
2905
+ {
2906
+ "internalType": "uint256",
2907
+ "name": "txId",
2908
+ "type": "uint256"
2909
+ }
2910
+ ],
2911
+ "stateMutability": "nonpayable",
2912
+ "type": "function"
2913
+ },
2914
+ {
2915
+ "inputs": [
2916
+ {
2917
+ "internalType": "address",
2918
+ "name": "token",
2919
+ "type": "address"
2920
+ },
2921
+ {
2922
+ "internalType": "address",
2923
+ "name": "to",
2924
+ "type": "address"
2925
+ },
2926
+ {
2927
+ "internalType": "uint256",
2928
+ "name": "amount",
2929
+ "type": "uint256"
2930
+ }
2931
+ ],
2932
+ "name": "withdrawTokenRequest",
2933
+ "outputs": [
2934
+ {
2935
+ "internalType": "uint256",
2936
+ "name": "txId",
2937
+ "type": "uint256"
2938
+ }
2939
+ ],
2940
+ "stateMutability": "nonpayable",
2941
+ "type": "function"
2942
+ },
2943
+ {
2944
+ "inputs": [
2945
+ {
2946
+ "internalType": "uint256",
2947
+ "name": "txId",
2948
+ "type": "uint256"
2949
+ }
2950
+ ],
2951
+ "name": "approveWithdrawalAfterDelay",
2952
+ "outputs": [
2953
+ {
2954
+ "internalType": "uint256",
2955
+ "name": "",
2956
+ "type": "uint256"
2957
+ }
2958
+ ],
2959
+ "stateMutability": "nonpayable",
2960
+ "type": "function"
2961
+ },
2962
+ {
2963
+ "inputs": [
2964
+ {
2965
+ "components": [
2966
+ {
2967
+ "components": [
2968
+ {
2969
+ "internalType": "uint256",
2970
+ "name": "txId",
2971
+ "type": "uint256"
2972
+ },
2973
+ {
2974
+ "internalType": "uint256",
2975
+ "name": "releaseTime",
2976
+ "type": "uint256"
2977
+ },
2978
+ {
2979
+ "internalType": "enum EngineBlox.TxStatus",
2980
+ "name": "status",
2981
+ "type": "uint8"
2982
+ },
2983
+ {
2984
+ "components": [
2985
+ {
2986
+ "internalType": "address",
2987
+ "name": "requester",
2988
+ "type": "address"
2989
+ },
2990
+ {
2991
+ "internalType": "address",
2992
+ "name": "target",
2993
+ "type": "address"
2994
+ },
2995
+ {
2996
+ "internalType": "uint256",
2997
+ "name": "value",
2998
+ "type": "uint256"
2999
+ },
3000
+ {
3001
+ "internalType": "uint256",
3002
+ "name": "gasLimit",
3003
+ "type": "uint256"
3004
+ },
3005
+ {
3006
+ "internalType": "bytes32",
3007
+ "name": "operationType",
3008
+ "type": "bytes32"
3009
+ },
3010
+ {
3011
+ "internalType": "bytes4",
3012
+ "name": "executionSelector",
3013
+ "type": "bytes4"
3014
+ },
3015
+ {
3016
+ "internalType": "bytes",
3017
+ "name": "executionParams",
3018
+ "type": "bytes"
3019
+ }
3020
+ ],
3021
+ "internalType": "struct EngineBlox.TxParams",
3022
+ "name": "params",
3023
+ "type": "tuple"
3024
+ },
3025
+ {
3026
+ "internalType": "bytes32",
3027
+ "name": "message",
3028
+ "type": "bytes32"
3029
+ },
3030
+ {
3031
+ "internalType": "bytes",
3032
+ "name": "result",
3033
+ "type": "bytes"
3034
+ },
3035
+ {
3036
+ "components": [
3037
+ {
3038
+ "internalType": "address",
3039
+ "name": "recipient",
3040
+ "type": "address"
3041
+ },
3042
+ {
3043
+ "internalType": "uint256",
3044
+ "name": "nativeTokenAmount",
3045
+ "type": "uint256"
3046
+ },
3047
+ {
3048
+ "internalType": "address",
3049
+ "name": "erc20TokenAddress",
3050
+ "type": "address"
3051
+ },
3052
+ {
3053
+ "internalType": "uint256",
3054
+ "name": "erc20TokenAmount",
3055
+ "type": "uint256"
3056
+ }
3057
+ ],
3058
+ "internalType": "struct EngineBlox.PaymentDetails",
3059
+ "name": "payment",
3060
+ "type": "tuple"
3061
+ }
3062
+ ],
3063
+ "internalType": "struct EngineBlox.TxRecord",
3064
+ "name": "txRecord",
3065
+ "type": "tuple"
3066
+ },
3067
+ {
3068
+ "components": [
3069
+ {
3070
+ "internalType": "uint256",
3071
+ "name": "chainId",
3072
+ "type": "uint256"
3073
+ },
3074
+ {
3075
+ "internalType": "uint256",
3076
+ "name": "nonce",
3077
+ "type": "uint256"
3078
+ },
3079
+ {
3080
+ "internalType": "address",
3081
+ "name": "handlerContract",
3082
+ "type": "address"
3083
+ },
3084
+ {
3085
+ "internalType": "bytes4",
3086
+ "name": "handlerSelector",
3087
+ "type": "bytes4"
3088
+ },
3089
+ {
3090
+ "internalType": "enum EngineBlox.TxAction",
3091
+ "name": "action",
3092
+ "type": "uint8"
3093
+ },
3094
+ {
3095
+ "internalType": "uint256",
3096
+ "name": "deadline",
3097
+ "type": "uint256"
3098
+ },
3099
+ {
3100
+ "internalType": "uint256",
3101
+ "name": "maxGasPrice",
3102
+ "type": "uint256"
3103
+ },
3104
+ {
3105
+ "internalType": "address",
3106
+ "name": "signer",
3107
+ "type": "address"
3108
+ }
3109
+ ],
3110
+ "internalType": "struct EngineBlox.MetaTxParams",
3111
+ "name": "params",
3112
+ "type": "tuple"
3113
+ },
3114
+ {
3115
+ "internalType": "bytes32",
3116
+ "name": "message",
3117
+ "type": "bytes32"
3118
+ },
3119
+ {
3120
+ "internalType": "bytes",
3121
+ "name": "signature",
3122
+ "type": "bytes"
3123
+ },
3124
+ {
3125
+ "internalType": "bytes",
3126
+ "name": "data",
3127
+ "type": "bytes"
3128
+ }
3129
+ ],
3130
+ "internalType": "struct EngineBlox.MetaTransaction",
3131
+ "name": "metaTx",
3132
+ "type": "tuple"
3133
+ }
3134
+ ],
3135
+ "name": "approveWithdrawalWithMetaTx",
3136
+ "outputs": [
3137
+ {
3138
+ "internalType": "uint256",
3139
+ "name": "",
3140
+ "type": "uint256"
3141
+ }
3142
+ ],
3143
+ "stateMutability": "nonpayable",
3144
+ "type": "function"
3145
+ },
3146
+ {
3147
+ "inputs": [
3148
+ {
3149
+ "internalType": "uint256",
3150
+ "name": "txId",
3151
+ "type": "uint256"
3152
+ }
3153
+ ],
3154
+ "name": "cancelWithdrawal",
3155
+ "outputs": [
3156
+ {
3157
+ "internalType": "uint256",
3158
+ "name": "",
3159
+ "type": "uint256"
3160
+ }
3161
+ ],
3162
+ "stateMutability": "nonpayable",
3163
+ "type": "function"
3164
+ },
3165
+ {
3166
+ "inputs": [
3167
+ {
3168
+ "internalType": "address payable",
3169
+ "name": "to",
3170
+ "type": "address"
3171
+ },
3172
+ {
3173
+ "internalType": "uint256",
3174
+ "name": "amount",
3175
+ "type": "uint256"
3176
+ }
3177
+ ],
3178
+ "name": "executeWithdrawEth",
3179
+ "outputs": [],
3180
+ "stateMutability": "nonpayable",
3181
+ "type": "function"
3182
+ },
3183
+ {
3184
+ "inputs": [
3185
+ {
3186
+ "internalType": "address",
3187
+ "name": "token",
3188
+ "type": "address"
3189
+ },
3190
+ {
3191
+ "internalType": "address",
3192
+ "name": "to",
3193
+ "type": "address"
3194
+ },
3195
+ {
3196
+ "internalType": "uint256",
3197
+ "name": "amount",
3198
+ "type": "uint256"
3199
+ }
3200
+ ],
3201
+ "name": "executeWithdrawToken",
3202
+ "outputs": [],
3203
+ "stateMutability": "nonpayable",
3204
+ "type": "function"
3205
+ },
3206
+ {
3207
+ "inputs": [
3208
+ {
3209
+ "internalType": "uint256",
3210
+ "name": "txId",
3211
+ "type": "uint256"
3212
+ },
3213
+ {
3214
+ "components": [
3215
+ {
3216
+ "internalType": "uint256",
3217
+ "name": "deadline",
3218
+ "type": "uint256"
3219
+ },
3220
+ {
3221
+ "internalType": "uint256",
3222
+ "name": "maxGasPrice",
3223
+ "type": "uint256"
3224
+ }
3225
+ ],
3226
+ "internalType": "struct SimpleVault.VaultMetaTxParams",
3227
+ "name": "metaTxParams",
3228
+ "type": "tuple"
3229
+ }
3230
+ ],
3231
+ "name": "generateUnsignedWithdrawalMetaTxApproval",
3232
+ "outputs": [
3233
+ {
3234
+ "components": [
3235
+ {
3236
+ "components": [
3237
+ {
3238
+ "internalType": "uint256",
3239
+ "name": "txId",
3240
+ "type": "uint256"
3241
+ },
3242
+ {
3243
+ "internalType": "uint256",
3244
+ "name": "releaseTime",
3245
+ "type": "uint256"
3246
+ },
3247
+ {
3248
+ "internalType": "enum EngineBlox.TxStatus",
3249
+ "name": "status",
3250
+ "type": "uint8"
3251
+ },
3252
+ {
3253
+ "components": [
3254
+ {
3255
+ "internalType": "address",
3256
+ "name": "requester",
3257
+ "type": "address"
3258
+ },
3259
+ {
3260
+ "internalType": "address",
3261
+ "name": "target",
3262
+ "type": "address"
3263
+ },
3264
+ {
3265
+ "internalType": "uint256",
3266
+ "name": "value",
3267
+ "type": "uint256"
3268
+ },
3269
+ {
3270
+ "internalType": "uint256",
3271
+ "name": "gasLimit",
3272
+ "type": "uint256"
3273
+ },
3274
+ {
3275
+ "internalType": "bytes32",
3276
+ "name": "operationType",
3277
+ "type": "bytes32"
3278
+ },
3279
+ {
3280
+ "internalType": "bytes4",
3281
+ "name": "executionSelector",
3282
+ "type": "bytes4"
3283
+ },
3284
+ {
3285
+ "internalType": "bytes",
3286
+ "name": "executionParams",
3287
+ "type": "bytes"
3288
+ }
3289
+ ],
3290
+ "internalType": "struct EngineBlox.TxParams",
3291
+ "name": "params",
3292
+ "type": "tuple"
3293
+ },
3294
+ {
3295
+ "internalType": "bytes32",
3296
+ "name": "message",
3297
+ "type": "bytes32"
3298
+ },
3299
+ {
3300
+ "internalType": "bytes",
3301
+ "name": "result",
3302
+ "type": "bytes"
3303
+ },
3304
+ {
3305
+ "components": [
3306
+ {
3307
+ "internalType": "address",
3308
+ "name": "recipient",
3309
+ "type": "address"
3310
+ },
3311
+ {
3312
+ "internalType": "uint256",
3313
+ "name": "nativeTokenAmount",
3314
+ "type": "uint256"
3315
+ },
3316
+ {
3317
+ "internalType": "address",
3318
+ "name": "erc20TokenAddress",
3319
+ "type": "address"
3320
+ },
3321
+ {
3322
+ "internalType": "uint256",
3323
+ "name": "erc20TokenAmount",
3324
+ "type": "uint256"
3325
+ }
3326
+ ],
3327
+ "internalType": "struct EngineBlox.PaymentDetails",
3328
+ "name": "payment",
3329
+ "type": "tuple"
3330
+ }
3331
+ ],
3332
+ "internalType": "struct EngineBlox.TxRecord",
3333
+ "name": "txRecord",
3334
+ "type": "tuple"
3335
+ },
3336
+ {
3337
+ "components": [
3338
+ {
3339
+ "internalType": "uint256",
3340
+ "name": "chainId",
3341
+ "type": "uint256"
3342
+ },
3343
+ {
3344
+ "internalType": "uint256",
3345
+ "name": "nonce",
3346
+ "type": "uint256"
3347
+ },
3348
+ {
3349
+ "internalType": "address",
3350
+ "name": "handlerContract",
3351
+ "type": "address"
3352
+ },
3353
+ {
3354
+ "internalType": "bytes4",
3355
+ "name": "handlerSelector",
3356
+ "type": "bytes4"
3357
+ },
3358
+ {
3359
+ "internalType": "enum EngineBlox.TxAction",
3360
+ "name": "action",
3361
+ "type": "uint8"
3362
+ },
3363
+ {
3364
+ "internalType": "uint256",
3365
+ "name": "deadline",
3366
+ "type": "uint256"
3367
+ },
3368
+ {
3369
+ "internalType": "uint256",
3370
+ "name": "maxGasPrice",
3371
+ "type": "uint256"
3372
+ },
3373
+ {
3374
+ "internalType": "address",
3375
+ "name": "signer",
3376
+ "type": "address"
3377
+ }
3378
+ ],
3379
+ "internalType": "struct EngineBlox.MetaTxParams",
3380
+ "name": "params",
3381
+ "type": "tuple"
3382
+ },
3383
+ {
3384
+ "internalType": "bytes32",
3385
+ "name": "message",
3386
+ "type": "bytes32"
3387
+ },
3388
+ {
3389
+ "internalType": "bytes",
3390
+ "name": "signature",
3391
+ "type": "bytes"
3392
+ },
3393
+ {
3394
+ "internalType": "bytes",
3395
+ "name": "data",
3396
+ "type": "bytes"
3397
+ }
3398
+ ],
3399
+ "internalType": "struct EngineBlox.MetaTransaction",
3400
+ "name": "",
3401
+ "type": "tuple"
3402
+ }
3403
+ ],
3404
+ "stateMutability": "view",
3405
+ "type": "function"
3406
+ }
3407
+ ]