@bloxchain/contracts 1.0.0-alpha.7 → 1.0.0

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