@bloxchain/contracts 1.0.0-alpha

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 (34) hide show
  1. package/README.md +49 -0
  2. package/abi/BareBlox.abi.json +1341 -0
  3. package/abi/BaseStateMachine.abi.json +1308 -0
  4. package/abi/ControlBlox.abi.json +6210 -0
  5. package/abi/EngineBlox.abi.json +872 -0
  6. package/abi/GuardController.abi.json +3045 -0
  7. package/abi/IDefinition.abi.json +94 -0
  8. package/abi/RoleBlox.abi.json +4569 -0
  9. package/abi/RuntimeRBAC.abi.json +1857 -0
  10. package/abi/RuntimeRBACDefinitions.abi.json +133 -0
  11. package/abi/SecureBlox.abi.json +4085 -0
  12. package/abi/SecureOwnable.abi.json +4085 -0
  13. package/abi/SecureOwnableDefinitions.abi.json +354 -0
  14. package/abi/SimpleRWA20.abi.json +5545 -0
  15. package/abi/SimpleRWA20Definitions.abi.json +172 -0
  16. package/abi/SimpleVault.abi.json +5208 -0
  17. package/abi/SimpleVaultDefinitions.abi.json +250 -0
  18. package/contracts/core/access/RuntimeRBAC.sol +344 -0
  19. package/contracts/core/access/interface/IRuntimeRBAC.sol +108 -0
  20. package/contracts/core/access/lib/definitions/RuntimeRBACDefinitions.sol +168 -0
  21. package/contracts/core/base/BaseStateMachine.sol +834 -0
  22. package/contracts/core/base/interface/IBaseStateMachine.sol +153 -0
  23. package/contracts/core/execution/GuardController.sol +507 -0
  24. package/contracts/core/execution/interface/IGuardController.sol +120 -0
  25. package/contracts/core/execution/lib/definitions/GuardControllerDefinitions.sol +401 -0
  26. package/contracts/core/lib/EngineBlox.sol +2283 -0
  27. package/contracts/core/security/SecureOwnable.sol +419 -0
  28. package/contracts/core/security/interface/ISecureOwnable.sol +118 -0
  29. package/contracts/core/security/lib/definitions/SecureOwnableDefinitions.sol +757 -0
  30. package/contracts/interfaces/IDefinition.sol +40 -0
  31. package/contracts/interfaces/IEventForwarder.sol +33 -0
  32. package/contracts/interfaces/IOnActionHook.sol +79 -0
  33. package/contracts/utils/SharedValidation.sol +486 -0
  34. package/package.json +47 -0
