@bloxchain/sdk 1.0.0-alpha.1 → 1.0.0-alpha.10

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 (115) hide show
  1. package/abi/{ControlBlox.abi.json → AccountBlox.abi.json} +488 -2474
  2. package/abi/BareBlox.abi.json +94 -0
  3. package/abi/BaseStateMachine.abi.json +94 -0
  4. package/abi/EngineBlox.abi.json +11 -31
  5. package/abi/GuardController.abi.json +178 -757
  6. package/abi/GuardControllerDefinitions.abi.json +380 -0
  7. package/abi/RoleBlox.abi.json +340 -1668
  8. package/abi/RuntimeRBAC.abi.json +98 -186
  9. package/abi/RuntimeRBACDefinitions.abi.json +224 -0
  10. package/abi/SecureBlox.abi.json +454 -1600
  11. package/abi/SecureOwnable.abi.json +492 -1638
  12. package/abi/SecureOwnableDefinitions.abi.json +38 -0
  13. package/abi/SimpleRWA20.abi.json +486 -1813
  14. package/abi/SimpleVault.abi.json +713 -2328
  15. package/dist/abi/AccountBlox.abi.json +3935 -0
  16. package/dist/abi/BareBlox.abi.json +1378 -0
  17. package/dist/abi/BaseStateMachine.abi.json +1267 -1173
  18. package/dist/abi/EngineBlox.abi.json +852 -0
  19. package/dist/abi/GuardController.abi.json +2237 -2816
  20. package/dist/abi/GuardControllerDefinitions.abi.json +380 -0
  21. package/dist/abi/IDefinition.abi.json +108 -108
  22. package/dist/abi/RoleBlox.abi.json +2983 -0
  23. package/dist/abi/RuntimeRBAC.abi.json +1546 -1634
  24. package/dist/abi/RuntimeRBACDefinitions.abi.json +376 -0
  25. package/dist/abi/SecureBlox.abi.json +2753 -0
  26. package/dist/abi/SecureOwnable.abi.json +2601 -3747
  27. package/dist/abi/SecureOwnableDefinitions.abi.json +411 -0
  28. package/dist/abi/SimpleRWA20.abi.json +4032 -0
  29. package/dist/abi/SimpleRWA20Definitions.abi.json +191 -0
  30. package/dist/abi/SimpleVault.abi.json +3407 -0
  31. package/dist/abi/SimpleVaultDefinitions.abi.json +269 -0
  32. package/dist/abi.d.ts +11 -0
  33. package/dist/abi.d.ts.map +1 -0
  34. package/dist/abi.js +10 -0
  35. package/dist/abi.js.map +1 -0
  36. package/dist/contracts/BaseStateMachine.d.ts +9 -0
  37. package/dist/contracts/BaseStateMachine.d.ts.map +1 -1
  38. package/dist/contracts/BaseStateMachine.js +12 -0
  39. package/dist/contracts/BaseStateMachine.js.map +1 -1
  40. package/dist/contracts/GuardController.d.ts +4 -4
  41. package/dist/contracts/GuardController.d.ts.map +1 -1
  42. package/dist/contracts/GuardController.js +8 -7
  43. package/dist/contracts/GuardController.js.map +1 -1
  44. package/dist/contracts/RuntimeRBAC.d.ts +4 -20
  45. package/dist/contracts/RuntimeRBAC.d.ts.map +1 -1
  46. package/dist/contracts/RuntimeRBAC.js +5 -12
  47. package/dist/contracts/RuntimeRBAC.js.map +1 -1
  48. package/dist/contracts/SecureOwnable.d.ts +3 -3
  49. package/dist/contracts/SecureOwnable.d.ts.map +1 -1
  50. package/dist/contracts/SecureOwnable.js +7 -8
  51. package/dist/contracts/SecureOwnable.js.map +1 -1
  52. package/dist/contracts/core/BaseStateMachine.d.ts +98 -0
  53. package/dist/contracts/core/BaseStateMachine.d.ts.map +1 -0
  54. package/dist/contracts/core/BaseStateMachine.js +271 -0
  55. package/dist/contracts/core/BaseStateMachine.js.map +1 -0
  56. package/dist/contracts/core/GuardController.d.ts +120 -0
  57. package/dist/contracts/core/GuardController.d.ts.map +1 -0
  58. package/dist/contracts/core/GuardController.js +150 -0
  59. package/dist/contracts/core/GuardController.js.map +1 -0
  60. package/dist/contracts/core/RuntimeRBAC.d.ts +40 -0
  61. package/dist/contracts/core/RuntimeRBAC.d.ts.map +1 -0
  62. package/dist/contracts/core/RuntimeRBAC.js +50 -0
  63. package/dist/contracts/core/RuntimeRBAC.js.map +1 -0
  64. package/dist/contracts/core/SecureOwnable.d.ts +41 -0
  65. package/dist/contracts/core/SecureOwnable.d.ts.map +1 -0
  66. package/dist/contracts/core/SecureOwnable.js +81 -0
  67. package/dist/contracts/core/SecureOwnable.js.map +1 -0
  68. package/dist/index.d.ts +6 -4
  69. package/dist/index.d.ts.map +1 -1
  70. package/dist/index.js +5 -4
  71. package/dist/index.js.map +1 -1
  72. package/dist/interfaces/base.state.machine.index.d.ts +3 -0
  73. package/dist/interfaces/base.state.machine.index.d.ts.map +1 -1
  74. package/dist/interfaces/core.access.index.d.ts +3 -14
  75. package/dist/interfaces/core.access.index.d.ts.map +1 -1
  76. package/dist/interfaces/core.execution.index.d.ts +2 -2
  77. package/dist/interfaces/core.execution.index.d.ts.map +1 -1
  78. package/dist/interfaces/core.security.index.d.ts +1 -1
  79. package/dist/interfaces/core.security.index.d.ts.map +1 -1
  80. package/dist/lib/EngineBlox.d.ts +0 -9
  81. package/dist/lib/EngineBlox.d.ts.map +1 -1
  82. package/dist/lib/EngineBlox.js +0 -9
  83. package/dist/lib/EngineBlox.js.map +1 -1
  84. package/dist/lib/definitions/GuardControllerDefinitions.d.ts +43 -0
  85. package/dist/lib/definitions/GuardControllerDefinitions.d.ts.map +1 -0
  86. package/dist/lib/definitions/GuardControllerDefinitions.js +69 -0
  87. package/dist/lib/definitions/GuardControllerDefinitions.js.map +1 -0
  88. package/dist/lib/definitions/RuntimeRBACDefinitions.d.ts +59 -0
  89. package/dist/lib/definitions/RuntimeRBACDefinitions.d.ts.map +1 -0
  90. package/dist/lib/definitions/RuntimeRBACDefinitions.js +92 -0
  91. package/dist/lib/definitions/RuntimeRBACDefinitions.js.map +1 -0
  92. package/dist/lib/definitions/SecureOwnableDefinitions.d.ts +17 -0
  93. package/dist/lib/definitions/SecureOwnableDefinitions.d.ts.map +1 -0
  94. package/dist/lib/definitions/SecureOwnableDefinitions.js +21 -0
  95. package/dist/lib/definitions/SecureOwnableDefinitions.js.map +1 -0
  96. package/dist/lib/definitions/index.d.ts +9 -0
  97. package/dist/lib/definitions/index.d.ts.map +1 -0
  98. package/dist/lib/definitions/index.js +8 -0
  99. package/dist/lib/definitions/index.js.map +1 -0
  100. package/dist/types/base.state.machine.index.d.ts +0 -1
  101. package/dist/types/base.state.machine.index.d.ts.map +1 -1
  102. package/dist/types/base.state.machine.index.js +1 -2
  103. package/dist/types/base.state.machine.index.js.map +1 -1
  104. package/dist/types/core.execution.index.d.ts +1 -1
  105. package/dist/types/core.execution.index.js +1 -1
  106. package/dist/types/core.security.index.d.ts.map +1 -1
  107. package/dist/types/core.security.index.js +2 -2
  108. package/dist/types/core.security.index.js.map +1 -1
  109. package/dist/utils/contract-errors.d.ts +15 -2
  110. package/dist/utils/contract-errors.d.ts.map +1 -1
  111. package/dist/utils/contract-errors.js +18 -4
  112. package/dist/utils/contract-errors.js.map +1 -1
  113. package/dist/utils/interface-ids.js +1 -1
  114. package/dist/utils/interface-ids.js.map +1 -1
  115. package/package.json +75 -71
@@ -53,17 +53,6 @@
53
53
  "name": "InternalFunctionNotAccessible",
54
54
  "type": "error"
55
55
  },
56
- {
57
- "inputs": [
58
- {
59
- "internalType": "address",
60
- "name": "provided",
61
- "type": "address"
62
- }
63
- ],
64
- "name": "InvalidAddress",
65
- "type": "error"
66
- },
67
56
  {
68
57
  "inputs": [],
69
58
  "name": "InvalidInitialization",
@@ -85,33 +74,6 @@
85
74
  "name": "InvalidRange",
86
75
  "type": "error"
87
76
  },
