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