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