@bloxchain/contracts 1.0.0-alpha.2 → 1.0.0-alpha.20

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