@@ -0,0 +1,4569 @@
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
+ {
48
+ "internalType": "address",
49
+ "name": "provided",
50
+ "type": "address"
51
+ }
52
+ ],
53
+ "name": "InvalidAddress",
54
+ "type": "error"
55
+ },
56
+ {
57
+ "inputs": [],
58
+ "name": "InvalidInitialization",
59
+ "type": "error"
60
+ },
61
+ {
62
+ "inputs": [
63
+ {
64
+ "internalType": "uint256",
65
+ "name": "from",
66
+ "type": "uint256"
67
+ },
68
+ {
69
+ "internalType": "uint256",
70
+ "name": "to",
71
+ "type": "uint256"
72
+ }
73
+ ],
74
+ "name": "InvalidRange",
75
+ "type": "error"
76
+ },
77
+ {
78
+ "inputs": [
79
+ {
80
+ "internalType": "uint256",
81
+ "name": "provided",
82
+ "type": "uint256"
83
+ }
84
+ ],
85
+ "name": "MaxWalletsZero",
86
+ "type": "error"
87
+ },
88
+ {
89
+ "inputs": [
90
+ {
91
+ "internalType": "uint256",
92
+ "name": "newPeriod",
93
+ "type": "uint256"
94
+ },
95
+ {
96
+ "internalType": "uint256",
97
+ "name": "currentPeriod",
98
+ "type": "uint256"
99
+ }
100
+ ],
101
+ "name": "NewTimelockSame",
102
+ "type": "error"
103
+ },
104
+ {
105
+ "inputs": [
106
+ {
107
+ "internalType": "address",
108
+ "name": "caller",
109
+ "type": "address"
110
+ }
111
+ ],
112
+ "name": "NoPermission",
113
+ "type": "error"
114
+ },
115
+ {
116
+ "inputs": [],
117
+ "name": "NotInitializing",
118
+ "type": "error"
119
+ },
120
+ {
121
+ "inputs": [
122
+ {
123
+ "internalType": "address",
124
+ "name": "newAddress",
125
+ "type": "address"
126
+ },
127
+ {
128
+ "internalType": "address",
129
+ "name": "currentAddress",
130
+ "type": "address"
131
+ }
132
+ ],
133
+ "name": "NotNewAddress",
134
+ "type": "error"
135
+ },
136
+ {
137
+ "inputs": [],
138
+ "name": "NotSupported",
139
+ "type": "error"
140
+ },
141
+ {
142
+ "inputs": [
143
+ {
144
+ "internalType": "address",
145
+ "name": "caller",
146
+ "type": "address"
147
+ },
148
+ {
149
+ "internalType": "address",
150
+ "name": "contractAddress",
151
+ "type": "address"
152
+ }
153
+ ],
154
+ "name": "OnlyCallableByContract",
155
+ "type": "error"
156
+ },
157
+ {
158
+ "inputs": [
159
+ {
160
+ "internalType": "uint256",
161
+ "name": "rangeSize",
162
+ "type": "uint256"
163
+ },
164
+ {
165
+ "internalType": "uint256",
166
+ "name": "maxRangeSize",
167
+ "type": "uint256"
168
+ }
169
+ ],
170
+ "name": "RangeSizeExceeded",
171
+ "type": "error"
172
+ },
173
+ {
174
+ "inputs": [],
175
+ "name": "ReentrancyGuardReentrantCall",
176
+ "type": "error"
177
+ },
178
+ {
179
+ "inputs": [
180
+ {
181
+ "internalType": "bytes32",
182
+ "name": "resourceId",
183
+ "type": "bytes32"
184
+ }
185
+ ],
186
+ "name": "ResourceAlreadyExists",
187
+ "type": "error"
188
+ },
189
+ {
190
+ "inputs": [
191
+ {
192
+ "internalType": "bytes32",
193
+ "name": "resourceId",
194
+ "type": "bytes32"
195
+ }
196
+ ],
197
+ "name": "ResourceNotFound",
198
+ "type": "error"
199
+ },
200
+ {
201
+ "inputs": [
202
+ {
203
+ "internalType": "address",
204
+ "name": "caller",
205
+ "type": "address"
206
+ },
207
+ {
208
+ "internalType": "address",
209
+ "name": "owner",
210
+ "type": "address"
211
+ }
212
+ ],
213
+ "name": "RestrictedOwner",
214
+ "type": "error"
215
+ },
216
+ {
217
+ "inputs": [
218
+ {
219
+ "internalType": "address",
220
+ "name": "caller",
221
+ "type": "address"
222
+ },
223
+ {
224
+ "internalType": "address",
225
+ "name": "owner",
226
+ "type": "address"
227
+ },
228
+ {
229
+ "internalType": "address",
230
+ "name": "recovery",
231
+ "type": "address"
232
+ }
233
+ ],
234
+ "name": "RestrictedOwnerRecovery",
235
+ "type": "error"
236
+ },
237
+ {
238
+ "inputs": [
239
+ {
240
+ "internalType": "address",
241
+ "name": "caller",
242
+ "type": "address"
243
+ },
244
+ {
245
+ "internalType": "address",
246
+ "name": "recovery",
247
+ "type": "address"
248
+ }
249
+ ],
250
+ "name": "RestrictedRecovery",
251
+ "type": "error"
252
+ },
253
+ {
254
+ "inputs": [
255
+ {
256
+ "internalType": "uint256",
257
+ "name": "provided",
258
+ "type": "uint256"
259
+ }
260
+ ],
261
+ "name": "TimeLockPeriodZero",
262
+ "type": "error"
263
+ },
264
+ {
265
+ "anonymous": false,
266
+ "inputs": [
267
+ {
268
+ "indexed": false,
269
+ "internalType": "uint256",
270
+ "name": "txId",
271
+ "type": "uint256"
272
+ }
273
+ ],
274
+ "name": "BroadcasterUpdateCancelled",
275
+ "type": "event"
276
+ },
277
+ {
278
+ "anonymous": false,
279
+ "inputs": [
280
+ {
281
+ "indexed": false,
282
+ "internalType": "address",
283
+ "name": "currentBroadcaster",
284
+ "type": "address"
285
+ },
286
+ {
287
+ "indexed": false,
288
+ "internalType": "address",
289
+ "name": "newBroadcaster",
290
+ "type": "address"
291
+ }
292
+ ],
293
+ "name": "BroadcasterUpdateRequest",
294
+ "type": "event"
295
+ },
296
+ {
297
+ "anonymous": false,
298
+ "inputs": [
299
+ {
300
+ "indexed": false,
301
+ "internalType": "address",
302
+ "name": "oldBroadcaster",
303
+ "type": "address"
304
+ },
305
+ {
306
+ "indexed": false,
307
+ "internalType": "address",
308
+ "name": "newBroadcaster",
309
+ "type": "address"
310
+ }
311
+ ],
312
+ "name": "BroadcasterUpdated",
313
+ "type": "event"
314
+ },
315
+ {
316
+ "anonymous": false,
317
+ "inputs": [
318
+ {
319
+ "indexed": false,
320
+ "internalType": "uint64",
321
+ "name": "version",
322
+ "type": "uint64"
323
+ }
324
+ ],
325
+ "name": "Initialized",
326
+ "type": "event"
327
+ },
328
+ {
329
+ "anonymous": false,
330
+ "inputs": [
331
+ {
332
+ "indexed": false,
333
+ "internalType": "uint256",
334
+ "name": "txId",
335
+ "type": "uint256"
336
+ }
337
+ ],
338
+ "name": "OwnershipTransferCancelled",
339
+ "type": "event"
340
+ },
341
+ {
342
+ "anonymous": false,
343
+ "inputs": [
344
+ {
345
+ "indexed": false,
346
+ "internalType": "address",
347
+ "name": "currentOwner",
348
+ "type": "address"
349
+ },
350
+ {
351
+ "indexed": false,
352
+ "internalType": "address",
353
+ "name": "newOwner",
354
+ "type": "address"
355
+ }
356
+ ],
357
+ "name": "OwnershipTransferRequest",
358
+ "type": "event"
359
+ },
360
+ {
361
+ "anonymous": false,
362
+ "inputs": [
363
+ {
364
+ "indexed": false,
365
+ "internalType": "address",
366
+ "name": "oldOwner",
367
+ "type": "address"
368
+ },
369
+ {
370
+ "indexed": false,
371
+ "internalType": "address",
372
+ "name": "newOwner",
373
+ "type": "address"
374
+ }
375
+ ],
376
+ "name": "OwnershipTransferUpdated",
377
+ "type": "event"
378
+ },
379
+ {
380
+ "anonymous": false,
381
+ "inputs": [
382
+ {
383
+ "indexed": false,
384
+ "internalType": "address",
385
+ "name": "oldRecovery",
386
+ "type": "address"
387
+ },
388
+ {
389
+ "indexed": false,
390
+ "internalType": "address",
391
+ "name": "newRecovery",
392
+ "type": "address"
393
+ }
394
+ ],
395
+ "name": "RecoveryAddressUpdated",
396
+ "type": "event"
397
+ },
398
+ {
399
+ "anonymous": false,
400
+ "inputs": [
401
+ {
402
+ "indexed": true,
403
+ "internalType": "enum RuntimeRBAC.RoleConfigActionType",
404
+ "name": "actionType",
405
+ "type": "uint8"
406
+ },
407
+ {
408
+ "indexed": true,
409
+ "internalType": "bytes32",
410
+ "name": "roleHash",
411
+ "type": "bytes32"
412
+ },
413
+ {
414
+ "indexed": true,
415
+ "internalType": "bytes4",
416
+ "name": "functionSelector",
417
+ "type": "bytes4"
418
+ },
419
+ {
420
+ "indexed": false,
421
+ "internalType": "bytes",
422
+ "name": "data",
423
+ "type": "bytes"
424
+ }
425
+ ],
426
+ "name": "RoleConfigApplied",
427
+ "type": "event"
428
+ },
429
+ {
430
+ "anonymous": false,
431
+ "inputs": [
432
+ {
433
+ "indexed": false,
434
+ "internalType": "uint256",
435
+ "name": "oldPeriod",
436
+ "type": "uint256"
437
+ },
438
+ {
439
+ "indexed": false,
440
+ "internalType": "uint256",
441
+ "name": "newPeriod",
442
+ "type": "uint256"
443
+ }
444
+ ],
445
+ "name": "TimeLockPeriodUpdated",
446
+ "type": "event"
447
+ },
448
+ {
449
+ "anonymous": false,
450
+ "inputs": [
451
+ {
452
+ "indexed": true,
453
+ "internalType": "uint256",
454
+ "name": "txId",
455
+ "type": "uint256"
456
+ },
457
+ {
458
+ "indexed": true,
459
+ "internalType": "bytes32",
460
+ "name": "operationType",
461
+ "type": "bytes32"
462
+ },
463
+ {
464
+ "indexed": true,
465
+ "internalType": "address",
466
+ "name": "approver",
467
+ "type": "address"
468
+ }
469
+ ],
470
+ "name": "TransactionApproved",
471
+ "type": "event"
472
+ },
473
+ {
474
+ "anonymous": false,
475
+ "inputs": [
476
+ {
477
+ "indexed": true,
478
+ "internalType": "uint256",
479
+ "name": "txId",
480
+ "type": "uint256"
481
+ },
482
+ {
483
+ "indexed": true,
484
+ "internalType": "bytes32",
485
+ "name": "operationType",
486
+ "type": "bytes32"
487
+ },
488
+ {
489
+ "indexed": true,
490
+ "internalType": "address",
491
+ "name": "canceller",
492
+ "type": "address"
493
+ }
494
+ ],
495
+ "name": "TransactionCancelled",
496
+ "type": "event"
497
+ },
498
+ {
499
+ "anonymous": false,
500
+ "inputs": [
501
+ {
502
+ "indexed": true,
503
+ "internalType": "uint256",
504
+ "name": "txId",
505
+ "type": "uint256"
506
+ },
507
+ {
508
+ "indexed": true,
509
+ "internalType": "bytes32",
510
+ "name": "operationType",
511
+ "type": "bytes32"
512
+ },
513
+ {
514
+ "indexed": false,
515
+ "internalType": "bool",
516
+ "name": "success",
517
+ "type": "bool"
518
+ }
519
+ ],
520
+ "name": "TransactionExecuted",
521
+ "type": "event"
522
+ },
523
+ {
524
+ "anonymous": false,
525
+ "inputs": [
526
+ {
527
+ "indexed": true,
528
+ "internalType": "uint256",
529
+ "name": "txId",
530
+ "type": "uint256"
531
+ },
532
+ {
533
+ "indexed": true,
534
+ "internalType": "address",
535
+ "name": "requester",
536
+ "type": "address"
537
+ },
538
+ {
539
+ "indexed": true,
540
+ "internalType": "bytes32",
541
+ "name": "operationType",
542
+ "type": "bytes32"
543
+ },
544
+ {
545
+ "indexed": false,
546
+ "internalType": "uint256",
547
+ "name": "releaseTime",
548
+ "type": "uint256"
549
+ }
550
+ ],
551
+ "name": "TransactionRequested",
552
+ "type": "event"
553
+ },
554
+ {
555
+ "inputs": [
556
+ {
557
+ "internalType": "address",
558
+ "name": "handlerContract",
559
+ "type": "address"
560
+ },
561
+ {
562
+ "internalType": "bytes4",
563
+ "name": "handlerSelector",
564
+ "type": "bytes4"
565
+ },
566
+ {
567
+ "internalType": "enum EngineBlox.TxAction",
568
+ "name": "action",
569
+ "type": "uint8"
570
+ },
571
+ {
572
+ "internalType": "uint256",
573
+ "name": "deadline",
574
+ "type": "uint256"
575
+ },
576
+ {
577
+ "internalType": "uint256",
578
+ "name": "maxGasPrice",
579
+ "type": "uint256"
580
+ },
581
+ {
582
+ "internalType": "address",
583
+ "name": "signer",
584
+ "type": "address"
585
+ }
586
+ ],
587
+ "name": "createMetaTxParams",
588
+ "outputs": [
589
+ {
590
+ "components": [
591
+ {
592
+ "internalType": "uint256",
593
+ "name": "chainId",
594
+ "type": "uint256"
595
+ },
596
+ {
597
+ "internalType": "uint256",
598
+ "name": "nonce",
599
+ "type": "uint256"
600
+ },
601
+ {
602
+ "internalType": "address",
603
+ "name": "handlerContract",
604
+ "type": "address"
605
+ },
606
+ {
607
+ "internalType": "bytes4",
608
+ "name": "handlerSelector",
609
+ "type": "bytes4"
610
+ },
611
+ {
612
+ "internalType": "enum EngineBlox.TxAction",
613
+ "name": "action",
614
+ "type": "uint8"
615
+ },
616
+ {
617
+ "internalType": "uint256",
618
+ "name": "deadline",
619
+ "type": "uint256"
620
+ },
621
+ {
622
+ "internalType": "uint256",
623
+ "name": "maxGasPrice",
624
+ "type": "uint256"
625
+ },
626
+ {
627
+ "internalType": "address",
628
+ "name": "signer",
629
+ "type": "address"
630
+ }
631
+ ],
632
+ "internalType": "struct EngineBlox.MetaTxParams",
633
+ "name": "",
634
+ "type": "tuple"
635
+ }
636
+ ],
637
+ "stateMutability": "view",
638
+ "type": "function"
639
+ },
640
+ {
641
+ "inputs": [
642
+ {
643
+ "internalType": "address",
644
+ "name": "newBroadcaster",
645
+ "type": "address"
646
+ }
647
+ ],
648
+ "name": "executeBroadcasterUpdate",
649
+ "outputs": [],
650
+ "stateMutability": "nonpayable",
651
+ "type": "function"
652
+ },
653
+ {
654
+ "inputs": [
655
+ {
656
+ "internalType": "address",
657
+ "name": "newRecoveryAddress",
658
+ "type": "address"
659
+ }
660
+ ],
661
+ "name": "executeRecoveryUpdate",
662
+ "outputs": [],
663
+ "stateMutability": "nonpayable",
664
+ "type": "function"
665
+ },
666
+ {
667
+ "inputs": [
668
+ {
669
+ "components": [
670
+ {
671
+ "internalType": "enum RuntimeRBAC.RoleConfigActionType",
672
+ "name": "actionType",
673
+ "type": "uint8"
674
+ },
675
+ {
676
+ "internalType": "bytes",
677
+ "name": "data",
678
+ "type": "bytes"
679
+ }
680
+ ],
681
+ "internalType": "struct RuntimeRBAC.RoleConfigAction[]",
682
+ "name": "actions",
683
+ "type": "tuple[]"
684
+ }
685
+ ],
686
+ "name": "executeRoleConfigBatch",
687
+ "outputs": [],
688
+ "stateMutability": "nonpayable",
689
+ "type": "function"
690
+ },
691
+ {
692
+ "inputs": [
693
+ {
694
+ "internalType": "uint256",
695
+ "name": "newTimeLockPeriodSec",
696
+ "type": "uint256"
697
+ }
698
+ ],
699
+ "name": "executeTimeLockUpdate",
700
+ "outputs": [],
701
+ "stateMutability": "nonpayable",
702
+ "type": "function"
703
+ },
704
+ {
705
+ "inputs": [
706
+ {
707
+ "internalType": "address",
708
+ "name": "newOwner",
709
+ "type": "address"
710
+ }
711
+ ],
712
+ "name": "executeTransferOwnership",
713
+ "outputs": [],
714
+ "stateMutability": "nonpayable",
715
+ "type": "function"
716
+ },
717
+ {
718
+ "inputs": [
719
+ {
720
+ "internalType": "bytes4",
721
+ "name": "functionSelector",
722
+ "type": "bytes4"
723
+ }
724
+ ],
725
+ "name": "functionSchemaExists",
726
+ "outputs": [
727
+ {
728
+ "internalType": "bool",
729
+ "name": "",
730
+ "type": "bool"
731
+ }
732
+ ],
733
+ "stateMutability": "view",
734
+ "type": "function"
735
+ },
736
+ {
737
+ "inputs": [
738
+ {
739
+ "internalType": "uint256",
740
+ "name": "txId",
741
+ "type": "uint256"
742
+ },
743
+ {
744
+ "components": [
745
+ {
746
+ "internalType": "uint256",
747
+ "name": "chainId",
748
+ "type": "uint256"
749
+ },
750
+ {
751
+ "internalType": "uint256",
752
+ "name": "nonce",
753
+ "type": "uint256"
754
+ },
755
+ {
756
+ "internalType": "address",
757
+ "name": "handlerContract",
758
+ "type": "address"
759
+ },
760
+ {
761
+ "internalType": "bytes4",
762
+ "name": "handlerSelector",
763
+ "type": "bytes4"
764
+ },
765
+ {
766
+ "internalType": "enum EngineBlox.TxAction",
767
+ "name": "action",
768
+ "type": "uint8"
769
+ },
770
+ {
771
+ "internalType": "uint256",
772
+ "name": "deadline",
773
+ "type": "uint256"
774
+ },
775
+ {
776
+ "internalType": "uint256",
777
+ "name": "maxGasPrice",
778
+ "type": "uint256"
779
+ },
780
+ {
781
+ "internalType": "address",
782
+ "name": "signer",
783
+ "type": "address"
784
+ }
785
+ ],
786
+ "internalType": "struct EngineBlox.MetaTxParams",
787
+ "name": "metaTxParams",
788
+ "type": "tuple"
789
+ }
790
+ ],
791
+ "name": "generateUnsignedMetaTransactionForExisting",
792
+ "outputs": [
793
+ {
794
+ "components": [
795
+ {
796
+ "components": [
797
+ {
798
+ "internalType": "uint256",
799
+ "name": "txId",
800
+ "type": "uint256"
801
+ },
802
+ {
803
+ "internalType": "uint256",
804
+ "name": "releaseTime",
805
+ "type": "uint256"
806
+ },
807
+ {
808
+ "internalType": "enum EngineBlox.TxStatus",
809
+ "name": "status",
810
+ "type": "uint8"
811
+ },
812
+ {
813
+ "components": [
814
+ {
815
+ "internalType": "address",
816
+ "name": "requester",
817
+ "type": "address"
818
+ },
819
+ {
820
+ "internalType": "address",
821
+ "name": "target",
822
+ "type": "address"
823
+ },
824
+ {
825
+ "internalType": "uint256",
826
+ "name": "value",
827
+ "type": "uint256"
828
+ },
829
+ {
830
+ "internalType": "uint256",
831
+ "name": "gasLimit",
832
+ "type": "uint256"
833
+ },
834
+ {
835
+ "internalType": "bytes32",
836
+ "name": "operationType",
837
+ "type": "bytes32"
838
+ },
839
+ {
840
+ "internalType": "bytes4",
841
+ "name": "executionSelector",
842
+ "type": "bytes4"
843
+ },
844
+ {
845
+ "internalType": "bytes",
846
+ "name": "executionParams",
847
+ "type": "bytes"
848
+ }
849
+ ],
850
+ "internalType": "struct EngineBlox.TxParams",
851
+ "name": "params",
852
+ "type": "tuple"
853
+ },
854
+ {
855
+ "internalType": "bytes32",
856
+ "name": "message",
857
+ "type": "bytes32"
858
+ },
859
+ {
860
+ "internalType": "bytes",
861
+ "name": "result",
862
+ "type": "bytes"
863
+ },
864
+ {
865
+ "components": [
866
+ {
867
+ "internalType": "address",
868
+ "name": "recipient",
869
+ "type": "address"
870
+ },
871
+ {
872
+ "internalType": "uint256",
873
+ "name": "nativeTokenAmount",
874
+ "type": "uint256"
875
+ },
876
+ {
877
+ "internalType": "address",
878
+ "name": "erc20TokenAddress",
879
+ "type": "address"
880
+ },
881
+ {
882
+ "internalType": "uint256",
883
+ "name": "erc20TokenAmount",
884
+ "type": "uint256"
885
+ }
886
+ ],
887
+ "internalType": "struct EngineBlox.PaymentDetails",
888
+ "name": "payment",
889
+ "type": "tuple"
890
+ }
891
+ ],
892
+ "internalType": "struct EngineBlox.TxRecord",
893
+ "name": "txRecord",
894
+ "type": "tuple"
895
+ },
896
+ {
897
+ "components": [
898
+ {
899
+ "internalType": "uint256",
900
+ "name": "chainId",
901
+ "type": "uint256"
902
+ },
903
+ {
904
+ "internalType": "uint256",
905
+ "name": "nonce",
906
+ "type": "uint256"
907
+ },
908
+ {
909
+ "internalType": "address",
910
+ "name": "handlerContract",
911
+ "type": "address"
912
+ },
913
+ {
914
+ "internalType": "bytes4",
915
+ "name": "handlerSelector",
916
+ "type": "bytes4"
917
+ },
918
+ {
919
+ "internalType": "enum EngineBlox.TxAction",
920
+ "name": "action",
921
+ "type": "uint8"
922
+ },
923
+ {
924
+ "internalType": "uint256",
925
+ "name": "deadline",
926
+ "type": "uint256"
927
+ },
928
+ {
929
+ "internalType": "uint256",
930
+ "name": "maxGasPrice",
931
+ "type": "uint256"
932
+ },
933
+ {
934
+ "internalType": "address",
935
+ "name": "signer",
936
+ "type": "address"
937
+ }
938
+ ],
939
+ "internalType": "struct EngineBlox.MetaTxParams",
940
+ "name": "params",
941
+ "type": "tuple"
942
+ },
943
+ {
944
+ "internalType": "bytes32",
945
+ "name": "message",
946
+ "type": "bytes32"
947
+ },
948
+ {
949
+ "internalType": "bytes",
950
+ "name": "signature",
951
+ "type": "bytes"
952
+ },
953
+ {
954
+ "internalType": "bytes",
955
+ "name": "data",
956
+ "type": "bytes"
957
+ }
958
+ ],
959
+ "internalType": "struct EngineBlox.MetaTransaction",
960
+ "name": "",
961
+ "type": "tuple"
962
+ }
963
+ ],
964
+ "stateMutability": "view",
965
+ "type": "function"
966
+ },
967
+ {
968
+ "inputs": [
969
+ {
970
+ "internalType": "address",
971
+ "name": "requester",
972
+ "type": "address"
973
+ },
974
+ {
975
+ "internalType": "address",
976
+ "name": "target",
977
+ "type": "address"
978
+ },
979
+ {
980
+ "internalType": "uint256",
981
+ "name": "value",
982
+ "type": "uint256"
983
+ },
984
+ {
985
+ "internalType": "uint256",
986
+ "name": "gasLimit",
987
+ "type": "uint256"
988
+ },
989
+ {
990
+ "internalType": "bytes32",
991
+ "name": "operationType",
992
+ "type": "bytes32"
993
+ },
994
+ {
995
+ "internalType": "bytes4",
996
+ "name": "executionSelector",
997
+ "type": "bytes4"
998
+ },
999
+ {
1000
+ "internalType": "bytes",
1001
+ "name": "executionParams",
1002
+ "type": "bytes"
1003
+ },
1004
+ {
1005
+ "components": [
1006
+ {
1007
+ "internalType": "uint256",
1008
+ "name": "chainId",
1009
+ "type": "uint256"
1010
+ },
1011
+ {
1012
+ "internalType": "uint256",
1013
+ "name": "nonce",
1014
+ "type": "uint256"
1015
+ },
1016
+ {
1017
+ "internalType": "address",
1018
+ "name": "handlerContract",
1019
+ "type": "address"
1020
+ },
1021
+ {
1022
+ "internalType": "bytes4",
1023
+ "name": "handlerSelector",
1024
+ "type": "bytes4"
1025
+ },
1026
+ {
1027
+ "internalType": "enum EngineBlox.TxAction",
1028
+ "name": "action",
1029
+ "type": "uint8"
1030
+ },
1031
+ {
1032
+ "internalType": "uint256",
1033
+ "name": "deadline",
1034
+ "type": "uint256"
1035
+ },
1036
+ {
1037
+ "internalType": "uint256",
1038
+ "name": "maxGasPrice",
1039
+ "type": "uint256"
1040
+ },
1041
+ {
1042
+ "internalType": "address",
1043
+ "name": "signer",
1044
+ "type": "address"
1045
+ }
1046
+ ],
1047
+ "internalType": "struct EngineBlox.MetaTxParams",
1048
+ "name": "metaTxParams",
1049
+ "type": "tuple"
1050
+ }
1051
+ ],
1052
+ "name": "generateUnsignedMetaTransactionForNew",
1053
+ "outputs": [
1054
+ {
1055
+ "components": [
1056
+ {
1057
+ "components": [
1058
+ {
1059
+ "internalType": "uint256",
1060
+ "name": "txId",
1061
+ "type": "uint256"
1062
+ },
1063
+ {
1064
+ "internalType": "uint256",
1065
+ "name": "releaseTime",
1066
+ "type": "uint256"
1067
+ },
1068
+ {
1069
+ "internalType": "enum EngineBlox.TxStatus",
1070
+ "name": "status",
1071
+ "type": "uint8"
1072
+ },
1073
+ {
1074
+ "components": [
1075
+ {
1076
+ "internalType": "address",
1077
+ "name": "requester",
1078
+ "type": "address"
1079
+ },
1080
+ {
1081
+ "internalType": "address",
1082
+ "name": "target",
1083
+ "type": "address"
1084
+ },
1085
+ {
1086
+ "internalType": "uint256",
1087
+ "name": "value",
1088
+ "type": "uint256"
1089
+ },
1090
+ {
1091
+ "internalType": "uint256",
1092
+ "name": "gasLimit",
1093
+ "type": "uint256"
1094
+ },
1095
+ {
1096
+ "internalType": "bytes32",
1097
+ "name": "operationType",
1098
+ "type": "bytes32"
1099
+ },
1100
+ {
1101
+ "internalType": "bytes4",
1102
+ "name": "executionSelector",
1103
+ "type": "bytes4"
1104
+ },
1105
+ {
1106
+ "internalType": "bytes",
1107
+ "name": "executionParams",
1108
+ "type": "bytes"
1109
+ }
1110
+ ],
1111
+ "internalType": "struct EngineBlox.TxParams",
1112
+ "name": "params",
1113
+ "type": "tuple"
1114
+ },
1115
+ {
1116
+ "internalType": "bytes32",
1117
+ "name": "message",
1118
+ "type": "bytes32"
1119
+ },
1120
+ {
1121
+ "internalType": "bytes",
1122
+ "name": "result",
1123
+ "type": "bytes"
1124
+ },
1125
+ {
1126
+ "components": [
1127
+ {
1128
+ "internalType": "address",
1129
+ "name": "recipient",
1130
+ "type": "address"
1131
+ },
1132
+ {
1133
+ "internalType": "uint256",
1134
+ "name": "nativeTokenAmount",
1135
+ "type": "uint256"
1136
+ },
1137
+ {
1138
+ "internalType": "address",
1139
+ "name": "erc20TokenAddress",
1140
+ "type": "address"
1141
+ },
1142
+ {
1143
+ "internalType": "uint256",
1144
+ "name": "erc20TokenAmount",
1145
+ "type": "uint256"
1146
+ }
1147
+ ],
1148
+ "internalType": "struct EngineBlox.PaymentDetails",
1149
+ "name": "payment",
1150
+ "type": "tuple"
1151
+ }
1152
+ ],
1153
+ "internalType": "struct EngineBlox.TxRecord",
1154
+ "name": "txRecord",
1155
+ "type": "tuple"
1156
+ },
1157
+ {
1158
+ "components": [
1159
+ {
1160
+ "internalType": "uint256",
1161
+ "name": "chainId",
1162
+ "type": "uint256"
1163
+ },
1164
+ {
1165
+ "internalType": "uint256",
1166
+ "name": "nonce",
1167
+ "type": "uint256"
1168
+ },
1169
+ {
1170
+ "internalType": "address",
1171
+ "name": "handlerContract",
1172
+ "type": "address"
1173
+ },
1174
+ {
1175
+ "internalType": "bytes4",
1176
+ "name": "handlerSelector",
1177
+ "type": "bytes4"
1178
+ },
1179
+ {
1180
+ "internalType": "enum EngineBlox.TxAction",
1181
+ "name": "action",
1182
+ "type": "uint8"
1183
+ },
1184
+ {
1185
+ "internalType": "uint256",
1186
+ "name": "deadline",
1187
+ "type": "uint256"
1188
+ },
1189
+ {
1190
+ "internalType": "uint256",
1191
+ "name": "maxGasPrice",
1192
+ "type": "uint256"
1193
+ },
1194
+ {
1195
+ "internalType": "address",
1196
+ "name": "signer",
1197
+ "type": "address"
1198
+ }
1199
+ ],
1200
+ "internalType": "struct EngineBlox.MetaTxParams",
1201
+ "name": "params",
1202
+ "type": "tuple"
1203
+ },
1204
+ {
1205
+ "internalType": "bytes32",
1206
+ "name": "message",
1207
+ "type": "bytes32"
1208
+ },
1209
+ {
1210
+ "internalType": "bytes",
1211
+ "name": "signature",
1212
+ "type": "bytes"
1213
+ },
1214
+ {
1215
+ "internalType": "bytes",
1216
+ "name": "data",
1217
+ "type": "bytes"
1218
+ }
1219
+ ],
1220
+ "internalType": "struct EngineBlox.MetaTransaction",
1221
+ "name": "",
1222
+ "type": "tuple"
1223
+ }
1224
+ ],
1225
+ "stateMutability": "view",
1226
+ "type": "function"
1227
+ },
1228
+ {
1229
+ "inputs": [
1230
+ {
1231
+ "internalType": "bytes32",
1232
+ "name": "roleHash",
1233
+ "type": "bytes32"
1234
+ }
1235
+ ],
1236
+ "name": "getActiveRolePermissions",
1237
+ "outputs": [
1238
+ {
1239
+ "components": [
1240
+ {
1241
+ "internalType": "bytes4",
1242
+ "name": "functionSelector",
1243
+ "type": "bytes4"
1244
+ },
1245
+ {
1246
+ "internalType": "uint16",
1247
+ "name": "grantedActionsBitmap",
1248
+ "type": "uint16"
1249
+ },
1250
+ {
1251
+ "internalType": "bytes4[]",
1252
+ "name": "handlerForSelectors",
1253
+ "type": "bytes4[]"
1254
+ }
1255
+ ],
1256
+ "internalType": "struct EngineBlox.FunctionPermission[]",
1257
+ "name": "",
1258
+ "type": "tuple[]"
1259
+ }
1260
+ ],
1261
+ "stateMutability": "view",
1262
+ "type": "function"
1263
+ },
1264
+ {
1265
+ "inputs": [],
1266
+ "name": "getBroadcasters",
1267
+ "outputs": [
1268
+ {
1269
+ "internalType": "address[]",
1270
+ "name": "",
1271
+ "type": "address[]"
1272
+ }
1273
+ ],
1274
+ "stateMutability": "view",
1275
+ "type": "function"
1276
+ },
1277
+ {
1278
+ "inputs": [
1279
+ {
1280
+ "internalType": "bytes4",
1281
+ "name": "functionSelector",
1282
+ "type": "bytes4"
1283
+ }
1284
+ ],
1285
+ "name": "getFunctionSchema",
1286
+ "outputs": [
1287
+ {
1288
+ "internalType": "string",
1289
+ "name": "functionSignature",
1290
+ "type": "string"
1291
+ },
1292
+ {
1293
+ "internalType": "bytes4",
1294
+ "name": "functionSelectorReturn",
1295
+ "type": "bytes4"
1296
+ },
1297
+ {
1298
+ "internalType": "bytes32",
1299
+ "name": "operationType",
1300
+ "type": "bytes32"
1301
+ },
1302
+ {
1303
+ "internalType": "string",
1304
+ "name": "operationName",
1305
+ "type": "string"
1306
+ },
1307
+ {
1308
+ "internalType": "enum EngineBlox.TxAction[]",
1309
+ "name": "supportedActions",
1310
+ "type": "uint8[]"
1311
+ },
1312
+ {
1313
+ "internalType": "bool",
1314
+ "name": "isProtected",
1315
+ "type": "bool"
1316
+ }
1317
+ ],
1318
+ "stateMutability": "view",
1319
+ "type": "function"
1320
+ },
1321
+ {
1322
+ "inputs": [],
1323
+ "name": "getPendingTransactions",
1324
+ "outputs": [
1325
+ {
1326
+ "internalType": "uint256[]",
1327
+ "name": "",
1328
+ "type": "uint256[]"
1329
+ }
1330
+ ],
1331
+ "stateMutability": "view",
1332
+ "type": "function"
1333
+ },
1334
+ {
1335
+ "inputs": [],
1336
+ "name": "getRecovery",
1337
+ "outputs": [
1338
+ {
1339
+ "internalType": "address",
1340
+ "name": "",
1341
+ "type": "address"
1342
+ }
1343
+ ],
1344
+ "stateMutability": "view",
1345
+ "type": "function"
1346
+ },
1347
+ {
1348
+ "inputs": [
1349
+ {
1350
+ "internalType": "bytes32",
1351
+ "name": "roleHash",
1352
+ "type": "bytes32"
1353
+ }
1354
+ ],
1355
+ "name": "getRole",
1356
+ "outputs": [
1357
+ {
1358
+ "internalType": "string",
1359
+ "name": "roleName",
1360
+ "type": "string"
1361
+ },
1362
+ {
1363
+ "internalType": "bytes32",
1364
+ "name": "roleHashReturn",
1365
+ "type": "bytes32"
1366
+ },
1367
+ {
1368
+ "internalType": "uint256",
1369
+ "name": "maxWallets",
1370
+ "type": "uint256"
1371
+ },
1372
+ {
1373
+ "internalType": "uint256",
1374
+ "name": "walletCount",
1375
+ "type": "uint256"
1376
+ },
1377
+ {
1378
+ "internalType": "bool",
1379
+ "name": "isProtected",
1380
+ "type": "bool"
1381
+ }
1382
+ ],
1383
+ "stateMutability": "view",
1384
+ "type": "function"
1385
+ },
1386
+ {
1387
+ "inputs": [
1388
+ {
1389
+ "internalType": "address",
1390
+ "name": "signer",
1391
+ "type": "address"
1392
+ }
1393
+ ],
1394
+ "name": "getSignerNonce",
1395
+ "outputs": [
1396
+ {
1397
+ "internalType": "uint256",
1398
+ "name": "",
1399
+ "type": "uint256"
1400
+ }
1401
+ ],
1402
+ "stateMutability": "view",
1403
+ "type": "function"
1404
+ },
1405
+ {
1406
+ "inputs": [],
1407
+ "name": "getSupportedFunctions",
1408
+ "outputs": [
1409
+ {
1410
+ "internalType": "bytes4[]",
1411
+ "name": "",
1412
+ "type": "bytes4[]"
1413
+ }
1414
+ ],
1415
+ "stateMutability": "view",
1416
+ "type": "function"
1417
+ },
1418
+ {
1419
+ "inputs": [],
1420
+ "name": "getSupportedOperationTypes",
1421
+ "outputs": [
1422
+ {
1423
+ "internalType": "bytes32[]",
1424
+ "name": "",
1425
+ "type": "bytes32[]"
1426
+ }
1427
+ ],
1428
+ "stateMutability": "view",
1429
+ "type": "function"
1430
+ },
1431
+ {
1432
+ "inputs": [],
1433
+ "name": "getSupportedRoles",
1434
+ "outputs": [
1435
+ {
1436
+ "internalType": "bytes32[]",
1437
+ "name": "",
1438
+ "type": "bytes32[]"
1439
+ }
1440
+ ],
1441
+ "stateMutability": "view",
1442
+ "type": "function"
1443
+ },
1444
+ {
1445
+ "inputs": [],
1446
+ "name": "getTimeLockPeriodSec",
1447
+ "outputs": [
1448
+ {
1449
+ "internalType": "uint256",
1450
+ "name": "",
1451
+ "type": "uint256"
1452
+ }
1453
+ ],
1454
+ "stateMutability": "view",
1455
+ "type": "function"
1456
+ },
1457
+ {
1458
+ "inputs": [
1459
+ {
1460
+ "internalType": "uint256",
1461
+ "name": "txId",
1462
+ "type": "uint256"
1463
+ }
1464
+ ],
1465
+ "name": "getTransaction",
1466
+ "outputs": [
1467
+ {
1468
+ "components": [
1469
+ {
1470
+ "internalType": "uint256",
1471
+ "name": "txId",
1472
+ "type": "uint256"
1473
+ },
1474
+ {
1475
+ "internalType": "uint256",
1476
+ "name": "releaseTime",
1477
+ "type": "uint256"
1478
+ },
1479
+ {
1480
+ "internalType": "enum EngineBlox.TxStatus",
1481
+ "name": "status",
1482
+ "type": "uint8"
1483
+ },
1484
+ {
1485
+ "components": [
1486
+ {
1487
+ "internalType": "address",
1488
+ "name": "requester",
1489
+ "type": "address"
1490
+ },
1491
+ {
1492
+ "internalType": "address",
1493
+ "name": "target",
1494
+ "type": "address"
1495
+ },
1496
+ {
1497
+ "internalType": "uint256",
1498
+ "name": "value",
1499
+ "type": "uint256"
1500
+ },
1501
+ {
1502
+ "internalType": "uint256",
1503
+ "name": "gasLimit",
1504
+ "type": "uint256"
1505
+ },
1506
+ {
1507
+ "internalType": "bytes32",
1508
+ "name": "operationType",
1509
+ "type": "bytes32"
1510
+ },
1511
+ {
1512
+ "internalType": "bytes4",
1513
+ "name": "executionSelector",
1514
+ "type": "bytes4"
1515
+ },
1516
+ {
1517
+ "internalType": "bytes",
1518
+ "name": "executionParams",
1519
+ "type": "bytes"
1520
+ }
1521
+ ],
1522
+ "internalType": "struct EngineBlox.TxParams",
1523
+ "name": "params",
1524
+ "type": "tuple"
1525
+ },
1526
+ {
1527
+ "internalType": "bytes32",
1528
+ "name": "message",
1529
+ "type": "bytes32"
1530
+ },
1531
+ {
1532
+ "internalType": "bytes",
1533
+ "name": "result",
1534
+ "type": "bytes"
1535
+ },
1536
+ {
1537
+ "components": [
1538
+ {
1539
+ "internalType": "address",
1540
+ "name": "recipient",
1541
+ "type": "address"
1542
+ },
1543
+ {
1544
+ "internalType": "uint256",
1545
+ "name": "nativeTokenAmount",
1546
+ "type": "uint256"
1547
+ },
1548
+ {
1549
+ "internalType": "address",
1550
+ "name": "erc20TokenAddress",
1551
+ "type": "address"
1552
+ },
1553
+ {
1554
+ "internalType": "uint256",
1555
+ "name": "erc20TokenAmount",
1556
+ "type": "uint256"
1557
+ }
1558
+ ],
1559
+ "internalType": "struct EngineBlox.PaymentDetails",
1560
+ "name": "payment",
1561
+ "type": "tuple"
1562
+ }
1563
+ ],
1564
+ "internalType": "struct EngineBlox.TxRecord",
1565
+ "name": "",
1566
+ "type": "tuple"
1567
+ }
1568
+ ],
1569
+ "stateMutability": "view",
1570
+ "type": "function"
1571
+ },
1572
+ {
1573
+ "inputs": [
1574
+ {
1575
+ "internalType": "uint256",
1576
+ "name": "fromTxId",
1577
+ "type": "uint256"
1578
+ },
1579
+ {
1580
+ "internalType": "uint256",
1581
+ "name": "toTxId",
1582
+ "type": "uint256"
1583
+ }
1584
+ ],
1585
+ "name": "getTransactionHistory",
1586
+ "outputs": [
1587
+ {
1588
+ "components": [
1589
+ {
1590
+ "internalType": "uint256",
1591
+ "name": "txId",
1592
+ "type": "uint256"
1593
+ },
1594
+ {
1595
+ "internalType": "uint256",
1596
+ "name": "releaseTime",
1597
+ "type": "uint256"
1598
+ },
1599
+ {
1600
+ "internalType": "enum EngineBlox.TxStatus",
1601
+ "name": "status",
1602
+ "type": "uint8"
1603
+ },
1604
+ {
1605
+ "components": [
1606
+ {
1607
+ "internalType": "address",
1608
+ "name": "requester",
1609
+ "type": "address"
1610
+ },
1611
+ {
1612
+ "internalType": "address",
1613
+ "name": "target",
1614
+ "type": "address"
1615
+ },
1616
+ {
1617
+ "internalType": "uint256",
1618
+ "name": "value",
1619
+ "type": "uint256"
1620
+ },
1621
+ {
1622
+ "internalType": "uint256",
1623
+ "name": "gasLimit",
1624
+ "type": "uint256"
1625
+ },
1626
+ {
1627
+ "internalType": "bytes32",
1628
+ "name": "operationType",
1629
+ "type": "bytes32"
1630
+ },
1631
+ {
1632
+ "internalType": "bytes4",
1633
+ "name": "executionSelector",
1634
+ "type": "bytes4"
1635
+ },
1636
+ {
1637
+ "internalType": "bytes",
1638
+ "name": "executionParams",
1639
+ "type": "bytes"
1640
+ }
1641
+ ],
1642
+ "internalType": "struct EngineBlox.TxParams",
1643
+ "name": "params",
1644
+ "type": "tuple"
1645
+ },
1646
+ {
1647
+ "internalType": "bytes32",
1648
+ "name": "message",
1649
+ "type": "bytes32"
1650
+ },
1651
+ {
1652
+ "internalType": "bytes",
1653
+ "name": "result",
1654
+ "type": "bytes"
1655
+ },
1656
+ {
1657
+ "components": [
1658
+ {
1659
+ "internalType": "address",
1660
+ "name": "recipient",
1661
+ "type": "address"
1662
+ },
1663
+ {
1664
+ "internalType": "uint256",
1665
+ "name": "nativeTokenAmount",
1666
+ "type": "uint256"
1667
+ },
1668
+ {
1669
+ "internalType": "address",
1670
+ "name": "erc20TokenAddress",
1671
+ "type": "address"
1672
+ },
1673
+ {
1674
+ "internalType": "uint256",
1675
+ "name": "erc20TokenAmount",
1676
+ "type": "uint256"
1677
+ }
1678
+ ],
1679
+ "internalType": "struct EngineBlox.PaymentDetails",
1680
+ "name": "payment",
1681
+ "type": "tuple"
1682
+ }
1683
+ ],
1684
+ "internalType": "struct EngineBlox.TxRecord[]",
1685
+ "name": "",
1686
+ "type": "tuple[]"
1687
+ }
1688
+ ],
1689
+ "stateMutability": "view",
1690
+ "type": "function"
1691
+ },
1692
+ {
1693
+ "inputs": [
1694
+ {
1695
+ "internalType": "address",
1696
+ "name": "wallet",
1697
+ "type": "address"
1698
+ }
1699
+ ],
1700
+ "name": "getWalletRoles",
1701
+ "outputs": [
1702
+ {
1703
+ "internalType": "bytes32[]",
1704
+ "name": "",
1705
+ "type": "bytes32[]"
1706
+ }
1707
+ ],
1708
+ "stateMutability": "view",
1709
+ "type": "function"
1710
+ },
1711
+ {
1712
+ "inputs": [
1713
+ {
1714
+ "internalType": "bytes32",
1715
+ "name": "roleHash",
1716
+ "type": "bytes32"
1717
+ }
1718
+ ],
1719
+ "name": "getWalletsInRole",
1720
+ "outputs": [
1721
+ {
1722
+ "internalType": "address[]",
1723
+ "name": "",
1724
+ "type": "address[]"
1725
+ }
1726
+ ],
1727
+ "stateMutability": "view",
1728
+ "type": "function"
1729
+ },
1730
+ {
1731
+ "inputs": [
1732
+ {
1733
+ "internalType": "bytes32",
1734
+ "name": "roleHash",
1735
+ "type": "bytes32"
1736
+ },
1737
+ {
1738
+ "internalType": "address",
1739
+ "name": "wallet",
1740
+ "type": "address"
1741
+ }
1742
+ ],
1743
+ "name": "hasRole",
1744
+ "outputs": [
1745
+ {
1746
+ "internalType": "bool",
1747
+ "name": "",
1748
+ "type": "bool"
1749
+ }
1750
+ ],
1751
+ "stateMutability": "view",
1752
+ "type": "function"
1753
+ },
1754
+ {
1755
+ "inputs": [],
1756
+ "name": "initialized",
1757
+ "outputs": [
1758
+ {
1759
+ "internalType": "bool",
1760
+ "name": "",
1761
+ "type": "bool"
1762
+ }
1763
+ ],
1764
+ "stateMutability": "view",
1765
+ "type": "function"
1766
+ },
1767
+ {
1768
+ "inputs": [
1769
+ {
1770
+ "internalType": "bytes4",
1771
+ "name": "functionSelector",
1772
+ "type": "bytes4"
1773
+ },
1774
+ {
1775
+ "internalType": "enum EngineBlox.TxAction",
1776
+ "name": "action",
1777
+ "type": "uint8"
1778
+ }
1779
+ ],
1780
+ "name": "isActionSupportedByFunction",
1781
+ "outputs": [
1782
+ {
1783
+ "internalType": "bool",
1784
+ "name": "",
1785
+ "type": "bool"
1786
+ }
1787
+ ],
1788
+ "stateMutability": "view",
1789
+ "type": "function"
1790
+ },
1791
+ {
1792
+ "inputs": [],
1793
+ "name": "owner",
1794
+ "outputs": [
1795
+ {
1796
+ "internalType": "address",
1797
+ "name": "",
1798
+ "type": "address"
1799
+ }
1800
+ ],
1801
+ "stateMutability": "view",
1802
+ "type": "function"
1803
+ },
1804
+ {
1805
+ "inputs": [
1806
+ {
1807
+ "components": [
1808
+ {
1809
+ "internalType": "enum RuntimeRBAC.RoleConfigActionType",
1810
+ "name": "actionType",
1811
+ "type": "uint8"
1812
+ },
1813
+ {
1814
+ "internalType": "bytes",
1815
+ "name": "data",
1816
+ "type": "bytes"
1817
+ }
1818
+ ],
1819
+ "internalType": "struct RuntimeRBAC.RoleConfigAction[]",
1820
+ "name": "actions",
1821
+ "type": "tuple[]"
1822
+ }
1823
+ ],
1824
+ "name": "roleConfigBatchExecutionParams",
1825
+ "outputs": [
1826
+ {
1827
+ "internalType": "bytes",
1828
+ "name": "",
1829
+ "type": "bytes"
1830
+ }
1831
+ ],
1832
+ "stateMutability": "pure",
1833
+ "type": "function"
1834
+ },
1835
+ {
1836
+ "inputs": [
1837
+ {
1838
+ "components": [
1839
+ {
1840
+ "components": [
1841
+ {
1842
+ "internalType": "uint256",
1843
+ "name": "txId",
1844
+ "type": "uint256"
1845
+ },
1846
+ {
1847
+ "internalType": "uint256",
1848
+ "name": "releaseTime",
1849
+ "type": "uint256"
1850
+ },
1851
+ {
1852
+ "internalType": "enum EngineBlox.TxStatus",
1853
+ "name": "status",
1854
+ "type": "uint8"
1855
+ },
1856
+ {
1857
+ "components": [
1858
+ {
1859
+ "internalType": "address",
1860
+ "name": "requester",
1861
+ "type": "address"
1862
+ },
1863
+ {
1864
+ "internalType": "address",
1865
+ "name": "target",
1866
+ "type": "address"
1867
+ },
1868
+ {
1869
+ "internalType": "uint256",
1870
+ "name": "value",
1871
+ "type": "uint256"
1872
+ },
1873
+ {
1874
+ "internalType": "uint256",
1875
+ "name": "gasLimit",
1876
+ "type": "uint256"
1877
+ },
1878
+ {
1879
+ "internalType": "bytes32",
1880
+ "name": "operationType",
1881
+ "type": "bytes32"
1882
+ },
1883
+ {
1884
+ "internalType": "bytes4",
1885
+ "name": "executionSelector",
1886
+ "type": "bytes4"
1887
+ },
1888
+ {
1889
+ "internalType": "bytes",
1890
+ "name": "executionParams",
1891
+ "type": "bytes"
1892
+ }
1893
+ ],
1894
+ "internalType": "struct EngineBlox.TxParams",
1895
+ "name": "params",
1896
+ "type": "tuple"
1897
+ },
1898
+ {
1899
+ "internalType": "bytes32",
1900
+ "name": "message",
1901
+ "type": "bytes32"
1902
+ },
1903
+ {
1904
+ "internalType": "bytes",
1905
+ "name": "result",
1906
+ "type": "bytes"
1907
+ },
1908
+ {
1909
+ "components": [
1910
+ {
1911
+ "internalType": "address",
1912
+ "name": "recipient",
1913
+ "type": "address"
1914
+ },
1915
+ {
1916
+ "internalType": "uint256",
1917
+ "name": "nativeTokenAmount",
1918
+ "type": "uint256"
1919
+ },
1920
+ {
1921
+ "internalType": "address",
1922
+ "name": "erc20TokenAddress",
1923
+ "type": "address"
1924
+ },
1925
+ {
1926
+ "internalType": "uint256",
1927
+ "name": "erc20TokenAmount",
1928
+ "type": "uint256"
1929
+ }
1930
+ ],
1931
+ "internalType": "struct EngineBlox.PaymentDetails",
1932
+ "name": "payment",
1933
+ "type": "tuple"
1934
+ }
1935
+ ],
1936
+ "internalType": "struct EngineBlox.TxRecord",
1937
+ "name": "txRecord",
1938
+ "type": "tuple"
1939
+ },
1940
+ {
1941
+ "components": [
1942
+ {
1943
+ "internalType": "uint256",
1944
+ "name": "chainId",
1945
+ "type": "uint256"
1946
+ },
1947
+ {
1948
+ "internalType": "uint256",
1949
+ "name": "nonce",
1950
+ "type": "uint256"
1951
+ },
1952
+ {
1953
+ "internalType": "address",
1954
+ "name": "handlerContract",
1955
+ "type": "address"
1956
+ },
1957
+ {
1958
+ "internalType": "bytes4",
1959
+ "name": "handlerSelector",
1960
+ "type": "bytes4"
1961
+ },
1962
+ {
1963
+ "internalType": "enum EngineBlox.TxAction",
1964
+ "name": "action",
1965
+ "type": "uint8"
1966
+ },
1967
+ {
1968
+ "internalType": "uint256",
1969
+ "name": "deadline",
1970
+ "type": "uint256"
1971
+ },
1972
+ {
1973
+ "internalType": "uint256",
1974
+ "name": "maxGasPrice",
1975
+ "type": "uint256"
1976
+ },
1977
+ {
1978
+ "internalType": "address",
1979
+ "name": "signer",
1980
+ "type": "address"
1981
+ }
1982
+ ],
1983
+ "internalType": "struct EngineBlox.MetaTxParams",
1984
+ "name": "params",
1985
+ "type": "tuple"
1986
+ },
1987
+ {
1988
+ "internalType": "bytes32",
1989
+ "name": "message",
1990
+ "type": "bytes32"
1991
+ },
1992
+ {
1993
+ "internalType": "bytes",
1994
+ "name": "signature",
1995
+ "type": "bytes"
1996
+ },
1997
+ {
1998
+ "internalType": "bytes",
1999
+ "name": "data",
2000
+ "type": "bytes"
2001
+ }
2002
+ ],
2003
+ "internalType": "struct EngineBlox.MetaTransaction",
2004
+ "name": "metaTx",
2005
+ "type": "tuple"
2006
+ }
2007
+ ],
2008
+ "name": "roleConfigBatchRequestAndApprove",
2009
+ "outputs": [
2010
+ {
2011
+ "components": [
2012
+ {
2013
+ "internalType": "uint256",
2014
+ "name": "txId",
2015
+ "type": "uint256"
2016
+ },
2017
+ {
2018
+ "internalType": "uint256",
2019
+ "name": "releaseTime",
2020
+ "type": "uint256"
2021
+ },
2022
+ {
2023
+ "internalType": "enum EngineBlox.TxStatus",
2024
+ "name": "status",
2025
+ "type": "uint8"
2026
+ },
2027
+ {
2028
+ "components": [
2029
+ {
2030
+ "internalType": "address",
2031
+ "name": "requester",
2032
+ "type": "address"
2033
+ },
2034
+ {
2035
+ "internalType": "address",
2036
+ "name": "target",
2037
+ "type": "address"
2038
+ },
2039
+ {
2040
+ "internalType": "uint256",
2041
+ "name": "value",
2042
+ "type": "uint256"
2043
+ },
2044
+ {
2045
+ "internalType": "uint256",
2046
+ "name": "gasLimit",
2047
+ "type": "uint256"
2048
+ },
2049
+ {
2050
+ "internalType": "bytes32",
2051
+ "name": "operationType",
2052
+ "type": "bytes32"
2053
+ },
2054
+ {
2055
+ "internalType": "bytes4",
2056
+ "name": "executionSelector",
2057
+ "type": "bytes4"
2058
+ },
2059
+ {
2060
+ "internalType": "bytes",
2061
+ "name": "executionParams",
2062
+ "type": "bytes"
2063
+ }
2064
+ ],
2065
+ "internalType": "struct EngineBlox.TxParams",
2066
+ "name": "params",
2067
+ "type": "tuple"
2068
+ },
2069
+ {
2070
+ "internalType": "bytes32",
2071
+ "name": "message",
2072
+ "type": "bytes32"
2073
+ },
2074
+ {
2075
+ "internalType": "bytes",
2076
+ "name": "result",
2077
+ "type": "bytes"
2078
+ },
2079
+ {
2080
+ "components": [
2081
+ {
2082
+ "internalType": "address",
2083
+ "name": "recipient",
2084
+ "type": "address"
2085
+ },
2086
+ {
2087
+ "internalType": "uint256",
2088
+ "name": "nativeTokenAmount",
2089
+ "type": "uint256"
2090
+ },
2091
+ {
2092
+ "internalType": "address",
2093
+ "name": "erc20TokenAddress",
2094
+ "type": "address"
2095
+ },
2096
+ {
2097
+ "internalType": "uint256",
2098
+ "name": "erc20TokenAmount",
2099
+ "type": "uint256"
2100
+ }
2101
+ ],
2102
+ "internalType": "struct EngineBlox.PaymentDetails",
2103
+ "name": "payment",
2104
+ "type": "tuple"
2105
+ }
2106
+ ],
2107
+ "internalType": "struct EngineBlox.TxRecord",
2108
+ "name": "",
2109
+ "type": "tuple"
2110
+ }
2111
+ ],
2112
+ "stateMutability": "nonpayable",
2113
+ "type": "function"
2114
+ },
2115
+ {
2116
+ "inputs": [
2117
+ {
2118
+ "components": [
2119
+ {
2120
+ "components": [
2121
+ {
2122
+ "internalType": "uint256",
2123
+ "name": "txId",
2124
+ "type": "uint256"
2125
+ },
2126
+ {
2127
+ "internalType": "uint256",
2128
+ "name": "releaseTime",
2129
+ "type": "uint256"
2130
+ },
2131
+ {
2132
+ "internalType": "enum EngineBlox.TxStatus",
2133
+ "name": "status",
2134
+ "type": "uint8"
2135
+ },
2136
+ {
2137
+ "components": [
2138
+ {
2139
+ "internalType": "address",
2140
+ "name": "requester",
2141
+ "type": "address"
2142
+ },
2143
+ {
2144
+ "internalType": "address",
2145
+ "name": "target",
2146
+ "type": "address"
2147
+ },
2148
+ {
2149
+ "internalType": "uint256",
2150
+ "name": "value",
2151
+ "type": "uint256"
2152
+ },
2153
+ {
2154
+ "internalType": "uint256",
2155
+ "name": "gasLimit",
2156
+ "type": "uint256"
2157
+ },
2158
+ {
2159
+ "internalType": "bytes32",
2160
+ "name": "operationType",
2161
+ "type": "bytes32"
2162
+ },
2163
+ {
2164
+ "internalType": "bytes4",
2165
+ "name": "executionSelector",
2166
+ "type": "bytes4"
2167
+ },
2168
+ {
2169
+ "internalType": "bytes",
2170
+ "name": "executionParams",
2171
+ "type": "bytes"
2172
+ }
2173
+ ],
2174
+ "internalType": "struct EngineBlox.TxParams",
2175
+ "name": "params",
2176
+ "type": "tuple"
2177
+ },
2178
+ {
2179
+ "internalType": "bytes32",
2180
+ "name": "message",
2181
+ "type": "bytes32"
2182
+ },
2183
+ {
2184
+ "internalType": "bytes",
2185
+ "name": "result",
2186
+ "type": "bytes"
2187
+ },
2188
+ {
2189
+ "components": [
2190
+ {
2191
+ "internalType": "address",
2192
+ "name": "recipient",
2193
+ "type": "address"
2194
+ },
2195
+ {
2196
+ "internalType": "uint256",
2197
+ "name": "nativeTokenAmount",
2198
+ "type": "uint256"
2199
+ },
2200
+ {
2201
+ "internalType": "address",
2202
+ "name": "erc20TokenAddress",
2203
+ "type": "address"
2204
+ },
2205
+ {
2206
+ "internalType": "uint256",
2207
+ "name": "erc20TokenAmount",
2208
+ "type": "uint256"
2209
+ }
2210
+ ],
2211
+ "internalType": "struct EngineBlox.PaymentDetails",
2212
+ "name": "payment",
2213
+ "type": "tuple"
2214
+ }
2215
+ ],
2216
+ "internalType": "struct EngineBlox.TxRecord",
2217
+ "name": "txRecord",
2218
+ "type": "tuple"
2219
+ },
2220
+ {
2221
+ "components": [
2222
+ {
2223
+ "internalType": "uint256",
2224
+ "name": "chainId",
2225
+ "type": "uint256"
2226
+ },
2227
+ {
2228
+ "internalType": "uint256",
2229
+ "name": "nonce",
2230
+ "type": "uint256"
2231
+ },
2232
+ {
2233
+ "internalType": "address",
2234
+ "name": "handlerContract",
2235
+ "type": "address"
2236
+ },
2237
+ {
2238
+ "internalType": "bytes4",
2239
+ "name": "handlerSelector",
2240
+ "type": "bytes4"
2241
+ },
2242
+ {
2243
+ "internalType": "enum EngineBlox.TxAction",
2244
+ "name": "action",
2245
+ "type": "uint8"
2246
+ },
2247
+ {
2248
+ "internalType": "uint256",
2249
+ "name": "deadline",
2250
+ "type": "uint256"
2251
+ },
2252
+ {
2253
+ "internalType": "uint256",
2254
+ "name": "maxGasPrice",
2255
+ "type": "uint256"
2256
+ },
2257
+ {
2258
+ "internalType": "address",
2259
+ "name": "signer",
2260
+ "type": "address"
2261
+ }
2262
+ ],
2263
+ "internalType": "struct EngineBlox.MetaTxParams",
2264
+ "name": "params",
2265
+ "type": "tuple"
2266
+ },
2267
+ {
2268
+ "internalType": "bytes32",
2269
+ "name": "message",
2270
+ "type": "bytes32"
2271
+ },
2272
+ {
2273
+ "internalType": "bytes",
2274
+ "name": "signature",
2275
+ "type": "bytes"
2276
+ },
2277
+ {
2278
+ "internalType": "bytes",
2279
+ "name": "data",
2280
+ "type": "bytes"
2281
+ }
2282
+ ],
2283
+ "internalType": "struct EngineBlox.MetaTransaction",
2284
+ "name": "metaTx",
2285
+ "type": "tuple"
2286
+ }
2287
+ ],
2288
+ "name": "transferOwnershipApprovalWithMetaTx",
2289
+ "outputs": [
2290
+ {
2291
+ "components": [
2292
+ {
2293
+ "internalType": "uint256",
2294
+ "name": "txId",
2295
+ "type": "uint256"
2296
+ },
2297
+ {
2298
+ "internalType": "uint256",
2299
+ "name": "releaseTime",
2300
+ "type": "uint256"
2301
+ },
2302
+ {
2303
+ "internalType": "enum EngineBlox.TxStatus",
2304
+ "name": "status",
2305
+ "type": "uint8"
2306
+ },
2307
+ {
2308
+ "components": [
2309
+ {
2310
+ "internalType": "address",
2311
+ "name": "requester",
2312
+ "type": "address"
2313
+ },
2314
+ {
2315
+ "internalType": "address",
2316
+ "name": "target",
2317
+ "type": "address"
2318
+ },
2319
+ {
2320
+ "internalType": "uint256",
2321
+ "name": "value",
2322
+ "type": "uint256"
2323
+ },
2324
+ {
2325
+ "internalType": "uint256",
2326
+ "name": "gasLimit",
2327
+ "type": "uint256"
2328
+ },
2329
+ {
2330
+ "internalType": "bytes32",
2331
+ "name": "operationType",
2332
+ "type": "bytes32"
2333
+ },
2334
+ {
2335
+ "internalType": "bytes4",
2336
+ "name": "executionSelector",
2337
+ "type": "bytes4"
2338
+ },
2339
+ {
2340
+ "internalType": "bytes",
2341
+ "name": "executionParams",
2342
+ "type": "bytes"
2343
+ }
2344
+ ],
2345
+ "internalType": "struct EngineBlox.TxParams",
2346
+ "name": "params",
2347
+ "type": "tuple"
2348
+ },
2349
+ {
2350
+ "internalType": "bytes32",
2351
+ "name": "message",
2352
+ "type": "bytes32"
2353
+ },
2354
+ {
2355
+ "internalType": "bytes",
2356
+ "name": "result",
2357
+ "type": "bytes"
2358
+ },
2359
+ {
2360
+ "components": [
2361
+ {
2362
+ "internalType": "address",
2363
+ "name": "recipient",
2364
+ "type": "address"
2365
+ },
2366
+ {
2367
+ "internalType": "uint256",
2368
+ "name": "nativeTokenAmount",
2369
+ "type": "uint256"
2370
+ },
2371
+ {
2372
+ "internalType": "address",
2373
+ "name": "erc20TokenAddress",
2374
+ "type": "address"
2375
+ },
2376
+ {
2377
+ "internalType": "uint256",
2378
+ "name": "erc20TokenAmount",
2379
+ "type": "uint256"
2380
+ }
2381
+ ],
2382
+ "internalType": "struct EngineBlox.PaymentDetails",
2383
+ "name": "payment",
2384
+ "type": "tuple"
2385
+ }
2386
+ ],
2387
+ "internalType": "struct EngineBlox.TxRecord",
2388
+ "name": "",
2389
+ "type": "tuple"
2390
+ }
2391
+ ],
2392
+ "stateMutability": "nonpayable",
2393
+ "type": "function"
2394
+ },
2395
+ {
2396
+ "inputs": [
2397
+ {
2398
+ "internalType": "uint256",
2399
+ "name": "txId",
2400
+ "type": "uint256"
2401
+ }
2402
+ ],
2403
+ "name": "transferOwnershipCancellation",
2404
+ "outputs": [
2405
+ {
2406
+ "components": [
2407
+ {
2408
+ "internalType": "uint256",
2409
+ "name": "txId",
2410
+ "type": "uint256"
2411
+ },
2412
+ {
2413
+ "internalType": "uint256",
2414
+ "name": "releaseTime",
2415
+ "type": "uint256"
2416
+ },
2417
+ {
2418
+ "internalType": "enum EngineBlox.TxStatus",
2419
+ "name": "status",
2420
+ "type": "uint8"
2421
+ },
2422
+ {
2423
+ "components": [
2424
+ {
2425
+ "internalType": "address",
2426
+ "name": "requester",
2427
+ "type": "address"
2428
+ },
2429
+ {
2430
+ "internalType": "address",
2431
+ "name": "target",
2432
+ "type": "address"
2433
+ },
2434
+ {
2435
+ "internalType": "uint256",
2436
+ "name": "value",
2437
+ "type": "uint256"
2438
+ },
2439
+ {
2440
+ "internalType": "uint256",
2441
+ "name": "gasLimit",
2442
+ "type": "uint256"
2443
+ },
2444
+ {
2445
+ "internalType": "bytes32",
2446
+ "name": "operationType",
2447
+ "type": "bytes32"
2448
+ },
2449
+ {
2450
+ "internalType": "bytes4",
2451
+ "name": "executionSelector",
2452
+ "type": "bytes4"
2453
+ },
2454
+ {
2455
+ "internalType": "bytes",
2456
+ "name": "executionParams",
2457
+ "type": "bytes"
2458
+ }
2459
+ ],
2460
+ "internalType": "struct EngineBlox.TxParams",
2461
+ "name": "params",
2462
+ "type": "tuple"
2463
+ },
2464
+ {
2465
+ "internalType": "bytes32",
2466
+ "name": "message",
2467
+ "type": "bytes32"
2468
+ },
2469
+ {
2470
+ "internalType": "bytes",
2471
+ "name": "result",
2472
+ "type": "bytes"
2473
+ },
2474
+ {
2475
+ "components": [
2476
+ {
2477
+ "internalType": "address",
2478
+ "name": "recipient",
2479
+ "type": "address"
2480
+ },
2481
+ {
2482
+ "internalType": "uint256",
2483
+ "name": "nativeTokenAmount",
2484
+ "type": "uint256"
2485
+ },
2486
+ {
2487
+ "internalType": "address",
2488
+ "name": "erc20TokenAddress",
2489
+ "type": "address"
2490
+ },
2491
+ {
2492
+ "internalType": "uint256",
2493
+ "name": "erc20TokenAmount",
2494
+ "type": "uint256"
2495
+ }
2496
+ ],
2497
+ "internalType": "struct EngineBlox.PaymentDetails",
2498
+ "name": "payment",
2499
+ "type": "tuple"
2500
+ }
2501
+ ],
2502
+ "internalType": "struct EngineBlox.TxRecord",
2503
+ "name": "",
2504
+ "type": "tuple"
2505
+ }
2506
+ ],
2507
+ "stateMutability": "nonpayable",
2508
+ "type": "function"
2509
+ },
2510
+ {
2511
+ "inputs": [
2512
+ {
2513
+ "components": [
2514
+ {
2515
+ "components": [
2516
+ {
2517
+ "internalType": "uint256",
2518
+ "name": "txId",
2519
+ "type": "uint256"
2520
+ },
2521
+ {
2522
+ "internalType": "uint256",
2523
+ "name": "releaseTime",
2524
+ "type": "uint256"
2525
+ },
2526
+ {
2527
+ "internalType": "enum EngineBlox.TxStatus",
2528
+ "name": "status",
2529
+ "type": "uint8"
2530
+ },
2531
+ {
2532
+ "components": [
2533
+ {
2534
+ "internalType": "address",
2535
+ "name": "requester",
2536
+ "type": "address"
2537
+ },
2538
+ {
2539
+ "internalType": "address",
2540
+ "name": "target",
2541
+ "type": "address"
2542
+ },
2543
+ {
2544
+ "internalType": "uint256",
2545
+ "name": "value",
2546
+ "type": "uint256"
2547
+ },
2548
+ {
2549
+ "internalType": "uint256",
2550
+ "name": "gasLimit",
2551
+ "type": "uint256"
2552
+ },
2553
+ {
2554
+ "internalType": "bytes32",
2555
+ "name": "operationType",
2556
+ "type": "bytes32"
2557
+ },
2558
+ {
2559
+ "internalType": "bytes4",
2560
+ "name": "executionSelector",
2561
+ "type": "bytes4"
2562
+ },
2563
+ {
2564
+ "internalType": "bytes",
2565
+ "name": "executionParams",
2566
+ "type": "bytes"
2567
+ }
2568
+ ],
2569
+ "internalType": "struct EngineBlox.TxParams",
2570
+ "name": "params",
2571
+ "type": "tuple"
2572
+ },
2573
+ {
2574
+ "internalType": "bytes32",
2575
+ "name": "message",
2576
+ "type": "bytes32"
2577
+ },
2578
+ {
2579
+ "internalType": "bytes",
2580
+ "name": "result",
2581
+ "type": "bytes"
2582
+ },
2583
+ {
2584
+ "components": [
2585
+ {
2586
+ "internalType": "address",
2587
+ "name": "recipient",
2588
+ "type": "address"
2589
+ },
2590
+ {
2591
+ "internalType": "uint256",
2592
+ "name": "nativeTokenAmount",
2593
+ "type": "uint256"
2594
+ },
2595
+ {
2596
+ "internalType": "address",
2597
+ "name": "erc20TokenAddress",
2598
+ "type": "address"
2599
+ },
2600
+ {
2601
+ "internalType": "uint256",
2602
+ "name": "erc20TokenAmount",
2603
+ "type": "uint256"
2604
+ }
2605
+ ],
2606
+ "internalType": "struct EngineBlox.PaymentDetails",
2607
+ "name": "payment",
2608
+ "type": "tuple"
2609
+ }
2610
+ ],
2611
+ "internalType": "struct EngineBlox.TxRecord",
2612
+ "name": "txRecord",
2613
+ "type": "tuple"
2614
+ },
2615
+ {
2616
+ "components": [
2617
+ {
2618
+ "internalType": "uint256",
2619
+ "name": "chainId",
2620
+ "type": "uint256"
2621
+ },
2622
+ {
2623
+ "internalType": "uint256",
2624
+ "name": "nonce",
2625
+ "type": "uint256"
2626
+ },
2627
+ {
2628
+ "internalType": "address",
2629
+ "name": "handlerContract",
2630
+ "type": "address"
2631
+ },
2632
+ {
2633
+ "internalType": "bytes4",
2634
+ "name": "handlerSelector",
2635
+ "type": "bytes4"
2636
+ },
2637
+ {
2638
+ "internalType": "enum EngineBlox.TxAction",
2639
+ "name": "action",
2640
+ "type": "uint8"
2641
+ },
2642
+ {
2643
+ "internalType": "uint256",
2644
+ "name": "deadline",
2645
+ "type": "uint256"
2646
+ },
2647
+ {
2648
+ "internalType": "uint256",
2649
+ "name": "maxGasPrice",
2650
+ "type": "uint256"
2651
+ },
2652
+ {
2653
+ "internalType": "address",
2654
+ "name": "signer",
2655
+ "type": "address"
2656
+ }
2657
+ ],
2658
+ "internalType": "struct EngineBlox.MetaTxParams",
2659
+ "name": "params",
2660
+ "type": "tuple"
2661
+ },
2662
+ {
2663
+ "internalType": "bytes32",
2664
+ "name": "message",
2665
+ "type": "bytes32"
2666
+ },
2667
+ {
2668
+ "internalType": "bytes",
2669
+ "name": "signature",
2670
+ "type": "bytes"
2671
+ },
2672
+ {
2673
+ "internalType": "bytes",
2674
+ "name": "data",
2675
+ "type": "bytes"
2676
+ }
2677
+ ],
2678
+ "internalType": "struct EngineBlox.MetaTransaction",
2679
+ "name": "metaTx",
2680
+ "type": "tuple"
2681
+ }
2682
+ ],
2683
+ "name": "transferOwnershipCancellationWithMetaTx",
2684
+ "outputs": [
2685
+ {
2686
+ "components": [
2687
+ {
2688
+ "internalType": "uint256",
2689
+ "name": "txId",
2690
+ "type": "uint256"
2691
+ },
2692
+ {
2693
+ "internalType": "uint256",
2694
+ "name": "releaseTime",
2695
+ "type": "uint256"
2696
+ },
2697
+ {
2698
+ "internalType": "enum EngineBlox.TxStatus",
2699
+ "name": "status",
2700
+ "type": "uint8"
2701
+ },
2702
+ {
2703
+ "components": [
2704
+ {
2705
+ "internalType": "address",
2706
+ "name": "requester",
2707
+ "type": "address"
2708
+ },
2709
+ {
2710
+ "internalType": "address",
2711
+ "name": "target",
2712
+ "type": "address"
2713
+ },
2714
+ {
2715
+ "internalType": "uint256",
2716
+ "name": "value",
2717
+ "type": "uint256"
2718
+ },
2719
+ {
2720
+ "internalType": "uint256",
2721
+ "name": "gasLimit",
2722
+ "type": "uint256"
2723
+ },
2724
+ {
2725
+ "internalType": "bytes32",
2726
+ "name": "operationType",
2727
+ "type": "bytes32"
2728
+ },
2729
+ {
2730
+ "internalType": "bytes4",
2731
+ "name": "executionSelector",
2732
+ "type": "bytes4"
2733
+ },
2734
+ {
2735
+ "internalType": "bytes",
2736
+ "name": "executionParams",
2737
+ "type": "bytes"
2738
+ }
2739
+ ],
2740
+ "internalType": "struct EngineBlox.TxParams",
2741
+ "name": "params",
2742
+ "type": "tuple"
2743
+ },
2744
+ {
2745
+ "internalType": "bytes32",
2746
+ "name": "message",
2747
+ "type": "bytes32"
2748
+ },
2749
+ {
2750
+ "internalType": "bytes",
2751
+ "name": "result",
2752
+ "type": "bytes"
2753
+ },
2754
+ {
2755
+ "components": [
2756
+ {
2757
+ "internalType": "address",
2758
+ "name": "recipient",
2759
+ "type": "address"
2760
+ },
2761
+ {
2762
+ "internalType": "uint256",
2763
+ "name": "nativeTokenAmount",
2764
+ "type": "uint256"
2765
+ },
2766
+ {
2767
+ "internalType": "address",
2768
+ "name": "erc20TokenAddress",
2769
+ "type": "address"
2770
+ },
2771
+ {
2772
+ "internalType": "uint256",
2773
+ "name": "erc20TokenAmount",
2774
+ "type": "uint256"
2775
+ }
2776
+ ],
2777
+ "internalType": "struct EngineBlox.PaymentDetails",
2778
+ "name": "payment",
2779
+ "type": "tuple"
2780
+ }
2781
+ ],
2782
+ "internalType": "struct EngineBlox.TxRecord",
2783
+ "name": "",
2784
+ "type": "tuple"
2785
+ }
2786
+ ],
2787
+ "stateMutability": "nonpayable",
2788
+ "type": "function"
2789
+ },
2790
+ {
2791
+ "inputs": [
2792
+ {
2793
+ "internalType": "uint256",
2794
+ "name": "txId",
2795
+ "type": "uint256"
2796
+ }
2797
+ ],
2798
+ "name": "transferOwnershipDelayedApproval",
2799
+ "outputs": [
2800
+ {
2801
+ "components": [
2802
+ {
2803
+ "internalType": "uint256",
2804
+ "name": "txId",
2805
+ "type": "uint256"
2806
+ },
2807
+ {
2808
+ "internalType": "uint256",
2809
+ "name": "releaseTime",
2810
+ "type": "uint256"
2811
+ },
2812
+ {
2813
+ "internalType": "enum EngineBlox.TxStatus",
2814
+ "name": "status",
2815
+ "type": "uint8"
2816
+ },
2817
+ {
2818
+ "components": [
2819
+ {
2820
+ "internalType": "address",
2821
+ "name": "requester",
2822
+ "type": "address"
2823
+ },
2824
+ {
2825
+ "internalType": "address",
2826
+ "name": "target",
2827
+ "type": "address"
2828
+ },
2829
+ {
2830
+ "internalType": "uint256",
2831
+ "name": "value",
2832
+ "type": "uint256"
2833
+ },
2834
+ {
2835
+ "internalType": "uint256",
2836
+ "name": "gasLimit",
2837
+ "type": "uint256"
2838
+ },
2839
+ {
2840
+ "internalType": "bytes32",
2841
+ "name": "operationType",
2842
+ "type": "bytes32"
2843
+ },
2844
+ {
2845
+ "internalType": "bytes4",
2846
+ "name": "executionSelector",
2847
+ "type": "bytes4"
2848
+ },
2849
+ {
2850
+ "internalType": "bytes",
2851
+ "name": "executionParams",
2852
+ "type": "bytes"
2853
+ }
2854
+ ],
2855
+ "internalType": "struct EngineBlox.TxParams",
2856
+ "name": "params",
2857
+ "type": "tuple"
2858
+ },
2859
+ {
2860
+ "internalType": "bytes32",
2861
+ "name": "message",
2862
+ "type": "bytes32"
2863
+ },
2864
+ {
2865
+ "internalType": "bytes",
2866
+ "name": "result",
2867
+ "type": "bytes"
2868
+ },
2869
+ {
2870
+ "components": [
2871
+ {
2872
+ "internalType": "address",
2873
+ "name": "recipient",
2874
+ "type": "address"
2875
+ },
2876
+ {
2877
+ "internalType": "uint256",
2878
+ "name": "nativeTokenAmount",
2879
+ "type": "uint256"
2880
+ },
2881
+ {
2882
+ "internalType": "address",
2883
+ "name": "erc20TokenAddress",
2884
+ "type": "address"
2885
+ },
2886
+ {
2887
+ "internalType": "uint256",
2888
+ "name": "erc20TokenAmount",
2889
+ "type": "uint256"
2890
+ }
2891
+ ],
2892
+ "internalType": "struct EngineBlox.PaymentDetails",
2893
+ "name": "payment",
2894
+ "type": "tuple"
2895
+ }
2896
+ ],
2897
+ "internalType": "struct EngineBlox.TxRecord",
2898
+ "name": "",
2899
+ "type": "tuple"
2900
+ }
2901
+ ],
2902
+ "stateMutability": "nonpayable",
2903
+ "type": "function"
2904
+ },
2905
+ {
2906
+ "inputs": [],
2907
+ "name": "transferOwnershipRequest",
2908
+ "outputs": [
2909
+ {
2910
+ "components": [
2911
+ {
2912
+ "internalType": "uint256",
2913
+ "name": "txId",
2914
+ "type": "uint256"
2915
+ },
2916
+ {
2917
+ "internalType": "uint256",
2918
+ "name": "releaseTime",
2919
+ "type": "uint256"
2920
+ },
2921
+ {
2922
+ "internalType": "enum EngineBlox.TxStatus",
2923
+ "name": "status",
2924
+ "type": "uint8"
2925
+ },
2926
+ {
2927
+ "components": [
2928
+ {
2929
+ "internalType": "address",
2930
+ "name": "requester",
2931
+ "type": "address"
2932
+ },
2933
+ {
2934
+ "internalType": "address",
2935
+ "name": "target",
2936
+ "type": "address"
2937
+ },
2938
+ {
2939
+ "internalType": "uint256",
2940
+ "name": "value",
2941
+ "type": "uint256"
2942
+ },
2943
+ {
2944
+ "internalType": "uint256",
2945
+ "name": "gasLimit",
2946
+ "type": "uint256"
2947
+ },
2948
+ {
2949
+ "internalType": "bytes32",
2950
+ "name": "operationType",
2951
+ "type": "bytes32"
2952
+ },
2953
+ {
2954
+ "internalType": "bytes4",
2955
+ "name": "executionSelector",
2956
+ "type": "bytes4"
2957
+ },
2958
+ {
2959
+ "internalType": "bytes",
2960
+ "name": "executionParams",
2961
+ "type": "bytes"
2962
+ }
2963
+ ],
2964
+ "internalType": "struct EngineBlox.TxParams",
2965
+ "name": "params",
2966
+ "type": "tuple"
2967
+ },
2968
+ {
2969
+ "internalType": "bytes32",
2970
+ "name": "message",
2971
+ "type": "bytes32"
2972
+ },
2973
+ {
2974
+ "internalType": "bytes",
2975
+ "name": "result",
2976
+ "type": "bytes"
2977
+ },
2978
+ {
2979
+ "components": [
2980
+ {
2981
+ "internalType": "address",
2982
+ "name": "recipient",
2983
+ "type": "address"
2984
+ },
2985
+ {
2986
+ "internalType": "uint256",
2987
+ "name": "nativeTokenAmount",
2988
+ "type": "uint256"
2989
+ },
2990
+ {
2991
+ "internalType": "address",
2992
+ "name": "erc20TokenAddress",
2993
+ "type": "address"
2994
+ },
2995
+ {
2996
+ "internalType": "uint256",
2997
+ "name": "erc20TokenAmount",
2998
+ "type": "uint256"
2999
+ }
3000
+ ],
3001
+ "internalType": "struct EngineBlox.PaymentDetails",
3002
+ "name": "payment",
3003
+ "type": "tuple"
3004
+ }
3005
+ ],
3006
+ "internalType": "struct EngineBlox.TxRecord",
3007
+ "name": "",
3008
+ "type": "tuple"
3009
+ }
3010
+ ],
3011
+ "stateMutability": "nonpayable",
3012
+ "type": "function"
3013
+ },
3014
+ {
3015
+ "inputs": [
3016
+ {
3017
+ "components": [
3018
+ {
3019
+ "components": [
3020
+ {
3021
+ "internalType": "uint256",
3022
+ "name": "txId",
3023
+ "type": "uint256"
3024
+ },
3025
+ {
3026
+ "internalType": "uint256",
3027
+ "name": "releaseTime",
3028
+ "type": "uint256"
3029
+ },
3030
+ {
3031
+ "internalType": "enum EngineBlox.TxStatus",
3032
+ "name": "status",
3033
+ "type": "uint8"
3034
+ },
3035
+ {
3036
+ "components": [
3037
+ {
3038
+ "internalType": "address",
3039
+ "name": "requester",
3040
+ "type": "address"
3041
+ },
3042
+ {
3043
+ "internalType": "address",
3044
+ "name": "target",
3045
+ "type": "address"
3046
+ },
3047
+ {
3048
+ "internalType": "uint256",
3049
+ "name": "value",
3050
+ "type": "uint256"
3051
+ },
3052
+ {
3053
+ "internalType": "uint256",
3054
+ "name": "gasLimit",
3055
+ "type": "uint256"
3056
+ },
3057
+ {
3058
+ "internalType": "bytes32",
3059
+ "name": "operationType",
3060
+ "type": "bytes32"
3061
+ },
3062
+ {
3063
+ "internalType": "bytes4",
3064
+ "name": "executionSelector",
3065
+ "type": "bytes4"
3066
+ },
3067
+ {
3068
+ "internalType": "bytes",
3069
+ "name": "executionParams",
3070
+ "type": "bytes"
3071
+ }
3072
+ ],
3073
+ "internalType": "struct EngineBlox.TxParams",
3074
+ "name": "params",
3075
+ "type": "tuple"
3076
+ },
3077
+ {
3078
+ "internalType": "bytes32",
3079
+ "name": "message",
3080
+ "type": "bytes32"
3081
+ },
3082
+ {
3083
+ "internalType": "bytes",
3084
+ "name": "result",
3085
+ "type": "bytes"
3086
+ },
3087
+ {
3088
+ "components": [
3089
+ {
3090
+ "internalType": "address",
3091
+ "name": "recipient",
3092
+ "type": "address"
3093
+ },
3094
+ {
3095
+ "internalType": "uint256",
3096
+ "name": "nativeTokenAmount",
3097
+ "type": "uint256"
3098
+ },
3099
+ {
3100
+ "internalType": "address",
3101
+ "name": "erc20TokenAddress",
3102
+ "type": "address"
3103
+ },
3104
+ {
3105
+ "internalType": "uint256",
3106
+ "name": "erc20TokenAmount",
3107
+ "type": "uint256"
3108
+ }
3109
+ ],
3110
+ "internalType": "struct EngineBlox.PaymentDetails",
3111
+ "name": "payment",
3112
+ "type": "tuple"
3113
+ }
3114
+ ],
3115
+ "internalType": "struct EngineBlox.TxRecord",
3116
+ "name": "txRecord",
3117
+ "type": "tuple"
3118
+ },
3119
+ {
3120
+ "components": [
3121
+ {
3122
+ "internalType": "uint256",
3123
+ "name": "chainId",
3124
+ "type": "uint256"
3125
+ },
3126
+ {
3127
+ "internalType": "uint256",
3128
+ "name": "nonce",
3129
+ "type": "uint256"
3130
+ },
3131
+ {
3132
+ "internalType": "address",
3133
+ "name": "handlerContract",
3134
+ "type": "address"
3135
+ },
3136
+ {
3137
+ "internalType": "bytes4",
3138
+ "name": "handlerSelector",
3139
+ "type": "bytes4"
3140
+ },
3141
+ {
3142
+ "internalType": "enum EngineBlox.TxAction",
3143
+ "name": "action",
3144
+ "type": "uint8"
3145
+ },
3146
+ {
3147
+ "internalType": "uint256",
3148
+ "name": "deadline",
3149
+ "type": "uint256"
3150
+ },
3151
+ {
3152
+ "internalType": "uint256",
3153
+ "name": "maxGasPrice",
3154
+ "type": "uint256"
3155
+ },
3156
+ {
3157
+ "internalType": "address",
3158
+ "name": "signer",
3159
+ "type": "address"
3160
+ }
3161
+ ],
3162
+ "internalType": "struct EngineBlox.MetaTxParams",
3163
+ "name": "params",
3164
+ "type": "tuple"
3165
+ },
3166
+ {
3167
+ "internalType": "bytes32",
3168
+ "name": "message",
3169
+ "type": "bytes32"
3170
+ },
3171
+ {
3172
+ "internalType": "bytes",
3173
+ "name": "signature",
3174
+ "type": "bytes"
3175
+ },
3176
+ {
3177
+ "internalType": "bytes",
3178
+ "name": "data",
3179
+ "type": "bytes"
3180
+ }
3181
+ ],
3182
+ "internalType": "struct EngineBlox.MetaTransaction",
3183
+ "name": "metaTx",
3184
+ "type": "tuple"
3185
+ }
3186
+ ],
3187
+ "name": "updateBroadcasterApprovalWithMetaTx",
3188
+ "outputs": [
3189
+ {
3190
+ "components": [
3191
+ {
3192
+ "internalType": "uint256",
3193
+ "name": "txId",
3194
+ "type": "uint256"
3195
+ },
3196
+ {
3197
+ "internalType": "uint256",
3198
+ "name": "releaseTime",
3199
+ "type": "uint256"
3200
+ },
3201
+ {
3202
+ "internalType": "enum EngineBlox.TxStatus",
3203
+ "name": "status",
3204
+ "type": "uint8"
3205
+ },
3206
+ {
3207
+ "components": [
3208
+ {
3209
+ "internalType": "address",
3210
+ "name": "requester",
3211
+ "type": "address"
3212
+ },
3213
+ {
3214
+ "internalType": "address",
3215
+ "name": "target",
3216
+ "type": "address"
3217
+ },
3218
+ {
3219
+ "internalType": "uint256",
3220
+ "name": "value",
3221
+ "type": "uint256"
3222
+ },
3223
+ {
3224
+ "internalType": "uint256",
3225
+ "name": "gasLimit",
3226
+ "type": "uint256"
3227
+ },
3228
+ {
3229
+ "internalType": "bytes32",
3230
+ "name": "operationType",
3231
+ "type": "bytes32"
3232
+ },
3233
+ {
3234
+ "internalType": "bytes4",
3235
+ "name": "executionSelector",
3236
+ "type": "bytes4"
3237
+ },
3238
+ {
3239
+ "internalType": "bytes",
3240
+ "name": "executionParams",
3241
+ "type": "bytes"
3242
+ }
3243
+ ],
3244
+ "internalType": "struct EngineBlox.TxParams",
3245
+ "name": "params",
3246
+ "type": "tuple"
3247
+ },
3248
+ {
3249
+ "internalType": "bytes32",
3250
+ "name": "message",
3251
+ "type": "bytes32"
3252
+ },
3253
+ {
3254
+ "internalType": "bytes",
3255
+ "name": "result",
3256
+ "type": "bytes"
3257
+ },
3258
+ {
3259
+ "components": [
3260
+ {
3261
+ "internalType": "address",
3262
+ "name": "recipient",
3263
+ "type": "address"
3264
+ },
3265
+ {
3266
+ "internalType": "uint256",
3267
+ "name": "nativeTokenAmount",
3268
+ "type": "uint256"
3269
+ },
3270
+ {
3271
+ "internalType": "address",
3272
+ "name": "erc20TokenAddress",
3273
+ "type": "address"
3274
+ },
3275
+ {
3276
+ "internalType": "uint256",
3277
+ "name": "erc20TokenAmount",
3278
+ "type": "uint256"
3279
+ }
3280
+ ],
3281
+ "internalType": "struct EngineBlox.PaymentDetails",
3282
+ "name": "payment",
3283
+ "type": "tuple"
3284
+ }
3285
+ ],
3286
+ "internalType": "struct EngineBlox.TxRecord",
3287
+ "name": "",
3288
+ "type": "tuple"
3289
+ }
3290
+ ],
3291
+ "stateMutability": "nonpayable",
3292
+ "type": "function"
3293
+ },
3294
+ {
3295
+ "inputs": [
3296
+ {
3297
+ "internalType": "uint256",
3298
+ "name": "txId",
3299
+ "type": "uint256"
3300
+ }
3301
+ ],
3302
+ "name": "updateBroadcasterCancellation",
3303
+ "outputs": [
3304
+ {
3305
+ "components": [
3306
+ {
3307
+ "internalType": "uint256",
3308
+ "name": "txId",
3309
+ "type": "uint256"
3310
+ },
3311
+ {
3312
+ "internalType": "uint256",
3313
+ "name": "releaseTime",
3314
+ "type": "uint256"
3315
+ },
3316
+ {
3317
+ "internalType": "enum EngineBlox.TxStatus",
3318
+ "name": "status",
3319
+ "type": "uint8"
3320
+ },
3321
+ {
3322
+ "components": [
3323
+ {
3324
+ "internalType": "address",
3325
+ "name": "requester",
3326
+ "type": "address"
3327
+ },
3328
+ {
3329
+ "internalType": "address",
3330
+ "name": "target",
3331
+ "type": "address"
3332
+ },
3333
+ {
3334
+ "internalType": "uint256",
3335
+ "name": "value",
3336
+ "type": "uint256"
3337
+ },
3338
+ {
3339
+ "internalType": "uint256",
3340
+ "name": "gasLimit",
3341
+ "type": "uint256"
3342
+ },
3343
+ {
3344
+ "internalType": "bytes32",
3345
+ "name": "operationType",
3346
+ "type": "bytes32"
3347
+ },
3348
+ {
3349
+ "internalType": "bytes4",
3350
+ "name": "executionSelector",
3351
+ "type": "bytes4"
3352
+ },
3353
+ {
3354
+ "internalType": "bytes",
3355
+ "name": "executionParams",
3356
+ "type": "bytes"
3357
+ }
3358
+ ],
3359
+ "internalType": "struct EngineBlox.TxParams",
3360
+ "name": "params",
3361
+ "type": "tuple"
3362
+ },
3363
+ {
3364
+ "internalType": "bytes32",
3365
+ "name": "message",
3366
+ "type": "bytes32"
3367
+ },
3368
+ {
3369
+ "internalType": "bytes",
3370
+ "name": "result",
3371
+ "type": "bytes"
3372
+ },
3373
+ {
3374
+ "components": [
3375
+ {
3376
+ "internalType": "address",
3377
+ "name": "recipient",
3378
+ "type": "address"
3379
+ },
3380
+ {
3381
+ "internalType": "uint256",
3382
+ "name": "nativeTokenAmount",
3383
+ "type": "uint256"
3384
+ },
3385
+ {
3386
+ "internalType": "address",
3387
+ "name": "erc20TokenAddress",
3388
+ "type": "address"
3389
+ },
3390
+ {
3391
+ "internalType": "uint256",
3392
+ "name": "erc20TokenAmount",
3393
+ "type": "uint256"
3394
+ }
3395
+ ],
3396
+ "internalType": "struct EngineBlox.PaymentDetails",
3397
+ "name": "payment",
3398
+ "type": "tuple"
3399
+ }
3400
+ ],
3401
+ "internalType": "struct EngineBlox.TxRecord",
3402
+ "name": "",
3403
+ "type": "tuple"
3404
+ }
3405
+ ],
3406
+ "stateMutability": "nonpayable",
3407
+ "type": "function"
3408
+ },
3409
+ {
3410
+ "inputs": [
3411
+ {
3412
+ "components": [
3413
+ {
3414
+ "components": [
3415
+ {
3416
+ "internalType": "uint256",
3417
+ "name": "txId",
3418
+ "type": "uint256"
3419
+ },
3420
+ {
3421
+ "internalType": "uint256",
3422
+ "name": "releaseTime",
3423
+ "type": "uint256"
3424
+ },
3425
+ {
3426
+ "internalType": "enum EngineBlox.TxStatus",
3427
+ "name": "status",
3428
+ "type": "uint8"
3429
+ },
3430
+ {
3431
+ "components": [
3432
+ {
3433
+ "internalType": "address",
3434
+ "name": "requester",
3435
+ "type": "address"
3436
+ },
3437
+ {
3438
+ "internalType": "address",
3439
+ "name": "target",
3440
+ "type": "address"
3441
+ },
3442
+ {
3443
+ "internalType": "uint256",
3444
+ "name": "value",
3445
+ "type": "uint256"
3446
+ },
3447
+ {
3448
+ "internalType": "uint256",
3449
+ "name": "gasLimit",
3450
+ "type": "uint256"
3451
+ },
3452
+ {
3453
+ "internalType": "bytes32",
3454
+ "name": "operationType",
3455
+ "type": "bytes32"
3456
+ },
3457
+ {
3458
+ "internalType": "bytes4",
3459
+ "name": "executionSelector",
3460
+ "type": "bytes4"
3461
+ },
3462
+ {
3463
+ "internalType": "bytes",
3464
+ "name": "executionParams",
3465
+ "type": "bytes"
3466
+ }
3467
+ ],
3468
+ "internalType": "struct EngineBlox.TxParams",
3469
+ "name": "params",
3470
+ "type": "tuple"
3471
+ },
3472
+ {
3473
+ "internalType": "bytes32",
3474
+ "name": "message",
3475
+ "type": "bytes32"
3476
+ },
3477
+ {
3478
+ "internalType": "bytes",
3479
+ "name": "result",
3480
+ "type": "bytes"
3481
+ },
3482
+ {
3483
+ "components": [
3484
+ {
3485
+ "internalType": "address",
3486
+ "name": "recipient",
3487
+ "type": "address"
3488
+ },
3489
+ {
3490
+ "internalType": "uint256",
3491
+ "name": "nativeTokenAmount",
3492
+ "type": "uint256"
3493
+ },
3494
+ {
3495
+ "internalType": "address",
3496
+ "name": "erc20TokenAddress",
3497
+ "type": "address"
3498
+ },
3499
+ {
3500
+ "internalType": "uint256",
3501
+ "name": "erc20TokenAmount",
3502
+ "type": "uint256"
3503
+ }
3504
+ ],
3505
+ "internalType": "struct EngineBlox.PaymentDetails",
3506
+ "name": "payment",
3507
+ "type": "tuple"
3508
+ }
3509
+ ],
3510
+ "internalType": "struct EngineBlox.TxRecord",
3511
+ "name": "txRecord",
3512
+ "type": "tuple"
3513
+ },
3514
+ {
3515
+ "components": [
3516
+ {
3517
+ "internalType": "uint256",
3518
+ "name": "chainId",
3519
+ "type": "uint256"
3520
+ },
3521
+ {
3522
+ "internalType": "uint256",
3523
+ "name": "nonce",
3524
+ "type": "uint256"
3525
+ },
3526
+ {
3527
+ "internalType": "address",
3528
+ "name": "handlerContract",
3529
+ "type": "address"
3530
+ },
3531
+ {
3532
+ "internalType": "bytes4",
3533
+ "name": "handlerSelector",
3534
+ "type": "bytes4"
3535
+ },
3536
+ {
3537
+ "internalType": "enum EngineBlox.TxAction",
3538
+ "name": "action",
3539
+ "type": "uint8"
3540
+ },
3541
+ {
3542
+ "internalType": "uint256",
3543
+ "name": "deadline",
3544
+ "type": "uint256"
3545
+ },
3546
+ {
3547
+ "internalType": "uint256",
3548
+ "name": "maxGasPrice",
3549
+ "type": "uint256"
3550
+ },
3551
+ {
3552
+ "internalType": "address",
3553
+ "name": "signer",
3554
+ "type": "address"
3555
+ }
3556
+ ],
3557
+ "internalType": "struct EngineBlox.MetaTxParams",
3558
+ "name": "params",
3559
+ "type": "tuple"
3560
+ },
3561
+ {
3562
+ "internalType": "bytes32",
3563
+ "name": "message",
3564
+ "type": "bytes32"
3565
+ },
3566
+ {
3567
+ "internalType": "bytes",
3568
+ "name": "signature",
3569
+ "type": "bytes"
3570
+ },
3571
+ {
3572
+ "internalType": "bytes",
3573
+ "name": "data",
3574
+ "type": "bytes"
3575
+ }
3576
+ ],
3577
+ "internalType": "struct EngineBlox.MetaTransaction",
3578
+ "name": "metaTx",
3579
+ "type": "tuple"
3580
+ }
3581
+ ],
3582
+ "name": "updateBroadcasterCancellationWithMetaTx",
3583
+ "outputs": [
3584
+ {
3585
+ "components": [
3586
+ {
3587
+ "internalType": "uint256",
3588
+ "name": "txId",
3589
+ "type": "uint256"
3590
+ },
3591
+ {
3592
+ "internalType": "uint256",
3593
+ "name": "releaseTime",
3594
+ "type": "uint256"
3595
+ },
3596
+ {
3597
+ "internalType": "enum EngineBlox.TxStatus",
3598
+ "name": "status",
3599
+ "type": "uint8"
3600
+ },
3601
+ {
3602
+ "components": [
3603
+ {
3604
+ "internalType": "address",
3605
+ "name": "requester",
3606
+ "type": "address"
3607
+ },
3608
+ {
3609
+ "internalType": "address",
3610
+ "name": "target",
3611
+ "type": "address"
3612
+ },
3613
+ {
3614
+ "internalType": "uint256",
3615
+ "name": "value",
3616
+ "type": "uint256"
3617
+ },
3618
+ {
3619
+ "internalType": "uint256",
3620
+ "name": "gasLimit",
3621
+ "type": "uint256"
3622
+ },
3623
+ {
3624
+ "internalType": "bytes32",
3625
+ "name": "operationType",
3626
+ "type": "bytes32"
3627
+ },
3628
+ {
3629
+ "internalType": "bytes4",
3630
+ "name": "executionSelector",
3631
+ "type": "bytes4"
3632
+ },
3633
+ {
3634
+ "internalType": "bytes",
3635
+ "name": "executionParams",
3636
+ "type": "bytes"
3637
+ }
3638
+ ],
3639
+ "internalType": "struct EngineBlox.TxParams",
3640
+ "name": "params",
3641
+ "type": "tuple"
3642
+ },
3643
+ {
3644
+ "internalType": "bytes32",
3645
+ "name": "message",
3646
+ "type": "bytes32"
3647
+ },
3648
+ {
3649
+ "internalType": "bytes",
3650
+ "name": "result",
3651
+ "type": "bytes"
3652
+ },
3653
+ {
3654
+ "components": [
3655
+ {
3656
+ "internalType": "address",
3657
+ "name": "recipient",
3658
+ "type": "address"
3659
+ },
3660
+ {
3661
+ "internalType": "uint256",
3662
+ "name": "nativeTokenAmount",
3663
+ "type": "uint256"
3664
+ },
3665
+ {
3666
+ "internalType": "address",
3667
+ "name": "erc20TokenAddress",
3668
+ "type": "address"
3669
+ },
3670
+ {
3671
+ "internalType": "uint256",
3672
+ "name": "erc20TokenAmount",
3673
+ "type": "uint256"
3674
+ }
3675
+ ],
3676
+ "internalType": "struct EngineBlox.PaymentDetails",
3677
+ "name": "payment",
3678
+ "type": "tuple"
3679
+ }
3680
+ ],
3681
+ "internalType": "struct EngineBlox.TxRecord",
3682
+ "name": "",
3683
+ "type": "tuple"
3684
+ }
3685
+ ],
3686
+ "stateMutability": "nonpayable",
3687
+ "type": "function"
3688
+ },
3689
+ {
3690
+ "inputs": [
3691
+ {
3692
+ "internalType": "uint256",
3693
+ "name": "txId",
3694
+ "type": "uint256"
3695
+ }
3696
+ ],
3697
+ "name": "updateBroadcasterDelayedApproval",
3698
+ "outputs": [
3699
+ {
3700
+ "components": [
3701
+ {
3702
+ "internalType": "uint256",
3703
+ "name": "txId",
3704
+ "type": "uint256"
3705
+ },
3706
+ {
3707
+ "internalType": "uint256",
3708
+ "name": "releaseTime",
3709
+ "type": "uint256"
3710
+ },
3711
+ {
3712
+ "internalType": "enum EngineBlox.TxStatus",
3713
+ "name": "status",
3714
+ "type": "uint8"
3715
+ },
3716
+ {
3717
+ "components": [
3718
+ {
3719
+ "internalType": "address",
3720
+ "name": "requester",
3721
+ "type": "address"
3722
+ },
3723
+ {
3724
+ "internalType": "address",
3725
+ "name": "target",
3726
+ "type": "address"
3727
+ },
3728
+ {
3729
+ "internalType": "uint256",
3730
+ "name": "value",
3731
+ "type": "uint256"
3732
+ },
3733
+ {
3734
+ "internalType": "uint256",
3735
+ "name": "gasLimit",
3736
+ "type": "uint256"
3737
+ },
3738
+ {
3739
+ "internalType": "bytes32",
3740
+ "name": "operationType",
3741
+ "type": "bytes32"
3742
+ },
3743
+ {
3744
+ "internalType": "bytes4",
3745
+ "name": "executionSelector",
3746
+ "type": "bytes4"
3747
+ },
3748
+ {
3749
+ "internalType": "bytes",
3750
+ "name": "executionParams",
3751
+ "type": "bytes"
3752
+ }
3753
+ ],
3754
+ "internalType": "struct EngineBlox.TxParams",
3755
+ "name": "params",
3756
+ "type": "tuple"
3757
+ },
3758
+ {
3759
+ "internalType": "bytes32",
3760
+ "name": "message",
3761
+ "type": "bytes32"
3762
+ },
3763
+ {
3764
+ "internalType": "bytes",
3765
+ "name": "result",
3766
+ "type": "bytes"
3767
+ },
3768
+ {
3769
+ "components": [
3770
+ {
3771
+ "internalType": "address",
3772
+ "name": "recipient",
3773
+ "type": "address"
3774
+ },
3775
+ {
3776
+ "internalType": "uint256",
3777
+ "name": "nativeTokenAmount",
3778
+ "type": "uint256"
3779
+ },
3780
+ {
3781
+ "internalType": "address",
3782
+ "name": "erc20TokenAddress",
3783
+ "type": "address"
3784
+ },
3785
+ {
3786
+ "internalType": "uint256",
3787
+ "name": "erc20TokenAmount",
3788
+ "type": "uint256"
3789
+ }
3790
+ ],
3791
+ "internalType": "struct EngineBlox.PaymentDetails",
3792
+ "name": "payment",
3793
+ "type": "tuple"
3794
+ }
3795
+ ],
3796
+ "internalType": "struct EngineBlox.TxRecord",
3797
+ "name": "",
3798
+ "type": "tuple"
3799
+ }
3800
+ ],
3801
+ "stateMutability": "nonpayable",
3802
+ "type": "function"
3803
+ },
3804
+ {
3805
+ "inputs": [
3806
+ {
3807
+ "internalType": "address",
3808
+ "name": "newBroadcaster",
3809
+ "type": "address"
3810
+ }
3811
+ ],
3812
+ "name": "updateBroadcasterRequest",
3813
+ "outputs": [
3814
+ {
3815
+ "components": [
3816
+ {
3817
+ "internalType": "uint256",
3818
+ "name": "txId",
3819
+ "type": "uint256"
3820
+ },
3821
+ {
3822
+ "internalType": "uint256",
3823
+ "name": "releaseTime",
3824
+ "type": "uint256"
3825
+ },
3826
+ {
3827
+ "internalType": "enum EngineBlox.TxStatus",
3828
+ "name": "status",
3829
+ "type": "uint8"
3830
+ },
3831
+ {
3832
+ "components": [
3833
+ {
3834
+ "internalType": "address",
3835
+ "name": "requester",
3836
+ "type": "address"
3837
+ },
3838
+ {
3839
+ "internalType": "address",
3840
+ "name": "target",
3841
+ "type": "address"
3842
+ },
3843
+ {
3844
+ "internalType": "uint256",
3845
+ "name": "value",
3846
+ "type": "uint256"
3847
+ },
3848
+ {
3849
+ "internalType": "uint256",
3850
+ "name": "gasLimit",
3851
+ "type": "uint256"
3852
+ },
3853
+ {
3854
+ "internalType": "bytes32",
3855
+ "name": "operationType",
3856
+ "type": "bytes32"
3857
+ },
3858
+ {
3859
+ "internalType": "bytes4",
3860
+ "name": "executionSelector",
3861
+ "type": "bytes4"
3862
+ },
3863
+ {
3864
+ "internalType": "bytes",
3865
+ "name": "executionParams",
3866
+ "type": "bytes"
3867
+ }
3868
+ ],
3869
+ "internalType": "struct EngineBlox.TxParams",
3870
+ "name": "params",
3871
+ "type": "tuple"
3872
+ },
3873
+ {
3874
+ "internalType": "bytes32",
3875
+ "name": "message",
3876
+ "type": "bytes32"
3877
+ },
3878
+ {
3879
+ "internalType": "bytes",
3880
+ "name": "result",
3881
+ "type": "bytes"
3882
+ },
3883
+ {
3884
+ "components": [
3885
+ {
3886
+ "internalType": "address",
3887
+ "name": "recipient",
3888
+ "type": "address"
3889
+ },
3890
+ {
3891
+ "internalType": "uint256",
3892
+ "name": "nativeTokenAmount",
3893
+ "type": "uint256"
3894
+ },
3895
+ {
3896
+ "internalType": "address",
3897
+ "name": "erc20TokenAddress",
3898
+ "type": "address"
3899
+ },
3900
+ {
3901
+ "internalType": "uint256",
3902
+ "name": "erc20TokenAmount",
3903
+ "type": "uint256"
3904
+ }
3905
+ ],
3906
+ "internalType": "struct EngineBlox.PaymentDetails",
3907
+ "name": "payment",
3908
+ "type": "tuple"
3909
+ }
3910
+ ],
3911
+ "internalType": "struct EngineBlox.TxRecord",
3912
+ "name": "",
3913
+ "type": "tuple"
3914
+ }
3915
+ ],
3916
+ "stateMutability": "nonpayable",
3917
+ "type": "function"
3918
+ },
3919
+ {
3920
+ "inputs": [
3921
+ {
3922
+ "internalType": "address",
3923
+ "name": "newRecoveryAddress",
3924
+ "type": "address"
3925
+ }
3926
+ ],
3927
+ "name": "updateRecoveryExecutionParams",
3928
+ "outputs": [
3929
+ {
3930
+ "internalType": "bytes",
3931
+ "name": "",
3932
+ "type": "bytes"
3933
+ }
3934
+ ],
3935
+ "stateMutability": "view",
3936
+ "type": "function"
3937
+ },
3938
+ {
3939
+ "inputs": [
3940
+ {
3941
+ "components": [
3942
+ {
3943
+ "components": [
3944
+ {
3945
+ "internalType": "uint256",
3946
+ "name": "txId",
3947
+ "type": "uint256"
3948
+ },
3949
+ {
3950
+ "internalType": "uint256",
3951
+ "name": "releaseTime",
3952
+ "type": "uint256"
3953
+ },
3954
+ {
3955
+ "internalType": "enum EngineBlox.TxStatus",
3956
+ "name": "status",
3957
+ "type": "uint8"
3958
+ },
3959
+ {
3960
+ "components": [
3961
+ {
3962
+ "internalType": "address",
3963
+ "name": "requester",
3964
+ "type": "address"
3965
+ },
3966
+ {
3967
+ "internalType": "address",
3968
+ "name": "target",
3969
+ "type": "address"
3970
+ },
3971
+ {
3972
+ "internalType": "uint256",
3973
+ "name": "value",
3974
+ "type": "uint256"
3975
+ },
3976
+ {
3977
+ "internalType": "uint256",
3978
+ "name": "gasLimit",
3979
+ "type": "uint256"
3980
+ },
3981
+ {
3982
+ "internalType": "bytes32",
3983
+ "name": "operationType",
3984
+ "type": "bytes32"
3985
+ },
3986
+ {
3987
+ "internalType": "bytes4",
3988
+ "name": "executionSelector",
3989
+ "type": "bytes4"
3990
+ },
3991
+ {
3992
+ "internalType": "bytes",
3993
+ "name": "executionParams",
3994
+ "type": "bytes"
3995
+ }
3996
+ ],
3997
+ "internalType": "struct EngineBlox.TxParams",
3998
+ "name": "params",
3999
+ "type": "tuple"
4000
+ },
4001
+ {
4002
+ "internalType": "bytes32",
4003
+ "name": "message",
4004
+ "type": "bytes32"
4005
+ },
4006
+ {
4007
+ "internalType": "bytes",
4008
+ "name": "result",
4009
+ "type": "bytes"
4010
+ },
4011
+ {
4012
+ "components": [
4013
+ {
4014
+ "internalType": "address",
4015
+ "name": "recipient",
4016
+ "type": "address"
4017
+ },
4018
+ {
4019
+ "internalType": "uint256",
4020
+ "name": "nativeTokenAmount",
4021
+ "type": "uint256"
4022
+ },
4023
+ {
4024
+ "internalType": "address",
4025
+ "name": "erc20TokenAddress",
4026
+ "type": "address"
4027
+ },
4028
+ {
4029
+ "internalType": "uint256",
4030
+ "name": "erc20TokenAmount",
4031
+ "type": "uint256"
4032
+ }
4033
+ ],
4034
+ "internalType": "struct EngineBlox.PaymentDetails",
4035
+ "name": "payment",
4036
+ "type": "tuple"
4037
+ }
4038
+ ],
4039
+ "internalType": "struct EngineBlox.TxRecord",
4040
+ "name": "txRecord",
4041
+ "type": "tuple"
4042
+ },
4043
+ {
4044
+ "components": [
4045
+ {
4046
+ "internalType": "uint256",
4047
+ "name": "chainId",
4048
+ "type": "uint256"
4049
+ },
4050
+ {
4051
+ "internalType": "uint256",
4052
+ "name": "nonce",
4053
+ "type": "uint256"
4054
+ },
4055
+ {
4056
+ "internalType": "address",
4057
+ "name": "handlerContract",
4058
+ "type": "address"
4059
+ },
4060
+ {
4061
+ "internalType": "bytes4",
4062
+ "name": "handlerSelector",
4063
+ "type": "bytes4"
4064
+ },
4065
+ {
4066
+ "internalType": "enum EngineBlox.TxAction",
4067
+ "name": "action",
4068
+ "type": "uint8"
4069
+ },
4070
+ {
4071
+ "internalType": "uint256",
4072
+ "name": "deadline",
4073
+ "type": "uint256"
4074
+ },
4075
+ {
4076
+ "internalType": "uint256",
4077
+ "name": "maxGasPrice",
4078
+ "type": "uint256"
4079
+ },
4080
+ {
4081
+ "internalType": "address",
4082
+ "name": "signer",
4083
+ "type": "address"
4084
+ }
4085
+ ],
4086
+ "internalType": "struct EngineBlox.MetaTxParams",
4087
+ "name": "params",
4088
+ "type": "tuple"
4089
+ },
4090
+ {
4091
+ "internalType": "bytes32",
4092
+ "name": "message",
4093
+ "type": "bytes32"
4094
+ },
4095
+ {
4096
+ "internalType": "bytes",
4097
+ "name": "signature",
4098
+ "type": "bytes"
4099
+ },
4100
+ {
4101
+ "internalType": "bytes",
4102
+ "name": "data",
4103
+ "type": "bytes"
4104
+ }
4105
+ ],
4106
+ "internalType": "struct EngineBlox.MetaTransaction",
4107
+ "name": "metaTx",
4108
+ "type": "tuple"
4109
+ }
4110
+ ],
4111
+ "name": "updateRecoveryRequestAndApprove",
4112
+ "outputs": [
4113
+ {
4114
+ "components": [
4115
+ {
4116
+ "internalType": "uint256",
4117
+ "name": "txId",
4118
+ "type": "uint256"
4119
+ },
4120
+ {
4121
+ "internalType": "uint256",
4122
+ "name": "releaseTime",
4123
+ "type": "uint256"
4124
+ },
4125
+ {
4126
+ "internalType": "enum EngineBlox.TxStatus",
4127
+ "name": "status",
4128
+ "type": "uint8"
4129
+ },
4130
+ {
4131
+ "components": [
4132
+ {
4133
+ "internalType": "address",
4134
+ "name": "requester",
4135
+ "type": "address"
4136
+ },
4137
+ {
4138
+ "internalType": "address",
4139
+ "name": "target",
4140
+ "type": "address"
4141
+ },
4142
+ {
4143
+ "internalType": "uint256",
4144
+ "name": "value",
4145
+ "type": "uint256"
4146
+ },
4147
+ {
4148
+ "internalType": "uint256",
4149
+ "name": "gasLimit",
4150
+ "type": "uint256"
4151
+ },
4152
+ {
4153
+ "internalType": "bytes32",
4154
+ "name": "operationType",
4155
+ "type": "bytes32"
4156
+ },
4157
+ {
4158
+ "internalType": "bytes4",
4159
+ "name": "executionSelector",
4160
+ "type": "bytes4"
4161
+ },
4162
+ {
4163
+ "internalType": "bytes",
4164
+ "name": "executionParams",
4165
+ "type": "bytes"
4166
+ }
4167
+ ],
4168
+ "internalType": "struct EngineBlox.TxParams",
4169
+ "name": "params",
4170
+ "type": "tuple"
4171
+ },
4172
+ {
4173
+ "internalType": "bytes32",
4174
+ "name": "message",
4175
+ "type": "bytes32"
4176
+ },
4177
+ {
4178
+ "internalType": "bytes",
4179
+ "name": "result",
4180
+ "type": "bytes"
4181
+ },
4182
+ {
4183
+ "components": [
4184
+ {
4185
+ "internalType": "address",
4186
+ "name": "recipient",
4187
+ "type": "address"
4188
+ },
4189
+ {
4190
+ "internalType": "uint256",
4191
+ "name": "nativeTokenAmount",
4192
+ "type": "uint256"
4193
+ },
4194
+ {
4195
+ "internalType": "address",
4196
+ "name": "erc20TokenAddress",
4197
+ "type": "address"
4198
+ },
4199
+ {
4200
+ "internalType": "uint256",
4201
+ "name": "erc20TokenAmount",
4202
+ "type": "uint256"
4203
+ }
4204
+ ],
4205
+ "internalType": "struct EngineBlox.PaymentDetails",
4206
+ "name": "payment",
4207
+ "type": "tuple"
4208
+ }
4209
+ ],
4210
+ "internalType": "struct EngineBlox.TxRecord",
4211
+ "name": "",
4212
+ "type": "tuple"
4213
+ }
4214
+ ],
4215
+ "stateMutability": "nonpayable",
4216
+ "type": "function"
4217
+ },
4218
+ {
4219
+ "inputs": [
4220
+ {
4221
+ "internalType": "uint256",
4222
+ "name": "newTimeLockPeriodSec",
4223
+ "type": "uint256"
4224
+ }
4225
+ ],
4226
+ "name": "updateTimeLockExecutionParams",
4227
+ "outputs": [
4228
+ {
4229
+ "internalType": "bytes",
4230
+ "name": "",
4231
+ "type": "bytes"
4232
+ }
4233
+ ],
4234
+ "stateMutability": "view",
4235
+ "type": "function"
4236
+ },
4237
+ {
4238
+ "inputs": [
4239
+ {
4240
+ "components": [
4241
+ {
4242
+ "components": [
4243
+ {
4244
+ "internalType": "uint256",
4245
+ "name": "txId",
4246
+ "type": "uint256"
4247
+ },
4248
+ {
4249
+ "internalType": "uint256",
4250
+ "name": "releaseTime",
4251
+ "type": "uint256"
4252
+ },
4253
+ {
4254
+ "internalType": "enum EngineBlox.TxStatus",
4255
+ "name": "status",
4256
+ "type": "uint8"
4257
+ },
4258
+ {
4259
+ "components": [
4260
+ {
4261
+ "internalType": "address",
4262
+ "name": "requester",
4263
+ "type": "address"
4264
+ },
4265
+ {
4266
+ "internalType": "address",
4267
+ "name": "target",
4268
+ "type": "address"
4269
+ },
4270
+ {
4271
+ "internalType": "uint256",
4272
+ "name": "value",
4273
+ "type": "uint256"
4274
+ },
4275
+ {
4276
+ "internalType": "uint256",
4277
+ "name": "gasLimit",
4278
+ "type": "uint256"
4279
+ },
4280
+ {
4281
+ "internalType": "bytes32",
4282
+ "name": "operationType",
4283
+ "type": "bytes32"
4284
+ },
4285
+ {
4286
+ "internalType": "bytes4",
4287
+ "name": "executionSelector",
4288
+ "type": "bytes4"
4289
+ },
4290
+ {
4291
+ "internalType": "bytes",
4292
+ "name": "executionParams",
4293
+ "type": "bytes"
4294
+ }
4295
+ ],
4296
+ "internalType": "struct EngineBlox.TxParams",
4297
+ "name": "params",
4298
+ "type": "tuple"
4299
+ },
4300
+ {
4301
+ "internalType": "bytes32",
4302
+ "name": "message",
4303
+ "type": "bytes32"
4304
+ },
4305
+ {
4306
+ "internalType": "bytes",
4307
+ "name": "result",
4308
+ "type": "bytes"
4309
+ },
4310
+ {
4311
+ "components": [
4312
+ {
4313
+ "internalType": "address",
4314
+ "name": "recipient",
4315
+ "type": "address"
4316
+ },
4317
+ {
4318
+ "internalType": "uint256",
4319
+ "name": "nativeTokenAmount",
4320
+ "type": "uint256"
4321
+ },
4322
+ {
4323
+ "internalType": "address",
4324
+ "name": "erc20TokenAddress",
4325
+ "type": "address"
4326
+ },
4327
+ {
4328
+ "internalType": "uint256",
4329
+ "name": "erc20TokenAmount",
4330
+ "type": "uint256"
4331
+ }
4332
+ ],
4333
+ "internalType": "struct EngineBlox.PaymentDetails",
4334
+ "name": "payment",
4335
+ "type": "tuple"
4336
+ }
4337
+ ],
4338
+ "internalType": "struct EngineBlox.TxRecord",
4339
+ "name": "txRecord",
4340
+ "type": "tuple"
4341
+ },
4342
+ {
4343
+ "components": [
4344
+ {
4345
+ "internalType": "uint256",
4346
+ "name": "chainId",
4347
+ "type": "uint256"
4348
+ },
4349
+ {
4350
+ "internalType": "uint256",
4351
+ "name": "nonce",
4352
+ "type": "uint256"
4353
+ },
4354
+ {
4355
+ "internalType": "address",
4356
+ "name": "handlerContract",
4357
+ "type": "address"
4358
+ },
4359
+ {
4360
+ "internalType": "bytes4",
4361
+ "name": "handlerSelector",
4362
+ "type": "bytes4"
4363
+ },
4364
+ {
4365
+ "internalType": "enum EngineBlox.TxAction",
4366
+ "name": "action",
4367
+ "type": "uint8"
4368
+ },
4369
+ {
4370
+ "internalType": "uint256",
4371
+ "name": "deadline",
4372
+ "type": "uint256"
4373
+ },
4374
+ {
4375
+ "internalType": "uint256",
4376
+ "name": "maxGasPrice",
4377
+ "type": "uint256"
4378
+ },
4379
+ {
4380
+ "internalType": "address",
4381
+ "name": "signer",
4382
+ "type": "address"
4383
+ }
4384
+ ],
4385
+ "internalType": "struct EngineBlox.MetaTxParams",
4386
+ "name": "params",
4387
+ "type": "tuple"
4388
+ },
4389
+ {
4390
+ "internalType": "bytes32",
4391
+ "name": "message",
4392
+ "type": "bytes32"
4393
+ },
4394
+ {
4395
+ "internalType": "bytes",
4396
+ "name": "signature",
4397
+ "type": "bytes"
4398
+ },
4399
+ {
4400
+ "internalType": "bytes",
4401
+ "name": "data",
4402
+ "type": "bytes"
4403
+ }
4404
+ ],
4405
+ "internalType": "struct EngineBlox.MetaTransaction",
4406
+ "name": "metaTx",
4407
+ "type": "tuple"
4408
+ }
4409
+ ],
4410
+ "name": "updateTimeLockRequestAndApprove",
4411
+ "outputs": [
4412
+ {
4413
+ "components": [
4414
+ {
4415
+ "internalType": "uint256",
4416
+ "name": "txId",
4417
+ "type": "uint256"
4418
+ },
4419
+ {
4420
+ "internalType": "uint256",
4421
+ "name": "releaseTime",
4422
+ "type": "uint256"
4423
+ },
4424
+ {
4425
+ "internalType": "enum EngineBlox.TxStatus",
4426
+ "name": "status",
4427
+ "type": "uint8"
4428
+ },
4429
+ {
4430
+ "components": [
4431
+ {
4432
+ "internalType": "address",
4433
+ "name": "requester",
4434
+ "type": "address"
4435
+ },
4436
+ {
4437
+ "internalType": "address",
4438
+ "name": "target",
4439
+ "type": "address"
4440
+ },
4441
+ {
4442
+ "internalType": "uint256",
4443
+ "name": "value",
4444
+ "type": "uint256"
4445
+ },
4446
+ {
4447
+ "internalType": "uint256",
4448
+ "name": "gasLimit",
4449
+ "type": "uint256"
4450
+ },
4451
+ {
4452
+ "internalType": "bytes32",
4453
+ "name": "operationType",
4454
+ "type": "bytes32"
4455
+ },
4456
+ {
4457
+ "internalType": "bytes4",
4458
+ "name": "executionSelector",
4459
+ "type": "bytes4"
4460
+ },
4461
+ {
4462
+ "internalType": "bytes",
4463
+ "name": "executionParams",
4464
+ "type": "bytes"
4465
+ }
4466
+ ],
4467
+ "internalType": "struct EngineBlox.TxParams",
4468
+ "name": "params",
4469
+ "type": "tuple"
4470
+ },
4471
+ {
4472
+ "internalType": "bytes32",
4473
+ "name": "message",
4474
+ "type": "bytes32"
4475
+ },
4476
+ {
4477
+ "internalType": "bytes",
4478
+ "name": "result",
4479
+ "type": "bytes"
4480
+ },
4481
+ {
4482
+ "components": [
4483
+ {
4484
+ "internalType": "address",
4485
+ "name": "recipient",
4486
+ "type": "address"
4487
+ },
4488
+ {
4489
+ "internalType": "uint256",
4490
+ "name": "nativeTokenAmount",
4491
+ "type": "uint256"
4492
+ },
4493
+ {
4494
+ "internalType": "address",
4495
+ "name": "erc20TokenAddress",
4496
+ "type": "address"
4497
+ },
4498
+ {
4499
+ "internalType": "uint256",
4500
+ "name": "erc20TokenAmount",
4501
+ "type": "uint256"
4502
+ }
4503
+ ],
4504
+ "internalType": "struct EngineBlox.PaymentDetails",
4505
+ "name": "payment",
4506
+ "type": "tuple"
4507
+ }
4508
+ ],
4509
+ "internalType": "struct EngineBlox.TxRecord",
4510
+ "name": "",
4511
+ "type": "tuple"
4512
+ }
4513
+ ],
4514
+ "stateMutability": "nonpayable",
4515
+ "type": "function"
4516
+ },
4517
+ {
4518
+ "inputs": [
4519
+ {
4520
+ "internalType": "address",
4521
+ "name": "initialOwner",
4522
+ "type": "address"
4523
+ },
4524
+ {
4525
+ "internalType": "address",
4526
+ "name": "broadcaster",
4527
+ "type": "address"
4528
+ },
4529
+ {
4530
+ "internalType": "address",
4531
+ "name": "recovery",
4532
+ "type": "address"
4533
+ },
4534
+ {
4535
+ "internalType": "uint256",
4536
+ "name": "timeLockPeriodSec",
4537
+ "type": "uint256"
4538
+ },
4539
+ {
4540
+ "internalType": "address",
4541
+ "name": "eventForwarder",
4542
+ "type": "address"
4543
+ }
4544
+ ],
4545
+ "name": "initialize",
4546
+ "outputs": [],
4547
+ "stateMutability": "nonpayable",
4548
+ "type": "function"
4549
+ },
4550
+ {
4551
+ "inputs": [
4552
+ {
4553
+ "internalType": "bytes4",
4554
+ "name": "interfaceId",
4555
+ "type": "bytes4"
4556
+ }
4557
+ ],
4558
+ "name": "supportsInterface",
4559
+ "outputs": [
4560
+ {
4561
+ "internalType": "bool",
4562
+ "name": "",
4563
+ "type": "bool"
4564
+ }
4565
+ ],
4566
+ "stateMutability": "view",
4567
+ "type": "function"
4568
+ }
4569
+ ]