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