88
- {
89
- "inputs": [
90
- {
91
- "internalType": "uint256",
92
- "name": "provided",
93
- "type": "uint256"
94
- }
95
- ],
96
- "name": "MaxWalletsZero",
97
- "type": "error"
98
- },
99
- {
100
- "inputs": [
101
- {
102
- "internalType": "uint256",
103
- "name": "newPeriod",
104
- "type": "uint256"
105
- },
106
- {
107
- "internalType": "uint256",
108
- "name": "currentPeriod",
109
- "type": "uint256"
110
- }
111
- ],
112
- "name": "NewTimelockSame",
113
- "type": "error"
114
- },
115
77
  {
116
78
  "inputs": [
117
79
  {
@@ -128,22 +90,6 @@
128
90
  "name": "NotInitializing",
129
91
  "type": "error"
130
92
  },
131
- {
132
- "inputs": [
133
- {
134
- "internalType": "address",
135
- "name": "newAddress",
136
- "type": "address"
137
- },
138
- {
139
- "internalType": "address",
140
- "name": "currentAddress",
141
- "type": "address"
142
- }
143
- ],
144
- "name": "NotNewAddress",
145
- "type": "error"
146
- },
147
93
  {
148
94
  "inputs": [],
149
95
  "name": "NotSupported",
@@ -165,6 +111,11 @@
165
111
  "name": "OnlyCallableByContract",
166
112
  "type": "error"
167
113
  },
114
+ {
115
+ "inputs": [],
116
+ "name": "PendingSecureRequest",
117
+ "type": "error"
118
+ },
168
119
  {
169
120
  "inputs": [
170
121
  {
@@ -186,17 +137,6 @@
186
137
  "name": "ReentrancyGuardReentrantCall",
187
138
  "type": "error"
188
139
  },
189
- {
190
- "inputs": [
191
- {
192
- "internalType": "bytes32",
193
- "name": "resourceId",
194
- "type": "bytes32"
195
- }
196
- ],
197
- "name": "ResourceAlreadyExists",
198
- "type": "error"
199
- },
200
140
  {
201
141
  "inputs": [
202
142
  {
@@ -261,17 +201,6 @@
261
201
  "name": "RestrictedRecovery",
262
202
  "type": "error"
263
203
  },
264
- {
265
- "inputs": [
266
- {
267
- "internalType": "uint256",
268
- "name": "provided",
269
- "type": "uint256"
270
- }
271
- ],
272
- "name": "TimeLockPeriodZero",
273
- "type": "error"
274
- },
275
204
  {
276
205
  "anonymous": false,
277
206
  "inputs": [
@@ -297,13 +226,13 @@
297
226
  {
298
227
  "indexed": true,
299
228
  "internalType": "address",
300
- "name": "from",
229
+ "name": "sender",
301
230
  "type": "address"
302
231
  },
303
232
  {
304
233
  "indexed": false,
305
234
  "internalType": "uint256",
306
- "name": "amount",
235
+ "name": "value",
307
236
  "type": "uint256"
308
237
  }
309
238
  ],
@@ -338,105 +267,9 @@
338
267
  "name": "approveTimeLockExecution",
339
268
  "outputs": [
340
269
  {
341
- "components": [
342
- {
343
- "internalType": "uint256",
344
- "name": "txId",
345
- "type": "uint256"
346
- },
347
- {
348
- "internalType": "uint256",
349
- "name": "releaseTime",
350
- "type": "uint256"
351
- },
352
- {
353
- "internalType": "enum EngineBlox.TxStatus",
354
- "name": "status",
355
- "type": "uint8"
356
- },
357
- {
358
- "components": [
359
- {
360
- "internalType": "address",
361
- "name": "requester",
362
- "type": "address"
363
- },
364
- {
365
- "internalType": "address",
366
- "name": "target",
367
- "type": "address"
368
- },
369
- {
370
- "internalType": "uint256",
371
- "name": "value",
372
- "type": "uint256"
373
- },
374
- {
375
- "internalType": "uint256",
376
- "name": "gasLimit",
377
- "type": "uint256"
378
- },
379
- {
380
- "internalType": "bytes32",
381
- "name": "operationType",
382
- "type": "bytes32"
383
- },
384
- {
385
- "internalType": "bytes4",
386
- "name": "executionSelector",
387
- "type": "bytes4"
388
- },
389
- {
390
- "internalType": "bytes",
391
- "name": "executionParams",
392
- "type": "bytes"
393
- }
394
- ],
395
- "internalType": "struct EngineBlox.TxParams",
396
- "name": "params",
397
- "type": "tuple"
398
- },
399
- {
400
- "internalType": "bytes32",
401
- "name": "message",
402
- "type": "bytes32"
403
- },
404
- {
405
- "internalType": "bytes",
406
- "name": "result",
407
- "type": "bytes"
408
- },
409
- {
410
- "components": [
411
- {
412
- "internalType": "address",
413
- "name": "recipient",
414
- "type": "address"
415
- },
416
- {
417
- "internalType": "uint256",
418
- "name": "nativeTokenAmount",
419
- "type": "uint256"
420
- },
421
- {
422
- "internalType": "address",
423
- "name": "erc20TokenAddress",
424
- "type": "address"
425
- },
426
- {
427
- "internalType": "uint256",
428
- "name": "erc20TokenAmount",
429
- "type": "uint256"
430
- }
431
- ],
432
- "internalType": "struct EngineBlox.PaymentDetails",
433
- "name": "payment",
434
- "type": "tuple"
435
- }
436
- ],
437
- "internalType": "struct EngineBlox.TxRecord",
270
+ "internalType": "uint256",
438
271
  "name": "",
439
- "type": "tuple"
272
+ "type": "uint256"
440
273
  }
441
274
  ],
442
275
  "stateMutability": "nonpayable",
@@ -617,246 +450,54 @@
617
450
  ],
618
451
  "name": "approveTimeLockExecutionWithMetaTx",
619
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": [
620
483
  {
621
484
  "components": [
622
- {
623
- "internalType": "uint256",
624
- "name": "txId",
625
- "type": "uint256"
626
- },
627
- {
628
- "internalType": "uint256",
629
- "name": "releaseTime",
630
- "type": "uint256"
631
- },
632
- {
633
- "internalType": "enum EngineBlox.TxStatus",
634
- "name": "status",
635
- "type": "uint8"
636
- },
637
485
  {
638
486
  "components": [
639
- {
640
- "internalType": "address",
641
- "name": "requester",
642
- "type": "address"
643
- },
644
- {
645
- "internalType": "address",
646
- "name": "target",
647
- "type": "address"
648
- },
649
487
  {
650
488
  "internalType": "uint256",
651
- "name": "value",
489
+ "name": "txId",
652
490
  "type": "uint256"
653
491
  },
654
492
  {
655
493
  "internalType": "uint256",
656
- "name": "gasLimit",
494
+ "name": "releaseTime",
657
495
  "type": "uint256"
658
496
  },
659
497
  {
660
- "internalType": "bytes32",
661
- "name": "operationType",
662
- "type": "bytes32"
663
- },
664
- {
665
- "internalType": "bytes4",
666
- "name": "executionSelector",
667
- "type": "bytes4"
668
- },
669
- {
670
- "internalType": "bytes",
671
- "name": "executionParams",
672
- "type": "bytes"
673
- }
674
- ],
675
- "internalType": "struct EngineBlox.TxParams",
676
- "name": "params",
677
- "type": "tuple"
678
- },
679
- {
680
- "internalType": "bytes32",
681
- "name": "message",
682
- "type": "bytes32"
683
- },
684
- {
685
- "internalType": "bytes",
686
- "name": "result",
687
- "type": "bytes"
688
- },
689
- {
690
- "components": [
691
- {
692
- "internalType": "address",
693
- "name": "recipient",
694
- "type": "address"
695
- },
696
- {
697
- "internalType": "uint256",
698
- "name": "nativeTokenAmount",
699
- "type": "uint256"
700
- },
701
- {
702
- "internalType": "address",
703
- "name": "erc20TokenAddress",
704
- "type": "address"
705
- },
706
- {
707
- "internalType": "uint256",
708
- "name": "erc20TokenAmount",
709
- "type": "uint256"
710
- }
711
- ],
712
- "internalType": "struct EngineBlox.PaymentDetails",
713
- "name": "payment",
714
- "type": "tuple"
715
- }
716
- ],
717
- "internalType": "struct EngineBlox.TxRecord",
718
- "name": "",
719
- "type": "tuple"
720
- }
721
- ],
722
- "stateMutability": "nonpayable",
723
- "type": "function"
724
- },
725
- {
726
- "inputs": [
727
- {
728
- "internalType": "uint256",
729
- "name": "txId",
730
- "type": "uint256"
731
- }
732
- ],
733
- "name": "cancelTimeLockExecution",
734
- "outputs": [
735
- {
736
- "components": [
737
- {
738
- "internalType": "uint256",
739
- "name": "txId",
740
- "type": "uint256"
741
- },
742
- {
743
- "internalType": "uint256",
744
- "name": "releaseTime",
745
- "type": "uint256"
746
- },
747
- {
748
- "internalType": "enum EngineBlox.TxStatus",
749
- "name": "status",
750
- "type": "uint8"
751
- },
752
- {
753
- "components": [
754
- {
755
- "internalType": "address",
756
- "name": "requester",
757
- "type": "address"
758
- },
759
- {
760
- "internalType": "address",
761
- "name": "target",
762
- "type": "address"
763
- },
764
- {
765
- "internalType": "uint256",
766
- "name": "value",
767
- "type": "uint256"
768
- },
769
- {
770
- "internalType": "uint256",
771
- "name": "gasLimit",
772
- "type": "uint256"
773
- },
774
- {
775
- "internalType": "bytes32",
776
- "name": "operationType",
777
- "type": "bytes32"
778
- },
779
- {
780
- "internalType": "bytes4",
781
- "name": "executionSelector",
782
- "type": "bytes4"
783
- },
784
- {
785
- "internalType": "bytes",
786
- "name": "executionParams",
787
- "type": "bytes"
788
- }
789
- ],
790
- "internalType": "struct EngineBlox.TxParams",
791
- "name": "params",
792
- "type": "tuple"
793
- },
794
- {
795
- "internalType": "bytes32",
796
- "name": "message",
797
- "type": "bytes32"
798
- },
799
- {
800
- "internalType": "bytes",
801
- "name": "result",
802
- "type": "bytes"
803
- },
804
- {
805
- "components": [
806
- {
807
- "internalType": "address",
808
- "name": "recipient",
809
- "type": "address"
810
- },
811
- {
812
- "internalType": "uint256",
813
- "name": "nativeTokenAmount",
814
- "type": "uint256"
815
- },
816
- {
817
- "internalType": "address",
818
- "name": "erc20TokenAddress",
819
- "type": "address"
820
- },
821
- {
822
- "internalType": "uint256",
823
- "name": "erc20TokenAmount",
824
- "type": "uint256"
825
- }
826
- ],
827
- "internalType": "struct EngineBlox.PaymentDetails",
828
- "name": "payment",
829
- "type": "tuple"
830
- }
831
- ],
832
- "internalType": "struct EngineBlox.TxRecord",
833
- "name": "",
834
- "type": "tuple"
835
- }
836
- ],
837
- "stateMutability": "nonpayable",
838
- "type": "function"
839
- },
840
- {
841
- "inputs": [
842
- {
843
- "components": [
844
- {
845
- "components": [
846
- {
847
- "internalType": "uint256",
848
- "name": "txId",
849
- "type": "uint256"
850
- },
851
- {
852
- "internalType": "uint256",
853
- "name": "releaseTime",
854
- "type": "uint256"
855
- },
856
- {
857
- "internalType": "enum EngineBlox.TxStatus",
858
- "name": "status",
859
- "type": "uint8"
498
+ "internalType": "enum EngineBlox.TxStatus",
499
+ "name": "status",
500
+ "type": "uint8"
860
501
  },
861
502
  {
862
503
  "components": [
@@ -1011,172 +652,76 @@
1011
652
  }
1012
653
  ],
1013
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",
1014
699
  "outputs": [
1015
700
  {
1016
701
  "components": [
1017
702
  {
1018
703
  "internalType": "uint256",
1019
- "name": "txId",
704
+ "name": "chainId",
1020
705
  "type": "uint256"
1021
706
  },
1022
707
  {
1023
708
  "internalType": "uint256",
1024
- "name": "releaseTime",
709
+ "name": "nonce",
1025
710
  "type": "uint256"
1026
711
  },
1027
712
  {
1028
- "internalType": "enum EngineBlox.TxStatus",
1029
- "name": "status",
1030
- "type": "uint8"
1031
- },
1032
- {
1033
- "components": [
1034
- {
1035
- "internalType": "address",
1036
- "name": "requester",
1037
- "type": "address"
1038
- },
1039
- {
1040
- "internalType": "address",
1041
- "name": "target",
1042
- "type": "address"
1043
- },
1044
- {
1045
- "internalType": "uint256",
1046
- "name": "value",
1047
- "type": "uint256"
1048
- },
1049
- {
1050
- "internalType": "uint256",
1051
- "name": "gasLimit",
1052
- "type": "uint256"
1053
- },
1054
- {
1055
- "internalType": "bytes32",
1056
- "name": "operationType",
1057
- "type": "bytes32"
1058
- },
1059
- {
1060
- "internalType": "bytes4",
1061
- "name": "executionSelector",
1062
- "type": "bytes4"
1063
- },
1064
- {
1065
- "internalType": "bytes",
1066
- "name": "executionParams",
1067
- "type": "bytes"
1068
- }
1069
- ],
1070
- "internalType": "struct EngineBlox.TxParams",
1071
- "name": "params",
1072
- "type": "tuple"
1073
- },
1074
- {
1075
- "internalType": "bytes32",
1076
- "name": "message",
1077
- "type": "bytes32"
1078
- },
1079
- {
1080
- "internalType": "bytes",
1081
- "name": "result",
1082
- "type": "bytes"
1083
- },
1084
- {
1085
- "components": [
1086
- {
1087
- "internalType": "address",
1088
- "name": "recipient",
1089
- "type": "address"
1090
- },
1091
- {
1092
- "internalType": "uint256",
1093
- "name": "nativeTokenAmount",
1094
- "type": "uint256"
1095
- },
1096
- {
1097
- "internalType": "address",
1098
- "name": "erc20TokenAddress",
1099
- "type": "address"
1100
- },
1101
- {
1102
- "internalType": "uint256",
1103
- "name": "erc20TokenAmount",
1104
- "type": "uint256"
1105
- }
1106
- ],
1107
- "internalType": "struct EngineBlox.PaymentDetails",
1108
- "name": "payment",
1109
- "type": "tuple"
1110
- }
1111
- ],
1112
- "internalType": "struct EngineBlox.TxRecord",
1113
- "name": "",
1114
- "type": "tuple"
1115
- }
1116
- ],
1117
- "stateMutability": "nonpayable",
1118
- "type": "function"
1119
- },
1120
- {
1121
- "inputs": [
1122
- {
1123
- "internalType": "address",
1124
- "name": "handlerContract",
1125
- "type": "address"
1126
- },
1127
- {
1128
- "internalType": "bytes4",
1129
- "name": "handlerSelector",
1130
- "type": "bytes4"
1131
- },
1132
- {
1133
- "internalType": "enum EngineBlox.TxAction",
1134
- "name": "action",
1135
- "type": "uint8"
1136
- },
1137
- {
1138
- "internalType": "uint256",
1139
- "name": "deadline",
1140
- "type": "uint256"
1141
- },
1142
- {
1143
- "internalType": "uint256",
1144
- "name": "maxGasPrice",
1145
- "type": "uint256"
1146
- },
1147
- {
1148
- "internalType": "address",
1149
- "name": "signer",
1150
- "type": "address"
1151
- }
1152
- ],
1153
- "name": "createMetaTxParams",
1154
- "outputs": [
1155
- {
1156
- "components": [
1157
- {
1158
- "internalType": "uint256",
1159
- "name": "chainId",
1160
- "type": "uint256"
1161
- },
1162
- {
1163
- "internalType": "uint256",
1164
- "name": "nonce",
1165
- "type": "uint256"
1166
- },
1167
- {
1168
- "internalType": "address",
1169
- "name": "handlerContract",
1170
- "type": "address"
1171
- },
1172
- {
1173
- "internalType": "bytes4",
1174
- "name": "handlerSelector",
1175
- "type": "bytes4"
1176
- },
1177
- {
1178
- "internalType": "enum EngineBlox.TxAction",
1179
- "name": "action",
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",
1180
725
  "type": "uint8"
1181
726
  },
1182
727
  {
@@ -1209,6 +754,11 @@
1209
754
  "internalType": "address",
1210
755
  "name": "newBroadcaster",
1211
756
  "type": "address"
757
+ },
758
+ {
759
+ "internalType": "uint256",
760
+ "name": "location",
761
+ "type": "uint256"
1212
762
  }
1213
763
  ],
1214
764
  "name": "executeBroadcasterUpdate",
@@ -1221,7 +771,7 @@
1221
771
  {
1222
772
  "components": [
1223
773
  {
1224
- "internalType": "enum GuardController.GuardConfigActionType",
774
+ "internalType": "enum IGuardController.GuardConfigActionType",
1225
775
  "name": "actionType",
1226
776
  "type": "uint8"
1227
777
  },
@@ -1231,7 +781,7 @@
1231
781
  "type": "bytes"
1232
782
  }
1233
783
  ],
1234
- "internalType": "struct GuardController.GuardConfigAction[]",
784
+ "internalType": "struct IGuardController.GuardConfigAction[]",
1235
785
  "name": "actions",
1236
786
  "type": "tuple[]"
1237
787
  }
@@ -1259,7 +809,7 @@
1259
809
  {
1260
810
  "components": [
1261
811
  {
1262
- "internalType": "enum RuntimeRBAC.RoleConfigActionType",
812
+ "internalType": "enum IRuntimeRBAC.RoleConfigActionType",
1263
813
  "name": "actionType",
1264
814
  "type": "uint8"
1265
815
  },
@@ -1269,7 +819,7 @@
1269
819
  "type": "bytes"
1270
820
  }
1271
821
  ],
1272
- "internalType": "struct RuntimeRBAC.RoleConfigAction[]",
822
+ "internalType": "struct IRuntimeRBAC.RoleConfigAction[]",
1273
823
  "name": "actions",
1274
824
  "type": "tuple[]"
1275
825
  }
@@ -1336,128 +886,103 @@
1336
886
  "internalType": "bytes32",
1337
887
  "name": "operationType",
1338
888
  "type": "bytes32"
1339
- }
1340
- ],
1341
- "name": "executeWithTimeLock",
1342
- "outputs": [
889
+ },
1343
890
  {
1344
891
  "components": [
1345
892
  {
1346
- "internalType": "uint256",
1347
- "name": "txId",
1348
- "type": "uint256"
893
+ "internalType": "address",
894
+ "name": "recipient",
895
+ "type": "address"
1349
896
  },
1350
897
  {
1351
898
  "internalType": "uint256",
1352
- "name": "releaseTime",
899
+ "name": "nativeTokenAmount",
1353
900
  "type": "uint256"
1354
901
  },
1355
902
  {
1356
- "internalType": "enum EngineBlox.TxStatus",
1357
- "name": "status",
1358
- "type": "uint8"
1359
- },
1360
- {
1361
- "components": [
1362
- {
1363
- "internalType": "address",
1364
- "name": "requester",
1365
- "type": "address"
1366
- },
1367
- {
1368
- "internalType": "address",
1369
- "name": "target",
1370
- "type": "address"
1371
- },
1372
- {
1373
- "internalType": "uint256",
1374
- "name": "value",
1375
- "type": "uint256"
1376
- },
1377
- {
1378
- "internalType": "uint256",
1379
- "name": "gasLimit",
1380
- "type": "uint256"
1381
- },
1382
- {
1383
- "internalType": "bytes32",
1384
- "name": "operationType",
1385
- "type": "bytes32"
1386
- },
1387
- {
1388
- "internalType": "bytes4",
1389
- "name": "executionSelector",
1390
- "type": "bytes4"
1391
- },
1392
- {
1393
- "internalType": "bytes",
1394
- "name": "executionParams",
1395
- "type": "bytes"
1396
- }
1397
- ],
1398
- "internalType": "struct EngineBlox.TxParams",
1399
- "name": "params",
1400
- "type": "tuple"
1401
- },
1402
- {
1403
- "internalType": "bytes32",
1404
- "name": "message",
1405
- "type": "bytes32"
1406
- },
1407
- {
1408
- "internalType": "bytes",
1409
- "name": "result",
1410
- "type": "bytes"
903
+ "internalType": "address",
904
+ "name": "erc20TokenAddress",
905
+ "type": "address"
1411
906
  },
1412
907
  {
1413
- "components": [
1414
- {
1415
- "internalType": "address",
1416
- "name": "recipient",
1417
- "type": "address"
1418
- },
1419
- {
1420
- "internalType": "uint256",
1421
- "name": "nativeTokenAmount",
1422
- "type": "uint256"
1423
- },
1424
- {
1425
- "internalType": "address",
1426
- "name": "erc20TokenAddress",
1427
- "type": "address"
1428
- },
1429
- {
1430
- "internalType": "uint256",
1431
- "name": "erc20TokenAmount",
1432
- "type": "uint256"
1433
- }
1434
- ],
1435
- "internalType": "struct EngineBlox.PaymentDetails",
1436
- "name": "payment",
1437
- "type": "tuple"
908
+ "internalType": "uint256",
909
+ "name": "erc20TokenAmount",
910
+ "type": "uint256"
1438
911
  }
1439
912
  ],
1440
- "internalType": "struct EngineBlox.TxRecord",
1441
- "name": "",
913
+ "internalType": "struct EngineBlox.PaymentDetails",
914
+ "name": "paymentDetails",
1442
915
  "type": "tuple"
1443
916
  }
1444
917
  ],
918
+ "name": "executeWithPayment",
919
+ "outputs": [
920
+ {
921
+ "internalType": "uint256",
922
+ "name": "txId",
923
+ "type": "uint256"
924
+ }
925
+ ],
1445
926
  "stateMutability": "nonpayable",
1446
927
  "type": "function"
1447
928
  },
1448
929
  {
1449
930
  "inputs": [
931
+ {
932
+ "internalType": "address",
933
+ "name": "target",
934
+ "type": "address"
935
+ },
936
+ {
937
+ "internalType": "uint256",
938
+ "name": "value",
939
+ "type": "uint256"
940
+ },
1450
941
  {
1451
942
  "internalType": "bytes4",
1452
943
  "name": "functionSelector",
1453
944
  "type": "bytes4"
1454
- }
1455
- ],
1456
- "name": "functionSchemaExists",
1457
- "outputs": [
945
+ },
1458
946
  {
1459
- "internalType": "bool",
1460
- "name": "",
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": "",
1461
986
  "type": "bool"
1462
987
  }
1463
988
  ],
@@ -1992,6 +1517,19 @@
1992
1517
  "stateMutability": "view",
1993
1518
  "type": "function"
1994
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
+ },
1995
1533
  {
1996
1534
  "inputs": [
1997
1535
  {
@@ -2000,20 +1538,63 @@
2000
1538
  "type": "bytes4"
2001
1539
  }
2002
1540
  ],
2003
- "name": "getAllowedTargets",
1541
+ "name": "getFunctionSchema",
2004
1542
  "outputs": [
2005
1543
  {
2006
- "internalType": "address[]",
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",
2007
1582
  "name": "",
2008
- "type": "address[]"
1583
+ "type": "tuple"
2009
1584
  }
2010
1585
  ],
2011
1586
  "stateMutability": "view",
2012
1587
  "type": "function"
2013
1588
  },
2014
1589
  {
2015
- "inputs": [],
2016
- "name": "getBroadcasters",
1590
+ "inputs": [
1591
+ {
1592
+ "internalType": "bytes4",
1593
+ "name": "functionSelector",
1594
+ "type": "bytes4"
1595
+ }
1596
+ ],
1597
+ "name": "getFunctionWhitelistTargets",
2017
1598
  "outputs": [
2018
1599
  {
2019
1600
  "internalType": "address[]",
@@ -2032,37 +1613,12 @@
2032
1613
  "type": "bytes4"
2033
1614
  }
2034
1615
  ],
2035
- "name": "getFunctionSchema",
1616
+ "name": "getHooks",
2036
1617
  "outputs": [
2037
1618
  {
2038
- "internalType": "string",
2039
- "name": "functionSignature",
2040
- "type": "string"
2041
- },
2042
- {
2043
- "internalType": "bytes4",
2044
- "name": "functionSelectorReturn",
2045
- "type": "bytes4"
2046
- },
2047
- {
2048
- "internalType": "bytes32",
2049
- "name": "operationType",
2050
- "type": "bytes32"
2051
- },
2052
- {
2053
- "internalType": "string",
2054
- "name": "operationName",
2055
- "type": "string"
2056
- },
2057
- {
2058
- "internalType": "enum EngineBlox.TxAction[]",
2059
- "name": "supportedActions",
2060
- "type": "uint8[]"
2061
- },
2062
- {
2063
- "internalType": "bool",
2064
- "name": "isProtected",
2065
- "type": "bool"
1619
+ "internalType": "address[]",
1620
+ "name": "hooks",
1621
+ "type": "address[]"
2066
1622
  }
2067
1623
  ],
2068
1624
  "stateMutability": "view",
@@ -2477,37 +2033,6 @@
2477
2033
  "stateMutability": "view",
2478
2034
  "type": "function"
2479
2035
  },
2480
- {
2481
- "inputs": [
2482
- {
2483
- "components": [
2484
- {
2485
- "internalType": "enum GuardController.GuardConfigActionType",
2486
- "name": "actionType",
2487
- "type": "uint8"
2488
- },
2489
- {
2490
- "internalType": "bytes",
2491
- "name": "data",
2492
- "type": "bytes"
2493
- }
2494
- ],
2495
- "internalType": "struct GuardController.GuardConfigAction[]",
2496
- "name": "actions",
2497
- "type": "tuple[]"
2498
- }
2499
- ],
2500
- "name": "guardConfigBatchExecutionParams",
2501
- "outputs": [
2502
- {
2503
- "internalType": "bytes",
2504
- "name": "",
2505
- "type": "bytes"
2506
- }
2507
- ],
2508
- "stateMutability": "pure",
2509
- "type": "function"
2510
- },
2511
2036
  {
2512
2037
  "inputs": [
2513
2038
  {
@@ -2684,105 +2209,9 @@
2684
2209
  "name": "guardConfigBatchRequestAndApprove",
2685
2210
  "outputs": [
2686
2211
  {
2687
- "components": [
2688
- {
2689
- "internalType": "uint256",
2690
- "name": "txId",
2691
- "type": "uint256"
2692
- },
2693
- {
2694
- "internalType": "uint256",
2695
- "name": "releaseTime",
2696
- "type": "uint256"
2697
- },
2698
- {
2699
- "internalType": "enum EngineBlox.TxStatus",
2700
- "name": "status",
2701
- "type": "uint8"
2702
- },
2703
- {
2704
- "components": [
2705
- {
2706
- "internalType": "address",
2707
- "name": "requester",
2708
- "type": "address"
2709
- },
2710
- {
2711
- "internalType": "address",
2712
- "name": "target",
2713
- "type": "address"
2714
- },
2715
- {
2716
- "internalType": "uint256",
2717
- "name": "value",
2718
- "type": "uint256"
2719
- },
2720
- {
2721
- "internalType": "uint256",
2722
- "name": "gasLimit",
2723
- "type": "uint256"
2724
- },
2725
- {
2726
- "internalType": "bytes32",
2727
- "name": "operationType",
2728
- "type": "bytes32"
2729
- },
2730
- {
2731
- "internalType": "bytes4",
2732
- "name": "executionSelector",
2733
- "type": "bytes4"
2734
- },
2735
- {
2736
- "internalType": "bytes",
2737
- "name": "executionParams",
2738
- "type": "bytes"
2739
- }
2740
- ],
2741
- "internalType": "struct EngineBlox.TxParams",
2742
- "name": "params",
2743
- "type": "tuple"
2744
- },
2745
- {
2746
- "internalType": "bytes32",
2747
- "name": "message",
2748
- "type": "bytes32"
2749
- },
2750
- {
2751
- "internalType": "bytes",
2752
- "name": "result",
2753
- "type": "bytes"
2754
- },
2755
- {
2756
- "components": [
2757
- {
2758
- "internalType": "address",
2759
- "name": "recipient",
2760
- "type": "address"
2761
- },
2762
- {
2763
- "internalType": "uint256",
2764
- "name": "nativeTokenAmount",
2765
- "type": "uint256"
2766
- },
2767
- {
2768
- "internalType": "address",
2769
- "name": "erc20TokenAddress",
2770
- "type": "address"
2771
- },
2772
- {
2773
- "internalType": "uint256",
2774
- "name": "erc20TokenAmount",
2775
- "type": "uint256"
2776
- }
2777
- ],
2778
- "internalType": "struct EngineBlox.PaymentDetails",
2779
- "name": "payment",
2780
- "type": "tuple"
2781
- }
2782
- ],
2783
- "internalType": "struct EngineBlox.TxRecord",
2212
+ "internalType": "uint256",
2784
2213
  "name": "",
2785
- "type": "tuple"
2214
+ "type": "uint256"
2786
2215
  }
2787
2216
  ],
2788
2217
  "stateMutability": "nonpayable",
@@ -3037,144 +2466,17 @@
3037
2466
  ],
3038
2467
  "name": "requestAndApproveExecution",
3039
2468
  "outputs": [
3040
- {
3041
- "components": [
3042
- {
3043
- "internalType": "uint256",
3044
- "name": "txId",
3045
- "type": "uint256"
3046
- },
3047
- {
3048
- "internalType": "uint256",
3049
- "name": "releaseTime",
3050
- "type": "uint256"
3051
- },
3052
- {
3053
- "internalType": "enum EngineBlox.TxStatus",
3054
- "name": "status",
3055
- "type": "uint8"
3056
- },
3057
- {
3058
- "components": [
3059
- {
3060
- "internalType": "address",
3061
- "name": "requester",
3062
- "type": "address"
3063
- },
3064
- {
3065
- "internalType": "address",
3066
- "name": "target",
3067
- "type": "address"
3068
- },
3069
- {
3070
- "internalType": "uint256",
3071
- "name": "value",
3072
- "type": "uint256"
3073
- },
3074
- {
3075
- "internalType": "uint256",
3076
- "name": "gasLimit",
3077
- "type": "uint256"
3078
- },
3079
- {
3080
- "internalType": "bytes32",
3081
- "name": "operationType",
3082
- "type": "bytes32"
3083
- },
3084
- {
3085
- "internalType": "bytes4",
3086
- "name": "executionSelector",
3087
- "type": "bytes4"
3088
- },
3089
- {
3090
- "internalType": "bytes",
3091
- "name": "executionParams",
3092
- "type": "bytes"
3093
- }
3094
- ],
3095
- "internalType": "struct EngineBlox.TxParams",
3096
- "name": "params",
3097
- "type": "tuple"
3098
- },
3099
- {
3100
- "internalType": "bytes32",
3101
- "name": "message",
3102
- "type": "bytes32"
3103
- },
3104
- {
3105
- "internalType": "bytes",
3106
- "name": "result",
3107
- "type": "bytes"
3108
- },
3109
- {
3110
- "components": [
3111
- {
3112
- "internalType": "address",
3113
- "name": "recipient",
3114
- "type": "address"
3115
- },
3116
- {
3117
- "internalType": "uint256",
3118
- "name": "nativeTokenAmount",
3119
- "type": "uint256"
3120
- },
3121
- {
3122
- "internalType": "address",
3123
- "name": "erc20TokenAddress",
3124
- "type": "address"
3125
- },
3126
- {
3127
- "internalType": "uint256",
3128
- "name": "erc20TokenAmount",
3129
- "type": "uint256"
3130
- }
3131
- ],
3132
- "internalType": "struct EngineBlox.PaymentDetails",
3133
- "name": "payment",
3134
- "type": "tuple"
3135
- }
3136
- ],
3137
- "internalType": "struct EngineBlox.TxRecord",
3138
- "name": "",
3139
- "type": "tuple"
3140
- }
3141
- ],
3142
- "stateMutability": "nonpayable",
3143
- "type": "function"
3144
- },
3145
- {
3146
- "inputs": [
3147
- {
3148
- "components": [
3149
- {
3150
- "internalType": "enum RuntimeRBAC.RoleConfigActionType",
3151
- "name": "actionType",
3152
- "type": "uint8"
3153
- },
3154
- {
3155
- "internalType": "bytes",
3156
- "name": "data",
3157
- "type": "bytes"
3158
- }
3159
- ],
3160
- "internalType": "struct RuntimeRBAC.RoleConfigAction[]",
3161
- "name": "actions",
3162
- "type": "tuple[]"
3163
- }
3164
- ],
3165
- "name": "roleConfigBatchExecutionParams",
3166
- "outputs": [
3167
- {
3168
- "internalType": "bytes",
3169
- "name": "",
3170
- "type": "bytes"
3171
- }
3172
- ],
3173
- "stateMutability": "pure",
3174
- "type": "function"
3175
- },
3176
- {
3177
- "inputs": [
2469
+ {
2470
+ "internalType": "uint256",
2471
+ "name": "",
2472
+ "type": "uint256"
2473
+ }
2474
+ ],
2475
+ "stateMutability": "nonpayable",
2476
+ "type": "function"
2477
+ },
2478
+ {
2479
+ "inputs": [
3178
2480
  {
3179
2481
  "components": [
3180
2482
  {
@@ -3349,110 +2651,33 @@
3349
2651
  "name": "roleConfigBatchRequestAndApprove",
3350
2652
  "outputs": [
3351
2653
  {
3352
- "components": [
3353
- {
3354
- "internalType": "uint256",
3355
- "name": "txId",
3356
- "type": "uint256"
3357
- },
3358
- {
3359
- "internalType": "uint256",
3360
- "name": "releaseTime",
3361
- "type": "uint256"
3362
- },
3363
- {
3364
- "internalType": "enum EngineBlox.TxStatus",
3365
- "name": "status",
3366
- "type": "uint8"
3367
- },
3368
- {
3369
- "components": [
3370
- {
3371
- "internalType": "address",
3372
- "name": "requester",
3373
- "type": "address"
3374
- },
3375
- {
3376
- "internalType": "address",
3377
- "name": "target",
3378
- "type": "address"
3379
- },
3380
- {
3381
- "internalType": "uint256",
3382
- "name": "value",
3383
- "type": "uint256"
3384
- },
3385
- {
3386
- "internalType": "uint256",
3387
- "name": "gasLimit",
3388
- "type": "uint256"
3389
- },
3390
- {
3391
- "internalType": "bytes32",
3392
- "name": "operationType",
3393
- "type": "bytes32"
3394
- },
3395
- {
3396
- "internalType": "bytes4",
3397
- "name": "executionSelector",
3398
- "type": "bytes4"
3399
- },
3400
- {
3401
- "internalType": "bytes",
3402
- "name": "executionParams",
3403
- "type": "bytes"
3404
- }
3405
- ],
3406
- "internalType": "struct EngineBlox.TxParams",
3407
- "name": "params",
3408
- "type": "tuple"
3409
- },
3410
- {
3411
- "internalType": "bytes32",
3412
- "name": "message",
3413
- "type": "bytes32"
3414
- },
3415
- {
3416
- "internalType": "bytes",
3417
- "name": "result",
3418
- "type": "bytes"
3419
- },
3420
- {
3421
- "components": [
3422
- {
3423
- "internalType": "address",
3424
- "name": "recipient",
3425
- "type": "address"
3426
- },
3427
- {
3428
- "internalType": "uint256",
3429
- "name": "nativeTokenAmount",
3430
- "type": "uint256"
3431
- },
3432
- {
3433
- "internalType": "address",
3434
- "name": "erc20TokenAddress",
3435
- "type": "address"
3436
- },
3437
- {
3438
- "internalType": "uint256",
3439
- "name": "erc20TokenAmount",
3440
- "type": "uint256"
3441
- }
3442
- ],
3443
- "internalType": "struct EngineBlox.PaymentDetails",
3444
- "name": "payment",
3445
- "type": "tuple"
3446
- }
3447
- ],
3448
- "internalType": "struct EngineBlox.TxRecord",
2654
+ "internalType": "uint256",
3449
2655
  "name": "",
3450
- "type": "tuple"
2656
+ "type": "uint256"
3451
2657
  }
3452
2658
  ],
3453
2659
  "stateMutability": "nonpayable",
3454
2660
  "type": "function"
3455
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
+ },
3456
2681
  {
3457
2682
  "inputs": [
3458
2683
  {
@@ -3629,105 +2854,9 @@
3629
2854
  "name": "transferOwnershipApprovalWithMetaTx",
3630
2855
  "outputs": [
3631
2856
  {
3632
- "components": [
3633
- {
3634
- "internalType": "uint256",
3635
- "name": "txId",
3636
- "type": "uint256"
3637
- },
3638
- {
3639
- "internalType": "uint256",
3640
- "name": "releaseTime",
3641
- "type": "uint256"
3642
- },
3643
- {
3644
- "internalType": "enum EngineBlox.TxStatus",
3645
- "name": "status",
3646
- "type": "uint8"
3647
- },
3648
- {
3649
- "components": [
3650
- {
3651
- "internalType": "address",
3652
- "name": "requester",
3653
- "type": "address"
3654
- },
3655
- {
3656
- "internalType": "address",
3657
- "name": "target",
3658
- "type": "address"
3659
- },
3660
- {
3661
- "internalType": "uint256",
3662
- "name": "value",
3663
- "type": "uint256"
3664
- },
3665
- {
3666
- "internalType": "uint256",
3667
- "name": "gasLimit",
3668
- "type": "uint256"
3669
- },
3670
- {
3671
- "internalType": "bytes32",
3672
- "name": "operationType",
3673
- "type": "bytes32"
3674
- },
3675
- {
3676
- "internalType": "bytes4",
3677
- "name": "executionSelector",
3678
- "type": "bytes4"
3679
- },
3680
- {
3681
- "internalType": "bytes",
3682
- "name": "executionParams",
3683
- "type": "bytes"
3684
- }
3685
- ],
3686
- "internalType": "struct EngineBlox.TxParams",
3687
- "name": "params",
3688
- "type": "tuple"
3689
- },
3690
- {
3691
- "internalType": "bytes32",
3692
- "name": "message",
3693
- "type": "bytes32"
3694
- },
3695
- {
3696
- "internalType": "bytes",
3697
- "name": "result",
3698
- "type": "bytes"
3699
- },
3700
- {
3701
- "components": [
3702
- {
3703
- "internalType": "address",
3704
- "name": "recipient",
3705
- "type": "address"
3706
- },
3707
- {
3708
- "internalType": "uint256",
3709
- "name": "nativeTokenAmount",
3710
- "type": "uint256"
3711
- },
3712
- {
3713
- "internalType": "address",
3714
- "name": "erc20TokenAddress",
3715
- "type": "address"
3716
- },
3717
- {
3718
- "internalType": "uint256",
3719
- "name": "erc20TokenAmount",
3720
- "type": "uint256"
3721
- }
3722
- ],
3723
- "internalType": "struct EngineBlox.PaymentDetails",
3724
- "name": "payment",
3725
- "type": "tuple"
3726
- }
3727
- ],
3728
- "internalType": "struct EngineBlox.TxRecord",
2857
+ "internalType": "uint256",
3729
2858
  "name": "",
3730
- "type": "tuple"
2859
+ "type": "uint256"
3731
2860
  }
3732
2861
  ],
3733
2862
  "stateMutability": "nonpayable",
@@ -3744,105 +2873,9 @@
3744
2873
  "name": "transferOwnershipCancellation",
3745
2874
  "outputs": [
3746
2875
  {
3747
- "components": [
3748
- {
3749
- "internalType": "uint256",
3750
- "name": "txId",
3751
- "type": "uint256"
3752
- },
3753
- {
3754
- "internalType": "uint256",
3755
- "name": "releaseTime",
3756
- "type": "uint256"
3757
- },
3758
- {
3759
- "internalType": "enum EngineBlox.TxStatus",
3760
- "name": "status",
3761
- "type": "uint8"
3762
- },
3763
- {
3764
- "components": [
3765
- {
3766
- "internalType": "address",
3767
- "name": "requester",
3768
- "type": "address"
3769
- },
3770
- {
3771
- "internalType": "address",
3772
- "name": "target",
3773
- "type": "address"
3774
- },
3775
- {
3776
- "internalType": "uint256",
3777
- "name": "value",
3778
- "type": "uint256"
3779
- },
3780
- {
3781
- "internalType": "uint256",
3782
- "name": "gasLimit",
3783
- "type": "uint256"
3784
- },
3785
- {
3786
- "internalType": "bytes32",
3787
- "name": "operationType",
3788
- "type": "bytes32"
3789
- },
3790
- {
3791
- "internalType": "bytes4",
3792
- "name": "executionSelector",
3793
- "type": "bytes4"
3794
- },
3795
- {
3796
- "internalType": "bytes",
3797
- "name": "executionParams",
3798
- "type": "bytes"
3799
- }
3800
- ],
3801
- "internalType": "struct EngineBlox.TxParams",
3802
- "name": "params",
3803
- "type": "tuple"
3804
- },
3805
- {
3806
- "internalType": "bytes32",
3807
- "name": "message",
3808
- "type": "bytes32"
3809
- },
3810
- {
3811
- "internalType": "bytes",
3812
- "name": "result",
3813
- "type": "bytes"
3814
- },
3815
- {
3816
- "components": [
3817
- {
3818
- "internalType": "address",
3819
- "name": "recipient",
3820
- "type": "address"
3821
- },
3822
- {
3823
- "internalType": "uint256",
3824
- "name": "nativeTokenAmount",
3825
- "type": "uint256"
3826
- },
3827
- {
3828
- "internalType": "address",
3829
- "name": "erc20TokenAddress",
3830
- "type": "address"
3831
- },
3832
- {
3833
- "internalType": "uint256",
3834
- "name": "erc20TokenAmount",
3835
- "type": "uint256"
3836
- }
3837
- ],
3838
- "internalType": "struct EngineBlox.PaymentDetails",
3839
- "name": "payment",
3840
- "type": "tuple"
3841
- }
3842
- ],
3843
- "internalType": "struct EngineBlox.TxRecord",
2876
+ "internalType": "uint256",
3844
2877
  "name": "",
3845
- "type": "tuple"
2878
+ "type": "uint256"
3846
2879
  }
3847
2880
  ],
3848
2881
  "stateMutability": "nonpayable",
@@ -4023,732 +3056,49 @@
4023
3056
  ],
4024
3057
  "name": "transferOwnershipCancellationWithMetaTx",
4025
3058
  "outputs": [
4026
- {
4027
- "components": [
4028
- {
4029
- "internalType": "uint256",
4030
- "name": "txId",
4031
- "type": "uint256"
4032
- },
4033
- {
4034
- "internalType": "uint256",
4035
- "name": "releaseTime",
4036
- "type": "uint256"
4037
- },
4038
- {
4039
- "internalType": "enum EngineBlox.TxStatus",
4040
- "name": "status",
4041
- "type": "uint8"
4042
- },
4043
- {
4044
- "components": [
4045
- {
4046
- "internalType": "address",
4047
- "name": "requester",
4048
- "type": "address"
4049
- },
4050
- {
4051
- "internalType": "address",
4052
- "name": "target",
4053
- "type": "address"
4054
- },
4055
- {
4056
- "internalType": "uint256",
4057
- "name": "value",
4058
- "type": "uint256"
4059
- },
4060
- {
4061
- "internalType": "uint256",
4062
- "name": "gasLimit",
4063
- "type": "uint256"
4064
- },
4065
- {
4066
- "internalType": "bytes32",
4067
- "name": "operationType",
4068
- "type": "bytes32"
4069
- },
4070
- {
4071
- "internalType": "bytes4",
4072
- "name": "executionSelector",
4073
- "type": "bytes4"
4074
- },
4075
- {
4076
- "internalType": "bytes",
4077
- "name": "executionParams",
4078
- "type": "bytes"
4079
- }
4080
- ],
4081
- "internalType": "struct EngineBlox.TxParams",
4082
- "name": "params",
4083
- "type": "tuple"
4084
- },
4085
- {
4086
- "internalType": "bytes32",
4087
- "name": "message",
4088
- "type": "bytes32"
4089
- },
4090
- {
4091
- "internalType": "bytes",
4092
- "name": "result",
4093
- "type": "bytes"
4094
- },
4095
- {
4096
- "components": [
4097
- {
4098
- "internalType": "address",
4099
- "name": "recipient",
4100
- "type": "address"
4101
- },
4102
- {
4103
- "internalType": "uint256",
4104
- "name": "nativeTokenAmount",
4105
- "type": "uint256"
4106
- },
4107
- {
4108
- "internalType": "address",
4109
- "name": "erc20TokenAddress",
4110
- "type": "address"
4111
- },
4112
- {
4113
- "internalType": "uint256",
4114
- "name": "erc20TokenAmount",
4115
- "type": "uint256"
4116
- }
4117
- ],
4118
- "internalType": "struct EngineBlox.PaymentDetails",
4119
- "name": "payment",
4120
- "type": "tuple"
4121
- }
4122
- ],
4123
- "internalType": "struct EngineBlox.TxRecord",
4124
- "name": "",
4125
- "type": "tuple"
4126
- }
4127
- ],
4128
- "stateMutability": "nonpayable",
4129
- "type": "function"
4130
- },
4131
- {
4132
- "inputs": [
4133
- {
4134
- "internalType": "uint256",
4135
- "name": "txId",
4136
- "type": "uint256"
4137
- }
4138
- ],
4139
- "name": "transferOwnershipDelayedApproval",
4140
- "outputs": [
4141
- {
4142
- "components": [
4143
- {
4144
- "internalType": "uint256",
4145
- "name": "txId",
4146
- "type": "uint256"
4147
- },
4148
- {
4149
- "internalType": "uint256",
4150
- "name": "releaseTime",
4151
- "type": "uint256"
4152
- },
4153
- {
4154
- "internalType": "enum EngineBlox.TxStatus",
4155
- "name": "status",
4156
- "type": "uint8"
4157
- },
4158
- {
4159
- "components": [
4160
- {
4161
- "internalType": "address",
4162
- "name": "requester",
4163
- "type": "address"
4164
- },
4165
- {
4166
- "internalType": "address",
4167
- "name": "target",
4168
- "type": "address"
4169
- },
4170
- {
4171
- "internalType": "uint256",
4172
- "name": "value",
4173
- "type": "uint256"
4174
- },
4175
- {
4176
- "internalType": "uint256",
4177
- "name": "gasLimit",
4178
- "type": "uint256"
4179
- },
4180
- {
4181
- "internalType": "bytes32",
4182
- "name": "operationType",
4183
- "type": "bytes32"
4184
- },
4185
- {
4186
- "internalType": "bytes4",
4187
- "name": "executionSelector",
4188
- "type": "bytes4"
4189
- },
4190
- {
4191
- "internalType": "bytes",
4192
- "name": "executionParams",
4193
- "type": "bytes"
4194
- }
4195
- ],
4196
- "internalType": "struct EngineBlox.TxParams",
4197
- "name": "params",
4198
- "type": "tuple"
4199
- },
4200
- {
4201
- "internalType": "bytes32",
4202
- "name": "message",
4203
- "type": "bytes32"
4204
- },
4205
- {
4206
- "internalType": "bytes",
4207
- "name": "result",
4208
- "type": "bytes"
4209
- },
4210
- {
4211
- "components": [
4212
- {
4213
- "internalType": "address",
4214
- "name": "recipient",
4215
- "type": "address"
4216
- },
4217
- {
4218
- "internalType": "uint256",
4219
- "name": "nativeTokenAmount",
4220
- "type": "uint256"
4221
- },
4222
- {
4223
- "internalType": "address",
4224
- "name": "erc20TokenAddress",
4225
- "type": "address"
4226
- },
4227
- {
4228
- "internalType": "uint256",
4229
- "name": "erc20TokenAmount",
4230
- "type": "uint256"
4231
- }
4232
- ],
4233
- "internalType": "struct EngineBlox.PaymentDetails",
4234
- "name": "payment",
4235
- "type": "tuple"
4236
- }
4237
- ],
4238
- "internalType": "struct EngineBlox.TxRecord",
4239
- "name": "",
4240
- "type": "tuple"
4241
- }
4242
- ],
4243
- "stateMutability": "nonpayable",
4244
- "type": "function"
4245
- },
4246
- {
4247
- "inputs": [],
4248
- "name": "transferOwnershipRequest",
4249
- "outputs": [
4250
- {
4251
- "components": [
4252
- {
4253
- "internalType": "uint256",
4254
- "name": "txId",
4255
- "type": "uint256"
4256
- },
4257
- {
4258
- "internalType": "uint256",
4259
- "name": "releaseTime",
4260
- "type": "uint256"
4261
- },
4262
- {
4263
- "internalType": "enum EngineBlox.TxStatus",
4264
- "name": "status",
4265
- "type": "uint8"
4266
- },
4267
- {
4268
- "components": [
4269
- {
4270
- "internalType": "address",
4271
- "name": "requester",
4272
- "type": "address"
4273
- },
4274
- {
4275
- "internalType": "address",
4276
- "name": "target",
4277
- "type": "address"
4278
- },
4279
- {
4280
- "internalType": "uint256",
4281
- "name": "value",
4282
- "type": "uint256"
4283
- },
4284
- {
4285
- "internalType": "uint256",
4286
- "name": "gasLimit",
4287
- "type": "uint256"
4288
- },
4289
- {
4290
- "internalType": "bytes32",
4291
- "name": "operationType",
4292
- "type": "bytes32"
4293
- },
4294
- {
4295
- "internalType": "bytes4",
4296
- "name": "executionSelector",
4297
- "type": "bytes4"
4298
- },
4299
- {
4300
- "internalType": "bytes",
4301
- "name": "executionParams",
4302
- "type": "bytes"
4303
- }
4304
- ],
4305
- "internalType": "struct EngineBlox.TxParams",
4306
- "name": "params",
4307
- "type": "tuple"
4308
- },
4309
- {
4310
- "internalType": "bytes32",
4311
- "name": "message",
4312
- "type": "bytes32"
4313
- },
4314
- {
4315
- "internalType": "bytes",
4316
- "name": "result",
4317
- "type": "bytes"
4318
- },
4319
- {
4320
- "components": [
4321
- {
4322
- "internalType": "address",
4323
- "name": "recipient",
4324
- "type": "address"
4325
- },
4326
- {
4327
- "internalType": "uint256",
4328
- "name": "nativeTokenAmount",
4329
- "type": "uint256"
4330
- },
4331
- {
4332
- "internalType": "address",
4333
- "name": "erc20TokenAddress",
4334
- "type": "address"
4335
- },
4336
- {
4337
- "internalType": "uint256",
4338
- "name": "erc20TokenAmount",
4339
- "type": "uint256"
4340
- }
4341
- ],
4342
- "internalType": "struct EngineBlox.PaymentDetails",
4343
- "name": "payment",
4344
- "type": "tuple"
4345
- }
4346
- ],
4347
- "internalType": "struct EngineBlox.TxRecord",
4348
- "name": "",
4349
- "type": "tuple"
4350
- }
4351
- ],
4352
- "stateMutability": "nonpayable",
4353
- "type": "function"
4354
- },
4355
- {
4356
- "inputs": [
4357
- {
4358
- "components": [
4359
- {
4360
- "components": [
4361
- {
4362
- "internalType": "uint256",
4363
- "name": "txId",
4364
- "type": "uint256"
4365
- },
4366
- {
4367
- "internalType": "uint256",
4368
- "name": "releaseTime",
4369
- "type": "uint256"
4370
- },
4371
- {
4372
- "internalType": "enum EngineBlox.TxStatus",
4373
- "name": "status",
4374
- "type": "uint8"
4375
- },
4376
- {
4377
- "components": [
4378
- {
4379
- "internalType": "address",
4380
- "name": "requester",
4381
- "type": "address"
4382
- },
4383
- {
4384
- "internalType": "address",
4385
- "name": "target",
4386
- "type": "address"
4387
- },
4388
- {
4389
- "internalType": "uint256",
4390
- "name": "value",
4391
- "type": "uint256"
4392
- },
4393
- {
4394
- "internalType": "uint256",
4395
- "name": "gasLimit",
4396
- "type": "uint256"
4397
- },
4398
- {
4399
- "internalType": "bytes32",
4400
- "name": "operationType",
4401
- "type": "bytes32"
4402
- },
4403
- {
4404
- "internalType": "bytes4",
4405
- "name": "executionSelector",
4406
- "type": "bytes4"
4407
- },
4408
- {
4409
- "internalType": "bytes",
4410
- "name": "executionParams",
4411
- "type": "bytes"
4412
- }
4413
- ],
4414
- "internalType": "struct EngineBlox.TxParams",
4415
- "name": "params",
4416
- "type": "tuple"
4417
- },
4418
- {
4419
- "internalType": "bytes32",
4420
- "name": "message",
4421
- "type": "bytes32"
4422
- },
4423
- {
4424
- "internalType": "bytes",
4425
- "name": "result",
4426
- "type": "bytes"
4427
- },
4428
- {
4429
- "components": [
4430
- {
4431
- "internalType": "address",
4432
- "name": "recipient",
4433
- "type": "address"
4434
- },
4435
- {
4436
- "internalType": "uint256",
4437
- "name": "nativeTokenAmount",
4438
- "type": "uint256"
4439
- },
4440
- {
4441
- "internalType": "address",
4442
- "name": "erc20TokenAddress",
4443
- "type": "address"
4444
- },
4445
- {
4446
- "internalType": "uint256",
4447
- "name": "erc20TokenAmount",
4448
- "type": "uint256"
4449
- }
4450
- ],
4451
- "internalType": "struct EngineBlox.PaymentDetails",
4452
- "name": "payment",
4453
- "type": "tuple"
4454
- }
4455
- ],
4456
- "internalType": "struct EngineBlox.TxRecord",
4457
- "name": "txRecord",
4458
- "type": "tuple"
4459
- },
4460
- {
4461
- "components": [
4462
- {
4463
- "internalType": "uint256",
4464
- "name": "chainId",
4465
- "type": "uint256"
4466
- },
4467
- {
4468
- "internalType": "uint256",
4469
- "name": "nonce",
4470
- "type": "uint256"
4471
- },
4472
- {
4473
- "internalType": "address",
4474
- "name": "handlerContract",
4475
- "type": "address"
4476
- },
4477
- {
4478
- "internalType": "bytes4",
4479
- "name": "handlerSelector",
4480
- "type": "bytes4"
4481
- },
4482
- {
4483
- "internalType": "enum EngineBlox.TxAction",
4484
- "name": "action",
4485
- "type": "uint8"
4486
- },
4487
- {
4488
- "internalType": "uint256",
4489
- "name": "deadline",
4490
- "type": "uint256"
4491
- },
4492
- {
4493
- "internalType": "uint256",
4494
- "name": "maxGasPrice",
4495
- "type": "uint256"
4496
- },
4497
- {
4498
- "internalType": "address",
4499
- "name": "signer",
4500
- "type": "address"
4501
- }
4502
- ],
4503
- "internalType": "struct EngineBlox.MetaTxParams",
4504
- "name": "params",
4505
- "type": "tuple"
4506
- },
4507
- {
4508
- "internalType": "bytes32",
4509
- "name": "message",
4510
- "type": "bytes32"
4511
- },
4512
- {
4513
- "internalType": "bytes",
4514
- "name": "signature",
4515
- "type": "bytes"
4516
- },
4517
- {
4518
- "internalType": "bytes",
4519
- "name": "data",
4520
- "type": "bytes"
4521
- }
4522
- ],
4523
- "internalType": "struct EngineBlox.MetaTransaction",
4524
- "name": "metaTx",
4525
- "type": "tuple"
4526
- }
4527
- ],
4528
- "name": "updateBroadcasterApprovalWithMetaTx",
4529
- "outputs": [
4530
- {
4531
- "components": [
4532
- {
4533
- "internalType": "uint256",
4534
- "name": "txId",
4535
- "type": "uint256"
4536
- },
4537
- {
4538
- "internalType": "uint256",
4539
- "name": "releaseTime",
4540
- "type": "uint256"
4541
- },
4542
- {
4543
- "internalType": "enum EngineBlox.TxStatus",
4544
- "name": "status",
4545
- "type": "uint8"
4546
- },
4547
- {
4548
- "components": [
4549
- {
4550
- "internalType": "address",
4551
- "name": "requester",
4552
- "type": "address"
4553
- },
4554
- {
4555
- "internalType": "address",
4556
- "name": "target",
4557
- "type": "address"
4558
- },
4559
- {
4560
- "internalType": "uint256",
4561
- "name": "value",
4562
- "type": "uint256"
4563
- },
4564
- {
4565
- "internalType": "uint256",
4566
- "name": "gasLimit",
4567
- "type": "uint256"
4568
- },
4569
- {
4570
- "internalType": "bytes32",
4571
- "name": "operationType",
4572
- "type": "bytes32"
4573
- },
4574
- {
4575
- "internalType": "bytes4",
4576
- "name": "executionSelector",
4577
- "type": "bytes4"
4578
- },
4579
- {
4580
- "internalType": "bytes",
4581
- "name": "executionParams",
4582
- "type": "bytes"
4583
- }
4584
- ],
4585
- "internalType": "struct EngineBlox.TxParams",
4586
- "name": "params",
4587
- "type": "tuple"
4588
- },
4589
- {
4590
- "internalType": "bytes32",
4591
- "name": "message",
4592
- "type": "bytes32"
4593
- },
4594
- {
4595
- "internalType": "bytes",
4596
- "name": "result",
4597
- "type": "bytes"
4598
- },
4599
- {
4600
- "components": [
4601
- {
4602
- "internalType": "address",
4603
- "name": "recipient",
4604
- "type": "address"
4605
- },
4606
- {
4607
- "internalType": "uint256",
4608
- "name": "nativeTokenAmount",
4609
- "type": "uint256"
4610
- },
4611
- {
4612
- "internalType": "address",
4613
- "name": "erc20TokenAddress",
4614
- "type": "address"
4615
- },
4616
- {
4617
- "internalType": "uint256",
4618
- "name": "erc20TokenAmount",
4619
- "type": "uint256"
4620
- }
4621
- ],
4622
- "internalType": "struct EngineBlox.PaymentDetails",
4623
- "name": "payment",
4624
- "type": "tuple"
4625
- }
4626
- ],
4627
- "internalType": "struct EngineBlox.TxRecord",
4628
- "name": "",
4629
- "type": "tuple"
4630
- }
4631
- ],
4632
- "stateMutability": "nonpayable",
4633
- "type": "function"
4634
- },
4635
- {
4636
- "inputs": [
4637
- {
4638
- "internalType": "uint256",
4639
- "name": "txId",
4640
- "type": "uint256"
4641
- }
4642
- ],
4643
- "name": "updateBroadcasterCancellation",
4644
- "outputs": [
4645
- {
4646
- "components": [
4647
- {
4648
- "internalType": "uint256",
4649
- "name": "txId",
4650
- "type": "uint256"
4651
- },
4652
- {
4653
- "internalType": "uint256",
4654
- "name": "releaseTime",
4655
- "type": "uint256"
4656
- },
4657
- {
4658
- "internalType": "enum EngineBlox.TxStatus",
4659
- "name": "status",
4660
- "type": "uint8"
4661
- },
4662
- {
4663
- "components": [
4664
- {
4665
- "internalType": "address",
4666
- "name": "requester",
4667
- "type": "address"
4668
- },
4669
- {
4670
- "internalType": "address",
4671
- "name": "target",
4672
- "type": "address"
4673
- },
4674
- {
4675
- "internalType": "uint256",
4676
- "name": "value",
4677
- "type": "uint256"
4678
- },
4679
- {
4680
- "internalType": "uint256",
4681
- "name": "gasLimit",
4682
- "type": "uint256"
4683
- },
4684
- {
4685
- "internalType": "bytes32",
4686
- "name": "operationType",
4687
- "type": "bytes32"
4688
- },
4689
- {
4690
- "internalType": "bytes4",
4691
- "name": "executionSelector",
4692
- "type": "bytes4"
4693
- },
4694
- {
4695
- "internalType": "bytes",
4696
- "name": "executionParams",
4697
- "type": "bytes"
4698
- }
4699
- ],
4700
- "internalType": "struct EngineBlox.TxParams",
4701
- "name": "params",
4702
- "type": "tuple"
4703
- },
4704
- {
4705
- "internalType": "bytes32",
4706
- "name": "message",
4707
- "type": "bytes32"
4708
- },
4709
- {
4710
- "internalType": "bytes",
4711
- "name": "result",
4712
- "type": "bytes"
4713
- },
4714
- {
4715
- "components": [
4716
- {
4717
- "internalType": "address",
4718
- "name": "recipient",
4719
- "type": "address"
4720
- },
4721
- {
4722
- "internalType": "uint256",
4723
- "name": "nativeTokenAmount",
4724
- "type": "uint256"
4725
- },
4726
- {
4727
- "internalType": "address",
4728
- "name": "erc20TokenAddress",
4729
- "type": "address"
4730
- },
4731
- {
4732
- "internalType": "uint256",
4733
- "name": "erc20TokenAmount",
4734
- "type": "uint256"
4735
- }
4736
- ],
4737
- "internalType": "struct EngineBlox.PaymentDetails",
4738
- "name": "payment",
4739
- "type": "tuple"
4740
- }
4741
- ],
4742
- "internalType": "struct EngineBlox.TxRecord",
4743
- "name": "",
4744
- "type": "tuple"
4745
- }
4746
- ],
4747
- "stateMutability": "nonpayable",
4748
- "type": "function"
4749
- },
4750
- {
4751
- "inputs": [
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": [
4752
3102
  {
4753
3103
  "components": [
4754
3104
  {
@@ -4920,108 +3270,12 @@
4920
3270
  "type": "tuple"
4921
3271
  }
4922
3272
  ],
4923
- "name": "updateBroadcasterCancellationWithMetaTx",
3273
+ "name": "updateBroadcasterApprovalWithMetaTx",
4924
3274
  "outputs": [
4925
3275
  {
4926
- "components": [
4927
- {
4928
- "internalType": "uint256",
4929
- "name": "txId",
4930
- "type": "uint256"
4931
- },
4932
- {
4933
- "internalType": "uint256",
4934
- "name": "releaseTime",
4935
- "type": "uint256"
4936
- },
4937
- {
4938
- "internalType": "enum EngineBlox.TxStatus",
4939
- "name": "status",
4940
- "type": "uint8"
4941
- },
4942
- {
4943
- "components": [
4944
- {
4945
- "internalType": "address",
4946
- "name": "requester",
4947
- "type": "address"
4948
- },
4949
- {
4950
- "internalType": "address",
4951
- "name": "target",
4952
- "type": "address"
4953
- },
4954
- {
4955
- "internalType": "uint256",
4956
- "name": "value",
4957
- "type": "uint256"
4958
- },
4959
- {
4960
- "internalType": "uint256",
4961
- "name": "gasLimit",
4962
- "type": "uint256"
4963
- },
4964
- {
4965
- "internalType": "bytes32",
4966
- "name": "operationType",
4967
- "type": "bytes32"
4968
- },
4969
- {
4970
- "internalType": "bytes4",
4971
- "name": "executionSelector",
4972
- "type": "bytes4"
4973
- },
4974
- {
4975
- "internalType": "bytes",
4976
- "name": "executionParams",
4977
- "type": "bytes"
4978
- }
4979
- ],
4980
- "internalType": "struct EngineBlox.TxParams",
4981
- "name": "params",
4982
- "type": "tuple"
4983
- },
4984
- {
4985
- "internalType": "bytes32",
4986
- "name": "message",
4987
- "type": "bytes32"
4988
- },
4989
- {
4990
- "internalType": "bytes",
4991
- "name": "result",
4992
- "type": "bytes"
4993
- },
4994
- {
4995
- "components": [
4996
- {
4997
- "internalType": "address",
4998
- "name": "recipient",
4999
- "type": "address"
5000
- },
5001
- {
5002
- "internalType": "uint256",
5003
- "name": "nativeTokenAmount",
5004
- "type": "uint256"
5005
- },
5006
- {
5007
- "internalType": "address",
5008
- "name": "erc20TokenAddress",
5009
- "type": "address"
5010
- },
5011
- {
5012
- "internalType": "uint256",
5013
- "name": "erc20TokenAmount",
5014
- "type": "uint256"
5015
- }
5016
- ],
5017
- "internalType": "struct EngineBlox.PaymentDetails",
5018
- "name": "payment",
5019
- "type": "tuple"
5020
- }
5021
- ],
5022
- "internalType": "struct EngineBlox.TxRecord",
3276
+ "internalType": "uint256",
5023
3277
  "name": "",
5024
- "type": "tuple"
3278
+ "type": "uint256"
5025
3279
  }
5026
3280
  ],
5027
3281
  "stateMutability": "nonpayable",
@@ -5035,179 +3289,166 @@
5035
3289
  "type": "uint256"
5036
3290
  }
5037
3291
  ],
5038
- "name": "updateBroadcasterDelayedApproval",
3292
+ "name": "updateBroadcasterCancellation",
5039
3293
  "outputs": [
3294
+ {
3295
+ "internalType": "uint256",
3296
+ "name": "",
3297
+ "type": "uint256"
3298
+ }
3299
+ ],
3300
+ "stateMutability": "nonpayable",
3301
+ "type": "function"
3302
+ },
3303
+ {
3304
+ "inputs": [
5040
3305
  {
5041
3306
  "components": [
5042
- {
5043
- "internalType": "uint256",
5044
- "name": "txId",
5045
- "type": "uint256"
5046
- },
5047
- {
5048
- "internalType": "uint256",
5049
- "name": "releaseTime",
5050
- "type": "uint256"
5051
- },
5052
- {
5053
- "internalType": "enum EngineBlox.TxStatus",
5054
- "name": "status",
5055
- "type": "uint8"
5056
- },
5057
3307
  {
5058
3308
  "components": [
5059
- {
5060
- "internalType": "address",
5061
- "name": "requester",
5062
- "type": "address"
5063
- },
5064
- {
5065
- "internalType": "address",
5066
- "name": "target",
5067
- "type": "address"
5068
- },
5069
3309
  {
5070
3310
  "internalType": "uint256",
5071
- "name": "value",
3311
+ "name": "txId",
5072
3312
  "type": "uint256"
5073
3313
  },
5074
3314
  {
5075
3315
  "internalType": "uint256",
5076
- "name": "gasLimit",
3316
+ "name": "releaseTime",
5077
3317
  "type": "uint256"
5078
3318
  },
5079
3319
  {
5080
- "internalType": "bytes32",
5081
- "name": "operationType",
5082
- "type": "bytes32"
3320
+ "internalType": "enum EngineBlox.TxStatus",
3321
+ "name": "status",
3322
+ "type": "uint8"
5083
3323
  },
5084
3324
  {
5085
- "internalType": "bytes4",
5086
- "name": "executionSelector",
5087
- "type": "bytes4"
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"
5088
3370
  },
5089
3371
  {
5090
3372
  "internalType": "bytes",
5091
- "name": "executionParams",
3373
+ "name": "result",
5092
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"
5093
3402
  }
5094
3403
  ],
5095
- "internalType": "struct EngineBlox.TxParams",
5096
- "name": "params",
3404
+ "internalType": "struct EngineBlox.TxRecord",
3405
+ "name": "txRecord",
5097
3406
  "type": "tuple"
5098
3407
  },
5099
- {
5100
- "internalType": "bytes32",
5101
- "name": "message",
5102
- "type": "bytes32"
5103
- },
5104
- {
5105
- "internalType": "bytes",
5106
- "name": "result",
5107
- "type": "bytes"
5108
- },
5109
3408
  {
5110
3409
  "components": [
5111
3410
  {
5112
- "internalType": "address",
5113
- "name": "recipient",
5114
- "type": "address"
3411
+ "internalType": "uint256",
3412
+ "name": "chainId",
3413
+ "type": "uint256"
5115
3414
  },
5116
3415
  {
5117
3416
  "internalType": "uint256",
5118
- "name": "nativeTokenAmount",
3417
+ "name": "nonce",
5119
3418
  "type": "uint256"
5120
3419
  },
5121
3420
  {
5122
3421
  "internalType": "address",
5123
- "name": "erc20TokenAddress",
3422
+ "name": "handlerContract",
5124
3423
  "type": "address"
5125
3424
  },
5126
3425
  {
5127
- "internalType": "uint256",
5128
- "name": "erc20TokenAmount",
5129
- "type": "uint256"
5130
- }
5131
- ],
5132
- "internalType": "struct EngineBlox.PaymentDetails",
5133
- "name": "payment",
5134
- "type": "tuple"
5135
- }
5136
- ],
5137
- "internalType": "struct EngineBlox.TxRecord",
5138
- "name": "",
5139
- "type": "tuple"
5140
- }
5141
- ],
5142
- "stateMutability": "nonpayable",
5143
- "type": "function"
5144
- },
5145
- {
5146
- "inputs": [
5147
- {
5148
- "internalType": "address",
5149
- "name": "newBroadcaster",
5150
- "type": "address"
5151
- }
5152
- ],
5153
- "name": "updateBroadcasterRequest",
5154
- "outputs": [
5155
- {
5156
- "components": [
5157
- {
5158
- "internalType": "uint256",
5159
- "name": "txId",
5160
- "type": "uint256"
5161
- },
5162
- {
5163
- "internalType": "uint256",
5164
- "name": "releaseTime",
5165
- "type": "uint256"
5166
- },
5167
- {
5168
- "internalType": "enum EngineBlox.TxStatus",
5169
- "name": "status",
5170
- "type": "uint8"
5171
- },
5172
- {
5173
- "components": [
5174
- {
5175
- "internalType": "address",
5176
- "name": "requester",
5177
- "type": "address"
3426
+ "internalType": "bytes4",
3427
+ "name": "handlerSelector",
3428
+ "type": "bytes4"
5178
3429
  },
5179
3430
  {
5180
- "internalType": "address",
5181
- "name": "target",
5182
- "type": "address"
3431
+ "internalType": "enum EngineBlox.TxAction",
3432
+ "name": "action",
3433
+ "type": "uint8"
5183
3434
  },
5184
3435
  {
5185
3436
  "internalType": "uint256",
5186
- "name": "value",
3437
+ "name": "deadline",
5187
3438
  "type": "uint256"
5188
3439
  },
5189
3440
  {
5190
3441
  "internalType": "uint256",
5191
- "name": "gasLimit",
3442
+ "name": "maxGasPrice",
5192
3443
  "type": "uint256"
5193
3444
  },
5194
3445
  {
5195
- "internalType": "bytes32",
5196
- "name": "operationType",
5197
- "type": "bytes32"
5198
- },
5199
- {
5200
- "internalType": "bytes4",
5201
- "name": "executionSelector",
5202
- "type": "bytes4"
5203
- },
5204
- {
5205
- "internalType": "bytes",
5206
- "name": "executionParams",
5207
- "type": "bytes"
3446
+ "internalType": "address",
3447
+ "name": "signer",
3448
+ "type": "address"
5208
3449
  }
5209
3450
  ],
5210
- "internalType": "struct EngineBlox.TxParams",
3451
+ "internalType": "struct EngineBlox.MetaTxParams",
5211
3452
  "name": "params",
5212
3453
  "type": "tuple"
5213
3454
  },
@@ -5218,42 +3459,47 @@
5218
3459
  },
5219
3460
  {
5220
3461
  "internalType": "bytes",
5221
- "name": "result",
3462
+ "name": "signature",
5222
3463
  "type": "bytes"
5223
3464
  },
5224
3465
  {
5225
- "components": [
5226
- {
5227
- "internalType": "address",
5228
- "name": "recipient",
5229
- "type": "address"
5230
- },
5231
- {
5232
- "internalType": "uint256",
5233
- "name": "nativeTokenAmount",
5234
- "type": "uint256"
5235
- },
5236
- {
5237
- "internalType": "address",
5238
- "name": "erc20TokenAddress",
5239
- "type": "address"
5240
- },
5241
- {
5242
- "internalType": "uint256",
5243
- "name": "erc20TokenAmount",
5244
- "type": "uint256"
5245
- }
5246
- ],
5247
- "internalType": "struct EngineBlox.PaymentDetails",
5248
- "name": "payment",
5249
- "type": "tuple"
3466
+ "internalType": "bytes",
3467
+ "name": "data",
3468
+ "type": "bytes"
5250
3469
  }
5251
3470
  ],
5252
- "internalType": "struct EngineBlox.TxRecord",
5253
- "name": "",
3471
+ "internalType": "struct EngineBlox.MetaTransaction",
3472
+ "name": "metaTx",
5254
3473
  "type": "tuple"
5255
3474
  }
5256
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
+ ],
5257
3503
  "stateMutability": "nonpayable",
5258
3504
  "type": "function"
5259
3505
  },
@@ -5261,19 +3507,24 @@
5261
3507
  "inputs": [
5262
3508
  {
5263
3509
  "internalType": "address",
5264
- "name": "newRecoveryAddress",
3510
+ "name": "newBroadcaster",
5265
3511
  "type": "address"
3512
+ },
3513
+ {
3514
+ "internalType": "uint256",
3515
+ "name": "location",
3516
+ "type": "uint256"
5266
3517
  }
5267
3518
  ],
5268
- "name": "updateRecoveryExecutionParams",
3519
+ "name": "updateBroadcasterRequest",
5269
3520
  "outputs": [
5270
3521
  {
5271
- "internalType": "bytes",
5272
- "name": "",
5273
- "type": "bytes"
3522
+ "internalType": "uint256",
3523
+ "name": "txId",
3524
+ "type": "uint256"
5274
3525
  }
5275
3526
  ],
5276
- "stateMutability": "view",
3527
+ "stateMutability": "nonpayable",
5277
3528
  "type": "function"
5278
3529
  },
5279
3530
  {
@@ -5451,128 +3702,13 @@
5451
3702
  ],
5452
3703
  "name": "updateRecoveryRequestAndApprove",
5453
3704
  "outputs": [
5454
- {
5455
- "components": [
5456
- {
5457
- "internalType": "uint256",
5458
- "name": "txId",
5459
- "type": "uint256"
5460
- },
5461
- {
5462
- "internalType": "uint256",
5463
- "name": "releaseTime",
5464
- "type": "uint256"
5465
- },
5466
- {
5467
- "internalType": "enum EngineBlox.TxStatus",
5468
- "name": "status",
5469
- "type": "uint8"
5470
- },
5471
- {
5472
- "components": [
5473
- {
5474
- "internalType": "address",
5475
- "name": "requester",
5476
- "type": "address"
5477
- },
5478
- {
5479
- "internalType": "address",
5480
- "name": "target",
5481
- "type": "address"
5482
- },
5483
- {
5484
- "internalType": "uint256",
5485
- "name": "value",
5486
- "type": "uint256"
5487
- },
5488
- {
5489
- "internalType": "uint256",
5490
- "name": "gasLimit",
5491
- "type": "uint256"
5492
- },
5493
- {
5494
- "internalType": "bytes32",
5495
- "name": "operationType",
5496
- "type": "bytes32"
5497
- },
5498
- {
5499
- "internalType": "bytes4",
5500
- "name": "executionSelector",
5501
- "type": "bytes4"
5502
- },
5503
- {
5504
- "internalType": "bytes",
5505
- "name": "executionParams",
5506
- "type": "bytes"
5507
- }
5508
- ],
5509
- "internalType": "struct EngineBlox.TxParams",
5510
- "name": "params",
5511
- "type": "tuple"
5512
- },
5513
- {
5514
- "internalType": "bytes32",
5515
- "name": "message",
5516
- "type": "bytes32"
5517
- },
5518
- {
5519
- "internalType": "bytes",
5520
- "name": "result",
5521
- "type": "bytes"
5522
- },
5523
- {
5524
- "components": [
5525
- {
5526
- "internalType": "address",
5527
- "name": "recipient",
5528
- "type": "address"
5529
- },
5530
- {
5531
- "internalType": "uint256",
5532
- "name": "nativeTokenAmount",
5533
- "type": "uint256"
5534
- },
5535
- {
5536
- "internalType": "address",
5537
- "name": "erc20TokenAddress",
5538
- "type": "address"
5539
- },
5540
- {
5541
- "internalType": "uint256",
5542
- "name": "erc20TokenAmount",
5543
- "type": "uint256"
5544
- }
5545
- ],
5546
- "internalType": "struct EngineBlox.PaymentDetails",
5547
- "name": "payment",
5548
- "type": "tuple"
5549
- }
5550
- ],
5551
- "internalType": "struct EngineBlox.TxRecord",
5552
- "name": "",
5553
- "type": "tuple"
5554
- }
5555
- ],
5556
- "stateMutability": "nonpayable",
5557
- "type": "function"
5558
- },
5559
- {
5560
- "inputs": [
5561
3705
  {
5562
3706
  "internalType": "uint256",
5563
- "name": "newTimeLockPeriodSec",
5564
- "type": "uint256"
5565
- }
5566
- ],
5567
- "name": "updateTimeLockExecutionParams",
5568
- "outputs": [
5569
- {
5570
- "internalType": "bytes",
5571
3707
  "name": "",
5572
- "type": "bytes"
3708
+ "type": "uint256"
5573
3709
  }
5574
3710
  ],
5575
- "stateMutability": "view",
3711
+ "stateMutability": "nonpayable",
5576
3712
  "type": "function"
5577
3713
  },
5578
3714
  {
@@ -5751,105 +3887,9 @@
5751
3887
  "name": "updateTimeLockRequestAndApprove",
5752
3888
  "outputs": [
5753
3889
  {
5754
- "components": [
5755
- {
5756
- "internalType": "uint256",
5757
- "name": "txId",
5758
- "type": "uint256"
5759
- },
5760
- {
5761
- "internalType": "uint256",
5762
- "name": "releaseTime",
5763
- "type": "uint256"
5764
- },
5765
- {
5766
- "internalType": "enum EngineBlox.TxStatus",
5767
- "name": "status",
5768
- "type": "uint8"
5769
- },
5770
- {
5771
- "components": [
5772
- {
5773
- "internalType": "address",
5774
- "name": "requester",
5775
- "type": "address"
5776
- },
5777
- {
5778
- "internalType": "address",
5779
- "name": "target",
5780
- "type": "address"
5781
- },
5782
- {
5783
- "internalType": "uint256",
5784
- "name": "value",
5785
- "type": "uint256"
5786
- },
5787
- {
5788
- "internalType": "uint256",
5789
- "name": "gasLimit",
5790
- "type": "uint256"
5791
- },
5792
- {
5793
- "internalType": "bytes32",
5794
- "name": "operationType",
5795
- "type": "bytes32"
5796
- },
5797
- {
5798
- "internalType": "bytes4",
5799
- "name": "executionSelector",
5800
- "type": "bytes4"
5801
- },
5802
- {
5803
- "internalType": "bytes",
5804
- "name": "executionParams",
5805
- "type": "bytes"
5806
- }
5807
- ],
5808
- "internalType": "struct EngineBlox.TxParams",
5809
- "name": "params",
5810
- "type": "tuple"
5811
- },
5812
- {
5813
- "internalType": "bytes32",
5814
- "name": "message",
5815
- "type": "bytes32"
5816
- },
5817
- {
5818
- "internalType": "bytes",
5819
- "name": "result",
5820
- "type": "bytes"
5821
- },
5822
- {
5823
- "components": [
5824
- {
5825
- "internalType": "address",
5826
- "name": "recipient",
5827
- "type": "address"
5828
- },
5829
- {
5830
- "internalType": "uint256",
5831
- "name": "nativeTokenAmount",
5832
- "type": "uint256"
5833
- },
5834
- {
5835
- "internalType": "address",
5836
- "name": "erc20TokenAddress",
5837
- "type": "address"
5838
- },
5839
- {
5840
- "internalType": "uint256",
5841
- "name": "erc20TokenAmount",
5842
- "type": "uint256"
5843
- }
5844
- ],
5845
- "internalType": "struct EngineBlox.PaymentDetails",
5846
- "name": "payment",
5847
- "type": "tuple"
5848
- }
5849
- ],
5850
- "internalType": "struct EngineBlox.TxRecord",
3890
+ "internalType": "uint256",
5851
3891
  "name": "",
5852
- "type": "tuple"
3892
+ "type": "uint256"
5853
3893
  }
5854
3894
  ],
5855
3895
  "stateMutability": "nonpayable",
@@ -5891,31 +3931,5 @@
5891
3931
  "outputs": [],
5892
3932
  "stateMutability": "nonpayable",
5893
3933
  "type": "function"
5894
- },
5895
- {
5896
- "inputs": [
5897
- {
5898
- "internalType": "bytes4",
5899
- "name": "interfaceId",
5900
- "type": "bytes4"
5901
- }
5902
- ],
5903
- "name": "supportsInterface",
5904
- "outputs": [
5905
- {
5906
- "internalType": "bool",
5907
- "name": "",
5908
- "type": "bool"
5909
- }
5910
- ],
5911
- "stateMutability": "view",
5912
- "type": "function"
5913
- },
5914
- {
5915
- "inputs": [],
5916
- "name": "deposit",
5917
- "outputs": [],
5918
- "stateMutability": "payable",
5919
- "type": "function"
5920
3934
  }
5921
3935
  ]