@bloxchain/contracts 1.0.0-alpha.7 → 1.0.0

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