@bloxchain/sdk 1.0.0-alpha.3 → 1.0.0-alpha.5
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.
- package/abi/AccountBlox.abi.json +420 -2293
- package/abi/BareBlox.abi.json +19 -0
- package/abi/BaseStateMachine.abi.json +19 -0
- package/abi/EngineBlox.abi.json +0 -31
- package/abi/GuardController.abi.json +142 -724
- package/abi/RoleBlox.abi.json +393 -1639
- package/abi/RuntimeRBAC.abi.json +21 -98
- package/abi/SecureBlox.abi.json +276 -1426
- package/abi/SecureOwnable.abi.json +276 -1426
- package/abi/SimpleRWA20.abi.json +313 -1644
- package/abi/SimpleVault.abi.json +498 -2117
- package/dist/abi/BaseStateMachine.abi.json +19 -0
- package/dist/abi/GuardController.abi.json +142 -724
- package/dist/abi/RuntimeRBAC.abi.json +21 -98
- package/dist/abi/SecureOwnable.abi.json +276 -1426
- package/dist/contracts/SecureOwnable.d.ts +1 -1
- package/dist/contracts/SecureOwnable.d.ts.map +1 -1
- package/dist/contracts/SecureOwnable.js +2 -2
- package/dist/contracts/SecureOwnable.js.map +1 -1
- package/dist/contracts/core/BaseStateMachine.d.ts +98 -0
- package/dist/contracts/core/BaseStateMachine.d.ts.map +1 -0
- package/dist/contracts/core/BaseStateMachine.js +271 -0
- package/dist/contracts/core/BaseStateMachine.js.map +1 -0
- package/dist/contracts/core/GuardController.d.ts +120 -0
- package/dist/contracts/core/GuardController.d.ts.map +1 -0
- package/dist/contracts/core/GuardController.js +150 -0
- package/dist/contracts/core/GuardController.js.map +1 -0
- package/dist/contracts/core/RuntimeRBAC.d.ts +40 -0
- package/dist/contracts/core/RuntimeRBAC.d.ts.map +1 -0
- package/dist/contracts/core/RuntimeRBAC.js +50 -0
- package/dist/contracts/core/RuntimeRBAC.js.map +1 -0
- package/dist/contracts/core/SecureOwnable.d.ts +41 -0
- package/dist/contracts/core/SecureOwnable.d.ts.map +1 -0
- package/dist/contracts/core/SecureOwnable.js +81 -0
- package/dist/contracts/core/SecureOwnable.js.map +1 -0
- package/dist/index.d.ts +4 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/interfaces/core.security.index.d.ts +1 -1
- package/dist/interfaces/core.security.index.d.ts.map +1 -1
- package/dist/lib/EngineBlox.d.ts +0 -9
- package/dist/lib/EngineBlox.d.ts.map +1 -1
- package/dist/lib/EngineBlox.js +0 -9
- package/dist/lib/EngineBlox.js.map +1 -1
- package/dist/types/base.state.machine.index.d.ts +0 -1
- package/dist/types/base.state.machine.index.d.ts.map +1 -1
- package/dist/types/base.state.machine.index.js +1 -2
- package/dist/types/base.state.machine.index.js.map +1 -1
- package/dist/types/core.security.index.d.ts.map +1 -1
- package/dist/types/core.security.index.js +2 -2
- package/dist/types/core.security.index.js.map +1 -1
- package/dist/utils/contract-errors.d.ts +0 -1
- package/dist/utils/contract-errors.d.ts.map +1 -1
- package/dist/utils/contract-errors.js +4 -4
- package/dist/utils/contract-errors.js.map +1 -1
- package/dist/utils/interface-ids.js +1 -1
- package/dist/utils/interface-ids.js.map +1 -1
- package/package.json +71 -71
package/abi/AccountBlox.abi.json
CHANGED
|
@@ -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",
|
|
@@ -112,22 +101,6 @@
|
|
|
112
101
|
"name": "NotInitializing",
|
|
113
102
|
"type": "error"
|
|
114
103
|
},
|
|
115
|
-
{
|
|
116
|
-
"inputs": [
|
|
117
|
-
{
|
|
118
|
-
"internalType": "address",
|
|
119
|
-
"name": "newAddress",
|
|
120
|
-
"type": "address"
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
"internalType": "address",
|
|
124
|
-
"name": "currentAddress",
|
|
125
|
-
"type": "address"
|
|
126
|
-
}
|
|
127
|
-
],
|
|
128
|
-
"name": "NotNewAddress",
|
|
129
|
-
"type": "error"
|
|
130
|
-
},
|
|
131
104
|
{
|
|
132
105
|
"inputs": [],
|
|
133
106
|
"name": "NotSupported",
|
|
@@ -269,25 +242,6 @@
|
|
|
269
242
|
"name": "ComponentEvent",
|
|
270
243
|
"type": "event"
|
|
271
244
|
},
|
|
272
|
-
{
|
|
273
|
-
"anonymous": false,
|
|
274
|
-
"inputs": [
|
|
275
|
-
{
|
|
276
|
-
"indexed": true,
|
|
277
|
-
"internalType": "address",
|
|
278
|
-
"name": "from",
|
|
279
|
-
"type": "address"
|
|
280
|
-
},
|
|
281
|
-
{
|
|
282
|
-
"indexed": false,
|
|
283
|
-
"internalType": "uint256",
|
|
284
|
-
"name": "amount",
|
|
285
|
-
"type": "uint256"
|
|
286
|
-
}
|
|
287
|
-
],
|
|
288
|
-
"name": "EthReceived",
|
|
289
|
-
"type": "event"
|
|
290
|
-
},
|
|
291
245
|
{
|
|
292
246
|
"anonymous": false,
|
|
293
247
|
"inputs": [
|
|
@@ -316,105 +270,9 @@
|
|
|
316
270
|
"name": "approveTimeLockExecution",
|
|
317
271
|
"outputs": [
|
|
318
272
|
{
|
|
319
|
-
"
|
|
320
|
-
{
|
|
321
|
-
"internalType": "uint256",
|
|
322
|
-
"name": "txId",
|
|
323
|
-
"type": "uint256"
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
"internalType": "uint256",
|
|
327
|
-
"name": "releaseTime",
|
|
328
|
-
"type": "uint256"
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
332
|
-
"name": "status",
|
|
333
|
-
"type": "uint8"
|
|
334
|
-
},
|
|
335
|
-
{
|
|
336
|
-
"components": [
|
|
337
|
-
{
|
|
338
|
-
"internalType": "address",
|
|
339
|
-
"name": "requester",
|
|
340
|
-
"type": "address"
|
|
341
|
-
},
|
|
342
|
-
{
|
|
343
|
-
"internalType": "address",
|
|
344
|
-
"name": "target",
|
|
345
|
-
"type": "address"
|
|
346
|
-
},
|
|
347
|
-
{
|
|
348
|
-
"internalType": "uint256",
|
|
349
|
-
"name": "value",
|
|
350
|
-
"type": "uint256"
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
"internalType": "uint256",
|
|
354
|
-
"name": "gasLimit",
|
|
355
|
-
"type": "uint256"
|
|
356
|
-
},
|
|
357
|
-
{
|
|
358
|
-
"internalType": "bytes32",
|
|
359
|
-
"name": "operationType",
|
|
360
|
-
"type": "bytes32"
|
|
361
|
-
},
|
|
362
|
-
{
|
|
363
|
-
"internalType": "bytes4",
|
|
364
|
-
"name": "executionSelector",
|
|
365
|
-
"type": "bytes4"
|
|
366
|
-
},
|
|
367
|
-
{
|
|
368
|
-
"internalType": "bytes",
|
|
369
|
-
"name": "executionParams",
|
|
370
|
-
"type": "bytes"
|
|
371
|
-
}
|
|
372
|
-
],
|
|
373
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
374
|
-
"name": "params",
|
|
375
|
-
"type": "tuple"
|
|
376
|
-
},
|
|
377
|
-
{
|
|
378
|
-
"internalType": "bytes32",
|
|
379
|
-
"name": "message",
|
|
380
|
-
"type": "bytes32"
|
|
381
|
-
},
|
|
382
|
-
{
|
|
383
|
-
"internalType": "bytes",
|
|
384
|
-
"name": "result",
|
|
385
|
-
"type": "bytes"
|
|
386
|
-
},
|
|
387
|
-
{
|
|
388
|
-
"components": [
|
|
389
|
-
{
|
|
390
|
-
"internalType": "address",
|
|
391
|
-
"name": "recipient",
|
|
392
|
-
"type": "address"
|
|
393
|
-
},
|
|
394
|
-
{
|
|
395
|
-
"internalType": "uint256",
|
|
396
|
-
"name": "nativeTokenAmount",
|
|
397
|
-
"type": "uint256"
|
|
398
|
-
},
|
|
399
|
-
{
|
|
400
|
-
"internalType": "address",
|
|
401
|
-
"name": "erc20TokenAddress",
|
|
402
|
-
"type": "address"
|
|
403
|
-
},
|
|
404
|
-
{
|
|
405
|
-
"internalType": "uint256",
|
|
406
|
-
"name": "erc20TokenAmount",
|
|
407
|
-
"type": "uint256"
|
|
408
|
-
}
|
|
409
|
-
],
|
|
410
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
411
|
-
"name": "payment",
|
|
412
|
-
"type": "tuple"
|
|
413
|
-
}
|
|
414
|
-
],
|
|
415
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
273
|
+
"internalType": "uint256",
|
|
416
274
|
"name": "",
|
|
417
|
-
"type": "
|
|
275
|
+
"type": "uint256"
|
|
418
276
|
}
|
|
419
277
|
],
|
|
420
278
|
"stateMutability": "nonpayable",
|
|
@@ -596,105 +454,9 @@
|
|
|
596
454
|
"name": "approveTimeLockExecutionWithMetaTx",
|
|
597
455
|
"outputs": [
|
|
598
456
|
{
|
|
599
|
-
"
|
|
600
|
-
{
|
|
601
|
-
"internalType": "uint256",
|
|
602
|
-
"name": "txId",
|
|
603
|
-
"type": "uint256"
|
|
604
|
-
},
|
|
605
|
-
{
|
|
606
|
-
"internalType": "uint256",
|
|
607
|
-
"name": "releaseTime",
|
|
608
|
-
"type": "uint256"
|
|
609
|
-
},
|
|
610
|
-
{
|
|
611
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
612
|
-
"name": "status",
|
|
613
|
-
"type": "uint8"
|
|
614
|
-
},
|
|
615
|
-
{
|
|
616
|
-
"components": [
|
|
617
|
-
{
|
|
618
|
-
"internalType": "address",
|
|
619
|
-
"name": "requester",
|
|
620
|
-
"type": "address"
|
|
621
|
-
},
|
|
622
|
-
{
|
|
623
|
-
"internalType": "address",
|
|
624
|
-
"name": "target",
|
|
625
|
-
"type": "address"
|
|
626
|
-
},
|
|
627
|
-
{
|
|
628
|
-
"internalType": "uint256",
|
|
629
|
-
"name": "value",
|
|
630
|
-
"type": "uint256"
|
|
631
|
-
},
|
|
632
|
-
{
|
|
633
|
-
"internalType": "uint256",
|
|
634
|
-
"name": "gasLimit",
|
|
635
|
-
"type": "uint256"
|
|
636
|
-
},
|
|
637
|
-
{
|
|
638
|
-
"internalType": "bytes32",
|
|
639
|
-
"name": "operationType",
|
|
640
|
-
"type": "bytes32"
|
|
641
|
-
},
|
|
642
|
-
{
|
|
643
|
-
"internalType": "bytes4",
|
|
644
|
-
"name": "executionSelector",
|
|
645
|
-
"type": "bytes4"
|
|
646
|
-
},
|
|
647
|
-
{
|
|
648
|
-
"internalType": "bytes",
|
|
649
|
-
"name": "executionParams",
|
|
650
|
-
"type": "bytes"
|
|
651
|
-
}
|
|
652
|
-
],
|
|
653
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
654
|
-
"name": "params",
|
|
655
|
-
"type": "tuple"
|
|
656
|
-
},
|
|
657
|
-
{
|
|
658
|
-
"internalType": "bytes32",
|
|
659
|
-
"name": "message",
|
|
660
|
-
"type": "bytes32"
|
|
661
|
-
},
|
|
662
|
-
{
|
|
663
|
-
"internalType": "bytes",
|
|
664
|
-
"name": "result",
|
|
665
|
-
"type": "bytes"
|
|
666
|
-
},
|
|
667
|
-
{
|
|
668
|
-
"components": [
|
|
669
|
-
{
|
|
670
|
-
"internalType": "address",
|
|
671
|
-
"name": "recipient",
|
|
672
|
-
"type": "address"
|
|
673
|
-
},
|
|
674
|
-
{
|
|
675
|
-
"internalType": "uint256",
|
|
676
|
-
"name": "nativeTokenAmount",
|
|
677
|
-
"type": "uint256"
|
|
678
|
-
},
|
|
679
|
-
{
|
|
680
|
-
"internalType": "address",
|
|
681
|
-
"name": "erc20TokenAddress",
|
|
682
|
-
"type": "address"
|
|
683
|
-
},
|
|
684
|
-
{
|
|
685
|
-
"internalType": "uint256",
|
|
686
|
-
"name": "erc20TokenAmount",
|
|
687
|
-
"type": "uint256"
|
|
688
|
-
}
|
|
689
|
-
],
|
|
690
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
691
|
-
"name": "payment",
|
|
692
|
-
"type": "tuple"
|
|
693
|
-
}
|
|
694
|
-
],
|
|
695
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
457
|
+
"internalType": "uint256",
|
|
696
458
|
"name": "",
|
|
697
|
-
"type": "
|
|
459
|
+
"type": "uint256"
|
|
698
460
|
}
|
|
699
461
|
],
|
|
700
462
|
"stateMutability": "nonpayable",
|
|
@@ -711,113 +473,17 @@
|
|
|
711
473
|
"name": "cancelTimeLockExecution",
|
|
712
474
|
"outputs": [
|
|
713
475
|
{
|
|
714
|
-
"
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
{
|
|
726
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
727
|
-
"name": "status",
|
|
728
|
-
"type": "uint8"
|
|
729
|
-
},
|
|
730
|
-
{
|
|
731
|
-
"components": [
|
|
732
|
-
{
|
|
733
|
-
"internalType": "address",
|
|
734
|
-
"name": "requester",
|
|
735
|
-
"type": "address"
|
|
736
|
-
},
|
|
737
|
-
{
|
|
738
|
-
"internalType": "address",
|
|
739
|
-
"name": "target",
|
|
740
|
-
"type": "address"
|
|
741
|
-
},
|
|
742
|
-
{
|
|
743
|
-
"internalType": "uint256",
|
|
744
|
-
"name": "value",
|
|
745
|
-
"type": "uint256"
|
|
746
|
-
},
|
|
747
|
-
{
|
|
748
|
-
"internalType": "uint256",
|
|
749
|
-
"name": "gasLimit",
|
|
750
|
-
"type": "uint256"
|
|
751
|
-
},
|
|
752
|
-
{
|
|
753
|
-
"internalType": "bytes32",
|
|
754
|
-
"name": "operationType",
|
|
755
|
-
"type": "bytes32"
|
|
756
|
-
},
|
|
757
|
-
{
|
|
758
|
-
"internalType": "bytes4",
|
|
759
|
-
"name": "executionSelector",
|
|
760
|
-
"type": "bytes4"
|
|
761
|
-
},
|
|
762
|
-
{
|
|
763
|
-
"internalType": "bytes",
|
|
764
|
-
"name": "executionParams",
|
|
765
|
-
"type": "bytes"
|
|
766
|
-
}
|
|
767
|
-
],
|
|
768
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
769
|
-
"name": "params",
|
|
770
|
-
"type": "tuple"
|
|
771
|
-
},
|
|
772
|
-
{
|
|
773
|
-
"internalType": "bytes32",
|
|
774
|
-
"name": "message",
|
|
775
|
-
"type": "bytes32"
|
|
776
|
-
},
|
|
777
|
-
{
|
|
778
|
-
"internalType": "bytes",
|
|
779
|
-
"name": "result",
|
|
780
|
-
"type": "bytes"
|
|
781
|
-
},
|
|
782
|
-
{
|
|
783
|
-
"components": [
|
|
784
|
-
{
|
|
785
|
-
"internalType": "address",
|
|
786
|
-
"name": "recipient",
|
|
787
|
-
"type": "address"
|
|
788
|
-
},
|
|
789
|
-
{
|
|
790
|
-
"internalType": "uint256",
|
|
791
|
-
"name": "nativeTokenAmount",
|
|
792
|
-
"type": "uint256"
|
|
793
|
-
},
|
|
794
|
-
{
|
|
795
|
-
"internalType": "address",
|
|
796
|
-
"name": "erc20TokenAddress",
|
|
797
|
-
"type": "address"
|
|
798
|
-
},
|
|
799
|
-
{
|
|
800
|
-
"internalType": "uint256",
|
|
801
|
-
"name": "erc20TokenAmount",
|
|
802
|
-
"type": "uint256"
|
|
803
|
-
}
|
|
804
|
-
],
|
|
805
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
806
|
-
"name": "payment",
|
|
807
|
-
"type": "tuple"
|
|
808
|
-
}
|
|
809
|
-
],
|
|
810
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
811
|
-
"name": "",
|
|
812
|
-
"type": "tuple"
|
|
813
|
-
}
|
|
814
|
-
],
|
|
815
|
-
"stateMutability": "nonpayable",
|
|
816
|
-
"type": "function"
|
|
817
|
-
},
|
|
818
|
-
{
|
|
819
|
-
"inputs": [
|
|
820
|
-
{
|
|
476
|
+
"internalType": "uint256",
|
|
477
|
+
"name": "",
|
|
478
|
+
"type": "uint256"
|
|
479
|
+
}
|
|
480
|
+
],
|
|
481
|
+
"stateMutability": "nonpayable",
|
|
482
|
+
"type": "function"
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"inputs": [
|
|
486
|
+
{
|
|
821
487
|
"components": [
|
|
822
488
|
{
|
|
823
489
|
"components": [
|
|
@@ -991,105 +657,9 @@
|
|
|
991
657
|
"name": "cancelTimeLockExecutionWithMetaTx",
|
|
992
658
|
"outputs": [
|
|
993
659
|
{
|
|
994
|
-
"
|
|
995
|
-
{
|
|
996
|
-
"internalType": "uint256",
|
|
997
|
-
"name": "txId",
|
|
998
|
-
"type": "uint256"
|
|
999
|
-
},
|
|
1000
|
-
{
|
|
1001
|
-
"internalType": "uint256",
|
|
1002
|
-
"name": "releaseTime",
|
|
1003
|
-
"type": "uint256"
|
|
1004
|
-
},
|
|
1005
|
-
{
|
|
1006
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
1007
|
-
"name": "status",
|
|
1008
|
-
"type": "uint8"
|
|
1009
|
-
},
|
|
1010
|
-
{
|
|
1011
|
-
"components": [
|
|
1012
|
-
{
|
|
1013
|
-
"internalType": "address",
|
|
1014
|
-
"name": "requester",
|
|
1015
|
-
"type": "address"
|
|
1016
|
-
},
|
|
1017
|
-
{
|
|
1018
|
-
"internalType": "address",
|
|
1019
|
-
"name": "target",
|
|
1020
|
-
"type": "address"
|
|
1021
|
-
},
|
|
1022
|
-
{
|
|
1023
|
-
"internalType": "uint256",
|
|
1024
|
-
"name": "value",
|
|
1025
|
-
"type": "uint256"
|
|
1026
|
-
},
|
|
1027
|
-
{
|
|
1028
|
-
"internalType": "uint256",
|
|
1029
|
-
"name": "gasLimit",
|
|
1030
|
-
"type": "uint256"
|
|
1031
|
-
},
|
|
1032
|
-
{
|
|
1033
|
-
"internalType": "bytes32",
|
|
1034
|
-
"name": "operationType",
|
|
1035
|
-
"type": "bytes32"
|
|
1036
|
-
},
|
|
1037
|
-
{
|
|
1038
|
-
"internalType": "bytes4",
|
|
1039
|
-
"name": "executionSelector",
|
|
1040
|
-
"type": "bytes4"
|
|
1041
|
-
},
|
|
1042
|
-
{
|
|
1043
|
-
"internalType": "bytes",
|
|
1044
|
-
"name": "executionParams",
|
|
1045
|
-
"type": "bytes"
|
|
1046
|
-
}
|
|
1047
|
-
],
|
|
1048
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
1049
|
-
"name": "params",
|
|
1050
|
-
"type": "tuple"
|
|
1051
|
-
},
|
|
1052
|
-
{
|
|
1053
|
-
"internalType": "bytes32",
|
|
1054
|
-
"name": "message",
|
|
1055
|
-
"type": "bytes32"
|
|
1056
|
-
},
|
|
1057
|
-
{
|
|
1058
|
-
"internalType": "bytes",
|
|
1059
|
-
"name": "result",
|
|
1060
|
-
"type": "bytes"
|
|
1061
|
-
},
|
|
1062
|
-
{
|
|
1063
|
-
"components": [
|
|
1064
|
-
{
|
|
1065
|
-
"internalType": "address",
|
|
1066
|
-
"name": "recipient",
|
|
1067
|
-
"type": "address"
|
|
1068
|
-
},
|
|
1069
|
-
{
|
|
1070
|
-
"internalType": "uint256",
|
|
1071
|
-
"name": "nativeTokenAmount",
|
|
1072
|
-
"type": "uint256"
|
|
1073
|
-
},
|
|
1074
|
-
{
|
|
1075
|
-
"internalType": "address",
|
|
1076
|
-
"name": "erc20TokenAddress",
|
|
1077
|
-
"type": "address"
|
|
1078
|
-
},
|
|
1079
|
-
{
|
|
1080
|
-
"internalType": "uint256",
|
|
1081
|
-
"name": "erc20TokenAmount",
|
|
1082
|
-
"type": "uint256"
|
|
1083
|
-
}
|
|
1084
|
-
],
|
|
1085
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
1086
|
-
"name": "payment",
|
|
1087
|
-
"type": "tuple"
|
|
1088
|
-
}
|
|
1089
|
-
],
|
|
1090
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
660
|
+
"internalType": "uint256",
|
|
1091
661
|
"name": "",
|
|
1092
|
-
"type": "
|
|
662
|
+
"type": "uint256"
|
|
1093
663
|
}
|
|
1094
664
|
],
|
|
1095
665
|
"stateMutability": "nonpayable",
|
|
@@ -1187,6 +757,11 @@
|
|
|
1187
757
|
"internalType": "address",
|
|
1188
758
|
"name": "newBroadcaster",
|
|
1189
759
|
"type": "address"
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"internalType": "uint256",
|
|
763
|
+
"name": "location",
|
|
764
|
+
"type": "uint256"
|
|
1190
765
|
}
|
|
1191
766
|
],
|
|
1192
767
|
"name": "executeBroadcasterUpdate",
|
|
@@ -1314,112 +889,87 @@
|
|
|
1314
889
|
"internalType": "bytes32",
|
|
1315
890
|
"name": "operationType",
|
|
1316
891
|
"type": "bytes32"
|
|
1317
|
-
}
|
|
1318
|
-
],
|
|
1319
|
-
"name": "executeWithTimeLock",
|
|
1320
|
-
"outputs": [
|
|
892
|
+
},
|
|
1321
893
|
{
|
|
1322
894
|
"components": [
|
|
1323
895
|
{
|
|
1324
|
-
"internalType": "
|
|
1325
|
-
"name": "
|
|
1326
|
-
"type": "
|
|
896
|
+
"internalType": "address",
|
|
897
|
+
"name": "recipient",
|
|
898
|
+
"type": "address"
|
|
1327
899
|
},
|
|
1328
900
|
{
|
|
1329
901
|
"internalType": "uint256",
|
|
1330
|
-
"name": "
|
|
902
|
+
"name": "nativeTokenAmount",
|
|
1331
903
|
"type": "uint256"
|
|
1332
904
|
},
|
|
1333
905
|
{
|
|
1334
|
-
"internalType": "
|
|
1335
|
-
"name": "
|
|
1336
|
-
"type": "
|
|
906
|
+
"internalType": "address",
|
|
907
|
+
"name": "erc20TokenAddress",
|
|
908
|
+
"type": "address"
|
|
1337
909
|
},
|
|
1338
910
|
{
|
|
1339
|
-
"
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
"name": "requester",
|
|
1343
|
-
"type": "address"
|
|
1344
|
-
},
|
|
1345
|
-
{
|
|
1346
|
-
"internalType": "address",
|
|
1347
|
-
"name": "target",
|
|
1348
|
-
"type": "address"
|
|
1349
|
-
},
|
|
1350
|
-
{
|
|
1351
|
-
"internalType": "uint256",
|
|
1352
|
-
"name": "value",
|
|
1353
|
-
"type": "uint256"
|
|
1354
|
-
},
|
|
1355
|
-
{
|
|
1356
|
-
"internalType": "uint256",
|
|
1357
|
-
"name": "gasLimit",
|
|
1358
|
-
"type": "uint256"
|
|
1359
|
-
},
|
|
1360
|
-
{
|
|
1361
|
-
"internalType": "bytes32",
|
|
1362
|
-
"name": "operationType",
|
|
1363
|
-
"type": "bytes32"
|
|
1364
|
-
},
|
|
1365
|
-
{
|
|
1366
|
-
"internalType": "bytes4",
|
|
1367
|
-
"name": "executionSelector",
|
|
1368
|
-
"type": "bytes4"
|
|
1369
|
-
},
|
|
1370
|
-
{
|
|
1371
|
-
"internalType": "bytes",
|
|
1372
|
-
"name": "executionParams",
|
|
1373
|
-
"type": "bytes"
|
|
1374
|
-
}
|
|
1375
|
-
],
|
|
1376
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
1377
|
-
"name": "params",
|
|
1378
|
-
"type": "tuple"
|
|
1379
|
-
},
|
|
1380
|
-
{
|
|
1381
|
-
"internalType": "bytes32",
|
|
1382
|
-
"name": "message",
|
|
1383
|
-
"type": "bytes32"
|
|
1384
|
-
},
|
|
1385
|
-
{
|
|
1386
|
-
"internalType": "bytes",
|
|
1387
|
-
"name": "result",
|
|
1388
|
-
"type": "bytes"
|
|
1389
|
-
},
|
|
1390
|
-
{
|
|
1391
|
-
"components": [
|
|
1392
|
-
{
|
|
1393
|
-
"internalType": "address",
|
|
1394
|
-
"name": "recipient",
|
|
1395
|
-
"type": "address"
|
|
1396
|
-
},
|
|
1397
|
-
{
|
|
1398
|
-
"internalType": "uint256",
|
|
1399
|
-
"name": "nativeTokenAmount",
|
|
1400
|
-
"type": "uint256"
|
|
1401
|
-
},
|
|
1402
|
-
{
|
|
1403
|
-
"internalType": "address",
|
|
1404
|
-
"name": "erc20TokenAddress",
|
|
1405
|
-
"type": "address"
|
|
1406
|
-
},
|
|
1407
|
-
{
|
|
1408
|
-
"internalType": "uint256",
|
|
1409
|
-
"name": "erc20TokenAmount",
|
|
1410
|
-
"type": "uint256"
|
|
1411
|
-
}
|
|
1412
|
-
],
|
|
1413
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
1414
|
-
"name": "payment",
|
|
1415
|
-
"type": "tuple"
|
|
911
|
+
"internalType": "uint256",
|
|
912
|
+
"name": "erc20TokenAmount",
|
|
913
|
+
"type": "uint256"
|
|
1416
914
|
}
|
|
1417
915
|
],
|
|
1418
|
-
"internalType": "struct EngineBlox.
|
|
1419
|
-
"name": "",
|
|
916
|
+
"internalType": "struct EngineBlox.PaymentDetails",
|
|
917
|
+
"name": "paymentDetails",
|
|
1420
918
|
"type": "tuple"
|
|
1421
919
|
}
|
|
1422
920
|
],
|
|
921
|
+
"name": "executeWithPayment",
|
|
922
|
+
"outputs": [
|
|
923
|
+
{
|
|
924
|
+
"internalType": "uint256",
|
|
925
|
+
"name": "txId",
|
|
926
|
+
"type": "uint256"
|
|
927
|
+
}
|
|
928
|
+
],
|
|
929
|
+
"stateMutability": "nonpayable",
|
|
930
|
+
"type": "function"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"inputs": [
|
|
934
|
+
{
|
|
935
|
+
"internalType": "address",
|
|
936
|
+
"name": "target",
|
|
937
|
+
"type": "address"
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
"internalType": "uint256",
|
|
941
|
+
"name": "value",
|
|
942
|
+
"type": "uint256"
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
"internalType": "bytes4",
|
|
946
|
+
"name": "functionSelector",
|
|
947
|
+
"type": "bytes4"
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
"internalType": "bytes",
|
|
951
|
+
"name": "params",
|
|
952
|
+
"type": "bytes"
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
"internalType": "uint256",
|
|
956
|
+
"name": "gasLimit",
|
|
957
|
+
"type": "uint256"
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
"internalType": "bytes32",
|
|
961
|
+
"name": "operationType",
|
|
962
|
+
"type": "bytes32"
|
|
963
|
+
}
|
|
964
|
+
],
|
|
965
|
+
"name": "executeWithTimeLock",
|
|
966
|
+
"outputs": [
|
|
967
|
+
{
|
|
968
|
+
"internalType": "uint256",
|
|
969
|
+
"name": "txId",
|
|
970
|
+
"type": "uint256"
|
|
971
|
+
}
|
|
972
|
+
],
|
|
1423
973
|
"stateMutability": "nonpayable",
|
|
1424
974
|
"type": "function"
|
|
1425
975
|
},
|
|
@@ -2058,6 +1608,25 @@
|
|
|
2058
1608
|
"stateMutability": "view",
|
|
2059
1609
|
"type": "function"
|
|
2060
1610
|
},
|
|
1611
|
+
{
|
|
1612
|
+
"inputs": [
|
|
1613
|
+
{
|
|
1614
|
+
"internalType": "bytes4",
|
|
1615
|
+
"name": "functionSelector",
|
|
1616
|
+
"type": "bytes4"
|
|
1617
|
+
}
|
|
1618
|
+
],
|
|
1619
|
+
"name": "getHooks",
|
|
1620
|
+
"outputs": [
|
|
1621
|
+
{
|
|
1622
|
+
"internalType": "address[]",
|
|
1623
|
+
"name": "hooks",
|
|
1624
|
+
"type": "address[]"
|
|
1625
|
+
}
|
|
1626
|
+
],
|
|
1627
|
+
"stateMutability": "view",
|
|
1628
|
+
"type": "function"
|
|
1629
|
+
},
|
|
2061
1630
|
{
|
|
2062
1631
|
"inputs": [],
|
|
2063
1632
|
"name": "getPendingTransactions",
|
|
@@ -2643,105 +2212,9 @@
|
|
|
2643
2212
|
"name": "guardConfigBatchRequestAndApprove",
|
|
2644
2213
|
"outputs": [
|
|
2645
2214
|
{
|
|
2646
|
-
"
|
|
2647
|
-
{
|
|
2648
|
-
"internalType": "uint256",
|
|
2649
|
-
"name": "txId",
|
|
2650
|
-
"type": "uint256"
|
|
2651
|
-
},
|
|
2652
|
-
{
|
|
2653
|
-
"internalType": "uint256",
|
|
2654
|
-
"name": "releaseTime",
|
|
2655
|
-
"type": "uint256"
|
|
2656
|
-
},
|
|
2657
|
-
{
|
|
2658
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
2659
|
-
"name": "status",
|
|
2660
|
-
"type": "uint8"
|
|
2661
|
-
},
|
|
2662
|
-
{
|
|
2663
|
-
"components": [
|
|
2664
|
-
{
|
|
2665
|
-
"internalType": "address",
|
|
2666
|
-
"name": "requester",
|
|
2667
|
-
"type": "address"
|
|
2668
|
-
},
|
|
2669
|
-
{
|
|
2670
|
-
"internalType": "address",
|
|
2671
|
-
"name": "target",
|
|
2672
|
-
"type": "address"
|
|
2673
|
-
},
|
|
2674
|
-
{
|
|
2675
|
-
"internalType": "uint256",
|
|
2676
|
-
"name": "value",
|
|
2677
|
-
"type": "uint256"
|
|
2678
|
-
},
|
|
2679
|
-
{
|
|
2680
|
-
"internalType": "uint256",
|
|
2681
|
-
"name": "gasLimit",
|
|
2682
|
-
"type": "uint256"
|
|
2683
|
-
},
|
|
2684
|
-
{
|
|
2685
|
-
"internalType": "bytes32",
|
|
2686
|
-
"name": "operationType",
|
|
2687
|
-
"type": "bytes32"
|
|
2688
|
-
},
|
|
2689
|
-
{
|
|
2690
|
-
"internalType": "bytes4",
|
|
2691
|
-
"name": "executionSelector",
|
|
2692
|
-
"type": "bytes4"
|
|
2693
|
-
},
|
|
2694
|
-
{
|
|
2695
|
-
"internalType": "bytes",
|
|
2696
|
-
"name": "executionParams",
|
|
2697
|
-
"type": "bytes"
|
|
2698
|
-
}
|
|
2699
|
-
],
|
|
2700
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
2701
|
-
"name": "params",
|
|
2702
|
-
"type": "tuple"
|
|
2703
|
-
},
|
|
2704
|
-
{
|
|
2705
|
-
"internalType": "bytes32",
|
|
2706
|
-
"name": "message",
|
|
2707
|
-
"type": "bytes32"
|
|
2708
|
-
},
|
|
2709
|
-
{
|
|
2710
|
-
"internalType": "bytes",
|
|
2711
|
-
"name": "result",
|
|
2712
|
-
"type": "bytes"
|
|
2713
|
-
},
|
|
2714
|
-
{
|
|
2715
|
-
"components": [
|
|
2716
|
-
{
|
|
2717
|
-
"internalType": "address",
|
|
2718
|
-
"name": "recipient",
|
|
2719
|
-
"type": "address"
|
|
2720
|
-
},
|
|
2721
|
-
{
|
|
2722
|
-
"internalType": "uint256",
|
|
2723
|
-
"name": "nativeTokenAmount",
|
|
2724
|
-
"type": "uint256"
|
|
2725
|
-
},
|
|
2726
|
-
{
|
|
2727
|
-
"internalType": "address",
|
|
2728
|
-
"name": "erc20TokenAddress",
|
|
2729
|
-
"type": "address"
|
|
2730
|
-
},
|
|
2731
|
-
{
|
|
2732
|
-
"internalType": "uint256",
|
|
2733
|
-
"name": "erc20TokenAmount",
|
|
2734
|
-
"type": "uint256"
|
|
2735
|
-
}
|
|
2736
|
-
],
|
|
2737
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
2738
|
-
"name": "payment",
|
|
2739
|
-
"type": "tuple"
|
|
2740
|
-
}
|
|
2741
|
-
],
|
|
2742
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2215
|
+
"internalType": "uint256",
|
|
2743
2216
|
"name": "",
|
|
2744
|
-
"type": "
|
|
2217
|
+
"type": "uint256"
|
|
2745
2218
|
}
|
|
2746
2219
|
],
|
|
2747
2220
|
"stateMutability": "nonpayable",
|
|
@@ -2996,125 +2469,29 @@
|
|
|
2996
2469
|
],
|
|
2997
2470
|
"name": "requestAndApproveExecution",
|
|
2998
2471
|
"outputs": [
|
|
2472
|
+
{
|
|
2473
|
+
"internalType": "uint256",
|
|
2474
|
+
"name": "",
|
|
2475
|
+
"type": "uint256"
|
|
2476
|
+
}
|
|
2477
|
+
],
|
|
2478
|
+
"stateMutability": "nonpayable",
|
|
2479
|
+
"type": "function"
|
|
2480
|
+
},
|
|
2481
|
+
{
|
|
2482
|
+
"inputs": [
|
|
2999
2483
|
{
|
|
3000
2484
|
"components": [
|
|
3001
|
-
{
|
|
3002
|
-
"internalType": "uint256",
|
|
3003
|
-
"name": "txId",
|
|
3004
|
-
"type": "uint256"
|
|
3005
|
-
},
|
|
3006
|
-
{
|
|
3007
|
-
"internalType": "uint256",
|
|
3008
|
-
"name": "releaseTime",
|
|
3009
|
-
"type": "uint256"
|
|
3010
|
-
},
|
|
3011
|
-
{
|
|
3012
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3013
|
-
"name": "status",
|
|
3014
|
-
"type": "uint8"
|
|
3015
|
-
},
|
|
3016
2485
|
{
|
|
3017
2486
|
"components": [
|
|
3018
|
-
{
|
|
3019
|
-
"internalType": "address",
|
|
3020
|
-
"name": "requester",
|
|
3021
|
-
"type": "address"
|
|
3022
|
-
},
|
|
3023
|
-
{
|
|
3024
|
-
"internalType": "address",
|
|
3025
|
-
"name": "target",
|
|
3026
|
-
"type": "address"
|
|
3027
|
-
},
|
|
3028
2487
|
{
|
|
3029
2488
|
"internalType": "uint256",
|
|
3030
|
-
"name": "
|
|
2489
|
+
"name": "txId",
|
|
3031
2490
|
"type": "uint256"
|
|
3032
2491
|
},
|
|
3033
2492
|
{
|
|
3034
2493
|
"internalType": "uint256",
|
|
3035
|
-
"name": "
|
|
3036
|
-
"type": "uint256"
|
|
3037
|
-
},
|
|
3038
|
-
{
|
|
3039
|
-
"internalType": "bytes32",
|
|
3040
|
-
"name": "operationType",
|
|
3041
|
-
"type": "bytes32"
|
|
3042
|
-
},
|
|
3043
|
-
{
|
|
3044
|
-
"internalType": "bytes4",
|
|
3045
|
-
"name": "executionSelector",
|
|
3046
|
-
"type": "bytes4"
|
|
3047
|
-
},
|
|
3048
|
-
{
|
|
3049
|
-
"internalType": "bytes",
|
|
3050
|
-
"name": "executionParams",
|
|
3051
|
-
"type": "bytes"
|
|
3052
|
-
}
|
|
3053
|
-
],
|
|
3054
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3055
|
-
"name": "params",
|
|
3056
|
-
"type": "tuple"
|
|
3057
|
-
},
|
|
3058
|
-
{
|
|
3059
|
-
"internalType": "bytes32",
|
|
3060
|
-
"name": "message",
|
|
3061
|
-
"type": "bytes32"
|
|
3062
|
-
},
|
|
3063
|
-
{
|
|
3064
|
-
"internalType": "bytes",
|
|
3065
|
-
"name": "result",
|
|
3066
|
-
"type": "bytes"
|
|
3067
|
-
},
|
|
3068
|
-
{
|
|
3069
|
-
"components": [
|
|
3070
|
-
{
|
|
3071
|
-
"internalType": "address",
|
|
3072
|
-
"name": "recipient",
|
|
3073
|
-
"type": "address"
|
|
3074
|
-
},
|
|
3075
|
-
{
|
|
3076
|
-
"internalType": "uint256",
|
|
3077
|
-
"name": "nativeTokenAmount",
|
|
3078
|
-
"type": "uint256"
|
|
3079
|
-
},
|
|
3080
|
-
{
|
|
3081
|
-
"internalType": "address",
|
|
3082
|
-
"name": "erc20TokenAddress",
|
|
3083
|
-
"type": "address"
|
|
3084
|
-
},
|
|
3085
|
-
{
|
|
3086
|
-
"internalType": "uint256",
|
|
3087
|
-
"name": "erc20TokenAmount",
|
|
3088
|
-
"type": "uint256"
|
|
3089
|
-
}
|
|
3090
|
-
],
|
|
3091
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3092
|
-
"name": "payment",
|
|
3093
|
-
"type": "tuple"
|
|
3094
|
-
}
|
|
3095
|
-
],
|
|
3096
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3097
|
-
"name": "",
|
|
3098
|
-
"type": "tuple"
|
|
3099
|
-
}
|
|
3100
|
-
],
|
|
3101
|
-
"stateMutability": "nonpayable",
|
|
3102
|
-
"type": "function"
|
|
3103
|
-
},
|
|
3104
|
-
{
|
|
3105
|
-
"inputs": [
|
|
3106
|
-
{
|
|
3107
|
-
"components": [
|
|
3108
|
-
{
|
|
3109
|
-
"components": [
|
|
3110
|
-
{
|
|
3111
|
-
"internalType": "uint256",
|
|
3112
|
-
"name": "txId",
|
|
3113
|
-
"type": "uint256"
|
|
3114
|
-
},
|
|
3115
|
-
{
|
|
3116
|
-
"internalType": "uint256",
|
|
3117
|
-
"name": "releaseTime",
|
|
2494
|
+
"name": "releaseTime",
|
|
3118
2495
|
"type": "uint256"
|
|
3119
2496
|
},
|
|
3120
2497
|
{
|
|
@@ -3277,105 +2654,9 @@
|
|
|
3277
2654
|
"name": "roleConfigBatchRequestAndApprove",
|
|
3278
2655
|
"outputs": [
|
|
3279
2656
|
{
|
|
3280
|
-
"
|
|
3281
|
-
{
|
|
3282
|
-
"internalType": "uint256",
|
|
3283
|
-
"name": "txId",
|
|
3284
|
-
"type": "uint256"
|
|
3285
|
-
},
|
|
3286
|
-
{
|
|
3287
|
-
"internalType": "uint256",
|
|
3288
|
-
"name": "releaseTime",
|
|
3289
|
-
"type": "uint256"
|
|
3290
|
-
},
|
|
3291
|
-
{
|
|
3292
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3293
|
-
"name": "status",
|
|
3294
|
-
"type": "uint8"
|
|
3295
|
-
},
|
|
3296
|
-
{
|
|
3297
|
-
"components": [
|
|
3298
|
-
{
|
|
3299
|
-
"internalType": "address",
|
|
3300
|
-
"name": "requester",
|
|
3301
|
-
"type": "address"
|
|
3302
|
-
},
|
|
3303
|
-
{
|
|
3304
|
-
"internalType": "address",
|
|
3305
|
-
"name": "target",
|
|
3306
|
-
"type": "address"
|
|
3307
|
-
},
|
|
3308
|
-
{
|
|
3309
|
-
"internalType": "uint256",
|
|
3310
|
-
"name": "value",
|
|
3311
|
-
"type": "uint256"
|
|
3312
|
-
},
|
|
3313
|
-
{
|
|
3314
|
-
"internalType": "uint256",
|
|
3315
|
-
"name": "gasLimit",
|
|
3316
|
-
"type": "uint256"
|
|
3317
|
-
},
|
|
3318
|
-
{
|
|
3319
|
-
"internalType": "bytes32",
|
|
3320
|
-
"name": "operationType",
|
|
3321
|
-
"type": "bytes32"
|
|
3322
|
-
},
|
|
3323
|
-
{
|
|
3324
|
-
"internalType": "bytes4",
|
|
3325
|
-
"name": "executionSelector",
|
|
3326
|
-
"type": "bytes4"
|
|
3327
|
-
},
|
|
3328
|
-
{
|
|
3329
|
-
"internalType": "bytes",
|
|
3330
|
-
"name": "executionParams",
|
|
3331
|
-
"type": "bytes"
|
|
3332
|
-
}
|
|
3333
|
-
],
|
|
3334
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3335
|
-
"name": "params",
|
|
3336
|
-
"type": "tuple"
|
|
3337
|
-
},
|
|
3338
|
-
{
|
|
3339
|
-
"internalType": "bytes32",
|
|
3340
|
-
"name": "message",
|
|
3341
|
-
"type": "bytes32"
|
|
3342
|
-
},
|
|
3343
|
-
{
|
|
3344
|
-
"internalType": "bytes",
|
|
3345
|
-
"name": "result",
|
|
3346
|
-
"type": "bytes"
|
|
3347
|
-
},
|
|
3348
|
-
{
|
|
3349
|
-
"components": [
|
|
3350
|
-
{
|
|
3351
|
-
"internalType": "address",
|
|
3352
|
-
"name": "recipient",
|
|
3353
|
-
"type": "address"
|
|
3354
|
-
},
|
|
3355
|
-
{
|
|
3356
|
-
"internalType": "uint256",
|
|
3357
|
-
"name": "nativeTokenAmount",
|
|
3358
|
-
"type": "uint256"
|
|
3359
|
-
},
|
|
3360
|
-
{
|
|
3361
|
-
"internalType": "address",
|
|
3362
|
-
"name": "erc20TokenAddress",
|
|
3363
|
-
"type": "address"
|
|
3364
|
-
},
|
|
3365
|
-
{
|
|
3366
|
-
"internalType": "uint256",
|
|
3367
|
-
"name": "erc20TokenAmount",
|
|
3368
|
-
"type": "uint256"
|
|
3369
|
-
}
|
|
3370
|
-
],
|
|
3371
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3372
|
-
"name": "payment",
|
|
3373
|
-
"type": "tuple"
|
|
3374
|
-
}
|
|
3375
|
-
],
|
|
3376
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
2657
|
+
"internalType": "uint256",
|
|
3377
2658
|
"name": "",
|
|
3378
|
-
"type": "
|
|
2659
|
+
"type": "uint256"
|
|
3379
2660
|
}
|
|
3380
2661
|
],
|
|
3381
2662
|
"stateMutability": "nonpayable",
|
|
@@ -3556,246 +2837,54 @@
|
|
|
3556
2837
|
],
|
|
3557
2838
|
"name": "transferOwnershipApprovalWithMetaTx",
|
|
3558
2839
|
"outputs": [
|
|
2840
|
+
{
|
|
2841
|
+
"internalType": "uint256",
|
|
2842
|
+
"name": "",
|
|
2843
|
+
"type": "uint256"
|
|
2844
|
+
}
|
|
2845
|
+
],
|
|
2846
|
+
"stateMutability": "nonpayable",
|
|
2847
|
+
"type": "function"
|
|
2848
|
+
},
|
|
2849
|
+
{
|
|
2850
|
+
"inputs": [
|
|
2851
|
+
{
|
|
2852
|
+
"internalType": "uint256",
|
|
2853
|
+
"name": "txId",
|
|
2854
|
+
"type": "uint256"
|
|
2855
|
+
}
|
|
2856
|
+
],
|
|
2857
|
+
"name": "transferOwnershipCancellation",
|
|
2858
|
+
"outputs": [
|
|
2859
|
+
{
|
|
2860
|
+
"internalType": "uint256",
|
|
2861
|
+
"name": "",
|
|
2862
|
+
"type": "uint256"
|
|
2863
|
+
}
|
|
2864
|
+
],
|
|
2865
|
+
"stateMutability": "nonpayable",
|
|
2866
|
+
"type": "function"
|
|
2867
|
+
},
|
|
2868
|
+
{
|
|
2869
|
+
"inputs": [
|
|
3559
2870
|
{
|
|
3560
2871
|
"components": [
|
|
3561
|
-
{
|
|
3562
|
-
"internalType": "uint256",
|
|
3563
|
-
"name": "txId",
|
|
3564
|
-
"type": "uint256"
|
|
3565
|
-
},
|
|
3566
|
-
{
|
|
3567
|
-
"internalType": "uint256",
|
|
3568
|
-
"name": "releaseTime",
|
|
3569
|
-
"type": "uint256"
|
|
3570
|
-
},
|
|
3571
|
-
{
|
|
3572
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3573
|
-
"name": "status",
|
|
3574
|
-
"type": "uint8"
|
|
3575
|
-
},
|
|
3576
2872
|
{
|
|
3577
2873
|
"components": [
|
|
3578
|
-
{
|
|
3579
|
-
"internalType": "address",
|
|
3580
|
-
"name": "requester",
|
|
3581
|
-
"type": "address"
|
|
3582
|
-
},
|
|
3583
|
-
{
|
|
3584
|
-
"internalType": "address",
|
|
3585
|
-
"name": "target",
|
|
3586
|
-
"type": "address"
|
|
3587
|
-
},
|
|
3588
2874
|
{
|
|
3589
2875
|
"internalType": "uint256",
|
|
3590
|
-
"name": "
|
|
2876
|
+
"name": "txId",
|
|
3591
2877
|
"type": "uint256"
|
|
3592
2878
|
},
|
|
3593
2879
|
{
|
|
3594
2880
|
"internalType": "uint256",
|
|
3595
|
-
"name": "
|
|
2881
|
+
"name": "releaseTime",
|
|
3596
2882
|
"type": "uint256"
|
|
3597
2883
|
},
|
|
3598
2884
|
{
|
|
3599
|
-
"internalType": "
|
|
3600
|
-
"name": "
|
|
3601
|
-
"type": "
|
|
3602
|
-
},
|
|
3603
|
-
{
|
|
3604
|
-
"internalType": "bytes4",
|
|
3605
|
-
"name": "executionSelector",
|
|
3606
|
-
"type": "bytes4"
|
|
3607
|
-
},
|
|
3608
|
-
{
|
|
3609
|
-
"internalType": "bytes",
|
|
3610
|
-
"name": "executionParams",
|
|
3611
|
-
"type": "bytes"
|
|
3612
|
-
}
|
|
3613
|
-
],
|
|
3614
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3615
|
-
"name": "params",
|
|
3616
|
-
"type": "tuple"
|
|
3617
|
-
},
|
|
3618
|
-
{
|
|
3619
|
-
"internalType": "bytes32",
|
|
3620
|
-
"name": "message",
|
|
3621
|
-
"type": "bytes32"
|
|
3622
|
-
},
|
|
3623
|
-
{
|
|
3624
|
-
"internalType": "bytes",
|
|
3625
|
-
"name": "result",
|
|
3626
|
-
"type": "bytes"
|
|
3627
|
-
},
|
|
3628
|
-
{
|
|
3629
|
-
"components": [
|
|
3630
|
-
{
|
|
3631
|
-
"internalType": "address",
|
|
3632
|
-
"name": "recipient",
|
|
3633
|
-
"type": "address"
|
|
3634
|
-
},
|
|
3635
|
-
{
|
|
3636
|
-
"internalType": "uint256",
|
|
3637
|
-
"name": "nativeTokenAmount",
|
|
3638
|
-
"type": "uint256"
|
|
3639
|
-
},
|
|
3640
|
-
{
|
|
3641
|
-
"internalType": "address",
|
|
3642
|
-
"name": "erc20TokenAddress",
|
|
3643
|
-
"type": "address"
|
|
3644
|
-
},
|
|
3645
|
-
{
|
|
3646
|
-
"internalType": "uint256",
|
|
3647
|
-
"name": "erc20TokenAmount",
|
|
3648
|
-
"type": "uint256"
|
|
3649
|
-
}
|
|
3650
|
-
],
|
|
3651
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3652
|
-
"name": "payment",
|
|
3653
|
-
"type": "tuple"
|
|
3654
|
-
}
|
|
3655
|
-
],
|
|
3656
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3657
|
-
"name": "",
|
|
3658
|
-
"type": "tuple"
|
|
3659
|
-
}
|
|
3660
|
-
],
|
|
3661
|
-
"stateMutability": "nonpayable",
|
|
3662
|
-
"type": "function"
|
|
3663
|
-
},
|
|
3664
|
-
{
|
|
3665
|
-
"inputs": [
|
|
3666
|
-
{
|
|
3667
|
-
"internalType": "uint256",
|
|
3668
|
-
"name": "txId",
|
|
3669
|
-
"type": "uint256"
|
|
3670
|
-
}
|
|
3671
|
-
],
|
|
3672
|
-
"name": "transferOwnershipCancellation",
|
|
3673
|
-
"outputs": [
|
|
3674
|
-
{
|
|
3675
|
-
"components": [
|
|
3676
|
-
{
|
|
3677
|
-
"internalType": "uint256",
|
|
3678
|
-
"name": "txId",
|
|
3679
|
-
"type": "uint256"
|
|
3680
|
-
},
|
|
3681
|
-
{
|
|
3682
|
-
"internalType": "uint256",
|
|
3683
|
-
"name": "releaseTime",
|
|
3684
|
-
"type": "uint256"
|
|
3685
|
-
},
|
|
3686
|
-
{
|
|
3687
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3688
|
-
"name": "status",
|
|
3689
|
-
"type": "uint8"
|
|
3690
|
-
},
|
|
3691
|
-
{
|
|
3692
|
-
"components": [
|
|
3693
|
-
{
|
|
3694
|
-
"internalType": "address",
|
|
3695
|
-
"name": "requester",
|
|
3696
|
-
"type": "address"
|
|
3697
|
-
},
|
|
3698
|
-
{
|
|
3699
|
-
"internalType": "address",
|
|
3700
|
-
"name": "target",
|
|
3701
|
-
"type": "address"
|
|
3702
|
-
},
|
|
3703
|
-
{
|
|
3704
|
-
"internalType": "uint256",
|
|
3705
|
-
"name": "value",
|
|
3706
|
-
"type": "uint256"
|
|
3707
|
-
},
|
|
3708
|
-
{
|
|
3709
|
-
"internalType": "uint256",
|
|
3710
|
-
"name": "gasLimit",
|
|
3711
|
-
"type": "uint256"
|
|
3712
|
-
},
|
|
3713
|
-
{
|
|
3714
|
-
"internalType": "bytes32",
|
|
3715
|
-
"name": "operationType",
|
|
3716
|
-
"type": "bytes32"
|
|
3717
|
-
},
|
|
3718
|
-
{
|
|
3719
|
-
"internalType": "bytes4",
|
|
3720
|
-
"name": "executionSelector",
|
|
3721
|
-
"type": "bytes4"
|
|
3722
|
-
},
|
|
3723
|
-
{
|
|
3724
|
-
"internalType": "bytes",
|
|
3725
|
-
"name": "executionParams",
|
|
3726
|
-
"type": "bytes"
|
|
3727
|
-
}
|
|
3728
|
-
],
|
|
3729
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
3730
|
-
"name": "params",
|
|
3731
|
-
"type": "tuple"
|
|
3732
|
-
},
|
|
3733
|
-
{
|
|
3734
|
-
"internalType": "bytes32",
|
|
3735
|
-
"name": "message",
|
|
3736
|
-
"type": "bytes32"
|
|
3737
|
-
},
|
|
3738
|
-
{
|
|
3739
|
-
"internalType": "bytes",
|
|
3740
|
-
"name": "result",
|
|
3741
|
-
"type": "bytes"
|
|
3742
|
-
},
|
|
3743
|
-
{
|
|
3744
|
-
"components": [
|
|
3745
|
-
{
|
|
3746
|
-
"internalType": "address",
|
|
3747
|
-
"name": "recipient",
|
|
3748
|
-
"type": "address"
|
|
3749
|
-
},
|
|
3750
|
-
{
|
|
3751
|
-
"internalType": "uint256",
|
|
3752
|
-
"name": "nativeTokenAmount",
|
|
3753
|
-
"type": "uint256"
|
|
3754
|
-
},
|
|
3755
|
-
{
|
|
3756
|
-
"internalType": "address",
|
|
3757
|
-
"name": "erc20TokenAddress",
|
|
3758
|
-
"type": "address"
|
|
3759
|
-
},
|
|
3760
|
-
{
|
|
3761
|
-
"internalType": "uint256",
|
|
3762
|
-
"name": "erc20TokenAmount",
|
|
3763
|
-
"type": "uint256"
|
|
3764
|
-
}
|
|
3765
|
-
],
|
|
3766
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3767
|
-
"name": "payment",
|
|
3768
|
-
"type": "tuple"
|
|
3769
|
-
}
|
|
3770
|
-
],
|
|
3771
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3772
|
-
"name": "",
|
|
3773
|
-
"type": "tuple"
|
|
3774
|
-
}
|
|
3775
|
-
],
|
|
3776
|
-
"stateMutability": "nonpayable",
|
|
3777
|
-
"type": "function"
|
|
3778
|
-
},
|
|
3779
|
-
{
|
|
3780
|
-
"inputs": [
|
|
3781
|
-
{
|
|
3782
|
-
"components": [
|
|
3783
|
-
{
|
|
3784
|
-
"components": [
|
|
3785
|
-
{
|
|
3786
|
-
"internalType": "uint256",
|
|
3787
|
-
"name": "txId",
|
|
3788
|
-
"type": "uint256"
|
|
3789
|
-
},
|
|
3790
|
-
{
|
|
3791
|
-
"internalType": "uint256",
|
|
3792
|
-
"name": "releaseTime",
|
|
3793
|
-
"type": "uint256"
|
|
3794
|
-
},
|
|
3795
|
-
{
|
|
3796
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3797
|
-
"name": "status",
|
|
3798
|
-
"type": "uint8"
|
|
2885
|
+
"internalType": "enum EngineBlox.TxStatus",
|
|
2886
|
+
"name": "status",
|
|
2887
|
+
"type": "uint8"
|
|
3799
2888
|
},
|
|
3800
2889
|
{
|
|
3801
2890
|
"components": [
|
|
@@ -3951,740 +3040,57 @@
|
|
|
3951
3040
|
],
|
|
3952
3041
|
"name": "transferOwnershipCancellationWithMetaTx",
|
|
3953
3042
|
"outputs": [
|
|
3043
|
+
{
|
|
3044
|
+
"internalType": "uint256",
|
|
3045
|
+
"name": "",
|
|
3046
|
+
"type": "uint256"
|
|
3047
|
+
}
|
|
3048
|
+
],
|
|
3049
|
+
"stateMutability": "nonpayable",
|
|
3050
|
+
"type": "function"
|
|
3051
|
+
},
|
|
3052
|
+
{
|
|
3053
|
+
"inputs": [
|
|
3054
|
+
{
|
|
3055
|
+
"internalType": "uint256",
|
|
3056
|
+
"name": "txId",
|
|
3057
|
+
"type": "uint256"
|
|
3058
|
+
}
|
|
3059
|
+
],
|
|
3060
|
+
"name": "transferOwnershipDelayedApproval",
|
|
3061
|
+
"outputs": [
|
|
3062
|
+
{
|
|
3063
|
+
"internalType": "uint256",
|
|
3064
|
+
"name": "",
|
|
3065
|
+
"type": "uint256"
|
|
3066
|
+
}
|
|
3067
|
+
],
|
|
3068
|
+
"stateMutability": "nonpayable",
|
|
3069
|
+
"type": "function"
|
|
3070
|
+
},
|
|
3071
|
+
{
|
|
3072
|
+
"inputs": [],
|
|
3073
|
+
"name": "transferOwnershipRequest",
|
|
3074
|
+
"outputs": [
|
|
3075
|
+
{
|
|
3076
|
+
"internalType": "uint256",
|
|
3077
|
+
"name": "txId",
|
|
3078
|
+
"type": "uint256"
|
|
3079
|
+
}
|
|
3080
|
+
],
|
|
3081
|
+
"stateMutability": "nonpayable",
|
|
3082
|
+
"type": "function"
|
|
3083
|
+
},
|
|
3084
|
+
{
|
|
3085
|
+
"inputs": [
|
|
3954
3086
|
{
|
|
3955
3087
|
"components": [
|
|
3956
|
-
{
|
|
3957
|
-
"internalType": "uint256",
|
|
3958
|
-
"name": "txId",
|
|
3959
|
-
"type": "uint256"
|
|
3960
|
-
},
|
|
3961
|
-
{
|
|
3962
|
-
"internalType": "uint256",
|
|
3963
|
-
"name": "releaseTime",
|
|
3964
|
-
"type": "uint256"
|
|
3965
|
-
},
|
|
3966
|
-
{
|
|
3967
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
3968
|
-
"name": "status",
|
|
3969
|
-
"type": "uint8"
|
|
3970
|
-
},
|
|
3971
3088
|
{
|
|
3972
3089
|
"components": [
|
|
3973
3090
|
{
|
|
3974
|
-
"internalType": "
|
|
3975
|
-
"name": "
|
|
3976
|
-
"type": "
|
|
3977
|
-
},
|
|
3978
|
-
{
|
|
3979
|
-
"internalType": "address",
|
|
3980
|
-
"name": "target",
|
|
3981
|
-
"type": "address"
|
|
3982
|
-
},
|
|
3983
|
-
{
|
|
3984
|
-
"internalType": "uint256",
|
|
3985
|
-
"name": "value",
|
|
3986
|
-
"type": "uint256"
|
|
3987
|
-
},
|
|
3988
|
-
{
|
|
3989
|
-
"internalType": "uint256",
|
|
3990
|
-
"name": "gasLimit",
|
|
3991
|
-
"type": "uint256"
|
|
3992
|
-
},
|
|
3993
|
-
{
|
|
3994
|
-
"internalType": "bytes32",
|
|
3995
|
-
"name": "operationType",
|
|
3996
|
-
"type": "bytes32"
|
|
3997
|
-
},
|
|
3998
|
-
{
|
|
3999
|
-
"internalType": "bytes4",
|
|
4000
|
-
"name": "executionSelector",
|
|
4001
|
-
"type": "bytes4"
|
|
4002
|
-
},
|
|
4003
|
-
{
|
|
4004
|
-
"internalType": "bytes",
|
|
4005
|
-
"name": "executionParams",
|
|
4006
|
-
"type": "bytes"
|
|
4007
|
-
}
|
|
4008
|
-
],
|
|
4009
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4010
|
-
"name": "params",
|
|
4011
|
-
"type": "tuple"
|
|
4012
|
-
},
|
|
4013
|
-
{
|
|
4014
|
-
"internalType": "bytes32",
|
|
4015
|
-
"name": "message",
|
|
4016
|
-
"type": "bytes32"
|
|
4017
|
-
},
|
|
4018
|
-
{
|
|
4019
|
-
"internalType": "bytes",
|
|
4020
|
-
"name": "result",
|
|
4021
|
-
"type": "bytes"
|
|
4022
|
-
},
|
|
4023
|
-
{
|
|
4024
|
-
"components": [
|
|
4025
|
-
{
|
|
4026
|
-
"internalType": "address",
|
|
4027
|
-
"name": "recipient",
|
|
4028
|
-
"type": "address"
|
|
4029
|
-
},
|
|
4030
|
-
{
|
|
4031
|
-
"internalType": "uint256",
|
|
4032
|
-
"name": "nativeTokenAmount",
|
|
4033
|
-
"type": "uint256"
|
|
4034
|
-
},
|
|
4035
|
-
{
|
|
4036
|
-
"internalType": "address",
|
|
4037
|
-
"name": "erc20TokenAddress",
|
|
4038
|
-
"type": "address"
|
|
4039
|
-
},
|
|
4040
|
-
{
|
|
4041
|
-
"internalType": "uint256",
|
|
4042
|
-
"name": "erc20TokenAmount",
|
|
4043
|
-
"type": "uint256"
|
|
4044
|
-
}
|
|
4045
|
-
],
|
|
4046
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4047
|
-
"name": "payment",
|
|
4048
|
-
"type": "tuple"
|
|
4049
|
-
}
|
|
4050
|
-
],
|
|
4051
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
4052
|
-
"name": "",
|
|
4053
|
-
"type": "tuple"
|
|
4054
|
-
}
|
|
4055
|
-
],
|
|
4056
|
-
"stateMutability": "nonpayable",
|
|
4057
|
-
"type": "function"
|
|
4058
|
-
},
|
|
4059
|
-
{
|
|
4060
|
-
"inputs": [
|
|
4061
|
-
{
|
|
4062
|
-
"internalType": "uint256",
|
|
4063
|
-
"name": "txId",
|
|
4064
|
-
"type": "uint256"
|
|
4065
|
-
}
|
|
4066
|
-
],
|
|
4067
|
-
"name": "transferOwnershipDelayedApproval",
|
|
4068
|
-
"outputs": [
|
|
4069
|
-
{
|
|
4070
|
-
"components": [
|
|
4071
|
-
{
|
|
4072
|
-
"internalType": "uint256",
|
|
4073
|
-
"name": "txId",
|
|
4074
|
-
"type": "uint256"
|
|
4075
|
-
},
|
|
4076
|
-
{
|
|
4077
|
-
"internalType": "uint256",
|
|
4078
|
-
"name": "releaseTime",
|
|
4079
|
-
"type": "uint256"
|
|
4080
|
-
},
|
|
4081
|
-
{
|
|
4082
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4083
|
-
"name": "status",
|
|
4084
|
-
"type": "uint8"
|
|
4085
|
-
},
|
|
4086
|
-
{
|
|
4087
|
-
"components": [
|
|
4088
|
-
{
|
|
4089
|
-
"internalType": "address",
|
|
4090
|
-
"name": "requester",
|
|
4091
|
-
"type": "address"
|
|
4092
|
-
},
|
|
4093
|
-
{
|
|
4094
|
-
"internalType": "address",
|
|
4095
|
-
"name": "target",
|
|
4096
|
-
"type": "address"
|
|
4097
|
-
},
|
|
4098
|
-
{
|
|
4099
|
-
"internalType": "uint256",
|
|
4100
|
-
"name": "value",
|
|
4101
|
-
"type": "uint256"
|
|
4102
|
-
},
|
|
4103
|
-
{
|
|
4104
|
-
"internalType": "uint256",
|
|
4105
|
-
"name": "gasLimit",
|
|
4106
|
-
"type": "uint256"
|
|
4107
|
-
},
|
|
4108
|
-
{
|
|
4109
|
-
"internalType": "bytes32",
|
|
4110
|
-
"name": "operationType",
|
|
4111
|
-
"type": "bytes32"
|
|
4112
|
-
},
|
|
4113
|
-
{
|
|
4114
|
-
"internalType": "bytes4",
|
|
4115
|
-
"name": "executionSelector",
|
|
4116
|
-
"type": "bytes4"
|
|
4117
|
-
},
|
|
4118
|
-
{
|
|
4119
|
-
"internalType": "bytes",
|
|
4120
|
-
"name": "executionParams",
|
|
4121
|
-
"type": "bytes"
|
|
4122
|
-
}
|
|
4123
|
-
],
|
|
4124
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4125
|
-
"name": "params",
|
|
4126
|
-
"type": "tuple"
|
|
4127
|
-
},
|
|
4128
|
-
{
|
|
4129
|
-
"internalType": "bytes32",
|
|
4130
|
-
"name": "message",
|
|
4131
|
-
"type": "bytes32"
|
|
4132
|
-
},
|
|
4133
|
-
{
|
|
4134
|
-
"internalType": "bytes",
|
|
4135
|
-
"name": "result",
|
|
4136
|
-
"type": "bytes"
|
|
4137
|
-
},
|
|
4138
|
-
{
|
|
4139
|
-
"components": [
|
|
4140
|
-
{
|
|
4141
|
-
"internalType": "address",
|
|
4142
|
-
"name": "recipient",
|
|
4143
|
-
"type": "address"
|
|
4144
|
-
},
|
|
4145
|
-
{
|
|
4146
|
-
"internalType": "uint256",
|
|
4147
|
-
"name": "nativeTokenAmount",
|
|
4148
|
-
"type": "uint256"
|
|
4149
|
-
},
|
|
4150
|
-
{
|
|
4151
|
-
"internalType": "address",
|
|
4152
|
-
"name": "erc20TokenAddress",
|
|
4153
|
-
"type": "address"
|
|
4154
|
-
},
|
|
4155
|
-
{
|
|
4156
|
-
"internalType": "uint256",
|
|
4157
|
-
"name": "erc20TokenAmount",
|
|
4158
|
-
"type": "uint256"
|
|
4159
|
-
}
|
|
4160
|
-
],
|
|
4161
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4162
|
-
"name": "payment",
|
|
4163
|
-
"type": "tuple"
|
|
4164
|
-
}
|
|
4165
|
-
],
|
|
4166
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
4167
|
-
"name": "",
|
|
4168
|
-
"type": "tuple"
|
|
4169
|
-
}
|
|
4170
|
-
],
|
|
4171
|
-
"stateMutability": "nonpayable",
|
|
4172
|
-
"type": "function"
|
|
4173
|
-
},
|
|
4174
|
-
{
|
|
4175
|
-
"inputs": [],
|
|
4176
|
-
"name": "transferOwnershipRequest",
|
|
4177
|
-
"outputs": [
|
|
4178
|
-
{
|
|
4179
|
-
"components": [
|
|
4180
|
-
{
|
|
4181
|
-
"internalType": "uint256",
|
|
4182
|
-
"name": "txId",
|
|
4183
|
-
"type": "uint256"
|
|
4184
|
-
},
|
|
4185
|
-
{
|
|
4186
|
-
"internalType": "uint256",
|
|
4187
|
-
"name": "releaseTime",
|
|
4188
|
-
"type": "uint256"
|
|
4189
|
-
},
|
|
4190
|
-
{
|
|
4191
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4192
|
-
"name": "status",
|
|
4193
|
-
"type": "uint8"
|
|
4194
|
-
},
|
|
4195
|
-
{
|
|
4196
|
-
"components": [
|
|
4197
|
-
{
|
|
4198
|
-
"internalType": "address",
|
|
4199
|
-
"name": "requester",
|
|
4200
|
-
"type": "address"
|
|
4201
|
-
},
|
|
4202
|
-
{
|
|
4203
|
-
"internalType": "address",
|
|
4204
|
-
"name": "target",
|
|
4205
|
-
"type": "address"
|
|
4206
|
-
},
|
|
4207
|
-
{
|
|
4208
|
-
"internalType": "uint256",
|
|
4209
|
-
"name": "value",
|
|
4210
|
-
"type": "uint256"
|
|
4211
|
-
},
|
|
4212
|
-
{
|
|
4213
|
-
"internalType": "uint256",
|
|
4214
|
-
"name": "gasLimit",
|
|
4215
|
-
"type": "uint256"
|
|
4216
|
-
},
|
|
4217
|
-
{
|
|
4218
|
-
"internalType": "bytes32",
|
|
4219
|
-
"name": "operationType",
|
|
4220
|
-
"type": "bytes32"
|
|
4221
|
-
},
|
|
4222
|
-
{
|
|
4223
|
-
"internalType": "bytes4",
|
|
4224
|
-
"name": "executionSelector",
|
|
4225
|
-
"type": "bytes4"
|
|
4226
|
-
},
|
|
4227
|
-
{
|
|
4228
|
-
"internalType": "bytes",
|
|
4229
|
-
"name": "executionParams",
|
|
4230
|
-
"type": "bytes"
|
|
4231
|
-
}
|
|
4232
|
-
],
|
|
4233
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4234
|
-
"name": "params",
|
|
4235
|
-
"type": "tuple"
|
|
4236
|
-
},
|
|
4237
|
-
{
|
|
4238
|
-
"internalType": "bytes32",
|
|
4239
|
-
"name": "message",
|
|
4240
|
-
"type": "bytes32"
|
|
4241
|
-
},
|
|
4242
|
-
{
|
|
4243
|
-
"internalType": "bytes",
|
|
4244
|
-
"name": "result",
|
|
4245
|
-
"type": "bytes"
|
|
4246
|
-
},
|
|
4247
|
-
{
|
|
4248
|
-
"components": [
|
|
4249
|
-
{
|
|
4250
|
-
"internalType": "address",
|
|
4251
|
-
"name": "recipient",
|
|
4252
|
-
"type": "address"
|
|
4253
|
-
},
|
|
4254
|
-
{
|
|
4255
|
-
"internalType": "uint256",
|
|
4256
|
-
"name": "nativeTokenAmount",
|
|
4257
|
-
"type": "uint256"
|
|
4258
|
-
},
|
|
4259
|
-
{
|
|
4260
|
-
"internalType": "address",
|
|
4261
|
-
"name": "erc20TokenAddress",
|
|
4262
|
-
"type": "address"
|
|
4263
|
-
},
|
|
4264
|
-
{
|
|
4265
|
-
"internalType": "uint256",
|
|
4266
|
-
"name": "erc20TokenAmount",
|
|
4267
|
-
"type": "uint256"
|
|
4268
|
-
}
|
|
4269
|
-
],
|
|
4270
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4271
|
-
"name": "payment",
|
|
4272
|
-
"type": "tuple"
|
|
4273
|
-
}
|
|
4274
|
-
],
|
|
4275
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
4276
|
-
"name": "",
|
|
4277
|
-
"type": "tuple"
|
|
4278
|
-
}
|
|
4279
|
-
],
|
|
4280
|
-
"stateMutability": "nonpayable",
|
|
4281
|
-
"type": "function"
|
|
4282
|
-
},
|
|
4283
|
-
{
|
|
4284
|
-
"inputs": [
|
|
4285
|
-
{
|
|
4286
|
-
"components": [
|
|
4287
|
-
{
|
|
4288
|
-
"components": [
|
|
4289
|
-
{
|
|
4290
|
-
"internalType": "uint256",
|
|
4291
|
-
"name": "txId",
|
|
4292
|
-
"type": "uint256"
|
|
4293
|
-
},
|
|
4294
|
-
{
|
|
4295
|
-
"internalType": "uint256",
|
|
4296
|
-
"name": "releaseTime",
|
|
4297
|
-
"type": "uint256"
|
|
4298
|
-
},
|
|
4299
|
-
{
|
|
4300
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4301
|
-
"name": "status",
|
|
4302
|
-
"type": "uint8"
|
|
4303
|
-
},
|
|
4304
|
-
{
|
|
4305
|
-
"components": [
|
|
4306
|
-
{
|
|
4307
|
-
"internalType": "address",
|
|
4308
|
-
"name": "requester",
|
|
4309
|
-
"type": "address"
|
|
4310
|
-
},
|
|
4311
|
-
{
|
|
4312
|
-
"internalType": "address",
|
|
4313
|
-
"name": "target",
|
|
4314
|
-
"type": "address"
|
|
4315
|
-
},
|
|
4316
|
-
{
|
|
4317
|
-
"internalType": "uint256",
|
|
4318
|
-
"name": "value",
|
|
4319
|
-
"type": "uint256"
|
|
4320
|
-
},
|
|
4321
|
-
{
|
|
4322
|
-
"internalType": "uint256",
|
|
4323
|
-
"name": "gasLimit",
|
|
4324
|
-
"type": "uint256"
|
|
4325
|
-
},
|
|
4326
|
-
{
|
|
4327
|
-
"internalType": "bytes32",
|
|
4328
|
-
"name": "operationType",
|
|
4329
|
-
"type": "bytes32"
|
|
4330
|
-
},
|
|
4331
|
-
{
|
|
4332
|
-
"internalType": "bytes4",
|
|
4333
|
-
"name": "executionSelector",
|
|
4334
|
-
"type": "bytes4"
|
|
4335
|
-
},
|
|
4336
|
-
{
|
|
4337
|
-
"internalType": "bytes",
|
|
4338
|
-
"name": "executionParams",
|
|
4339
|
-
"type": "bytes"
|
|
4340
|
-
}
|
|
4341
|
-
],
|
|
4342
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4343
|
-
"name": "params",
|
|
4344
|
-
"type": "tuple"
|
|
4345
|
-
},
|
|
4346
|
-
{
|
|
4347
|
-
"internalType": "bytes32",
|
|
4348
|
-
"name": "message",
|
|
4349
|
-
"type": "bytes32"
|
|
4350
|
-
},
|
|
4351
|
-
{
|
|
4352
|
-
"internalType": "bytes",
|
|
4353
|
-
"name": "result",
|
|
4354
|
-
"type": "bytes"
|
|
4355
|
-
},
|
|
4356
|
-
{
|
|
4357
|
-
"components": [
|
|
4358
|
-
{
|
|
4359
|
-
"internalType": "address",
|
|
4360
|
-
"name": "recipient",
|
|
4361
|
-
"type": "address"
|
|
4362
|
-
},
|
|
4363
|
-
{
|
|
4364
|
-
"internalType": "uint256",
|
|
4365
|
-
"name": "nativeTokenAmount",
|
|
4366
|
-
"type": "uint256"
|
|
4367
|
-
},
|
|
4368
|
-
{
|
|
4369
|
-
"internalType": "address",
|
|
4370
|
-
"name": "erc20TokenAddress",
|
|
4371
|
-
"type": "address"
|
|
4372
|
-
},
|
|
4373
|
-
{
|
|
4374
|
-
"internalType": "uint256",
|
|
4375
|
-
"name": "erc20TokenAmount",
|
|
4376
|
-
"type": "uint256"
|
|
4377
|
-
}
|
|
4378
|
-
],
|
|
4379
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4380
|
-
"name": "payment",
|
|
4381
|
-
"type": "tuple"
|
|
4382
|
-
}
|
|
4383
|
-
],
|
|
4384
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
4385
|
-
"name": "txRecord",
|
|
4386
|
-
"type": "tuple"
|
|
4387
|
-
},
|
|
4388
|
-
{
|
|
4389
|
-
"components": [
|
|
4390
|
-
{
|
|
4391
|
-
"internalType": "uint256",
|
|
4392
|
-
"name": "chainId",
|
|
4393
|
-
"type": "uint256"
|
|
4394
|
-
},
|
|
4395
|
-
{
|
|
4396
|
-
"internalType": "uint256",
|
|
4397
|
-
"name": "nonce",
|
|
4398
|
-
"type": "uint256"
|
|
4399
|
-
},
|
|
4400
|
-
{
|
|
4401
|
-
"internalType": "address",
|
|
4402
|
-
"name": "handlerContract",
|
|
4403
|
-
"type": "address"
|
|
4404
|
-
},
|
|
4405
|
-
{
|
|
4406
|
-
"internalType": "bytes4",
|
|
4407
|
-
"name": "handlerSelector",
|
|
4408
|
-
"type": "bytes4"
|
|
4409
|
-
},
|
|
4410
|
-
{
|
|
4411
|
-
"internalType": "enum EngineBlox.TxAction",
|
|
4412
|
-
"name": "action",
|
|
4413
|
-
"type": "uint8"
|
|
4414
|
-
},
|
|
4415
|
-
{
|
|
4416
|
-
"internalType": "uint256",
|
|
4417
|
-
"name": "deadline",
|
|
4418
|
-
"type": "uint256"
|
|
4419
|
-
},
|
|
4420
|
-
{
|
|
4421
|
-
"internalType": "uint256",
|
|
4422
|
-
"name": "maxGasPrice",
|
|
4423
|
-
"type": "uint256"
|
|
4424
|
-
},
|
|
4425
|
-
{
|
|
4426
|
-
"internalType": "address",
|
|
4427
|
-
"name": "signer",
|
|
4428
|
-
"type": "address"
|
|
4429
|
-
}
|
|
4430
|
-
],
|
|
4431
|
-
"internalType": "struct EngineBlox.MetaTxParams",
|
|
4432
|
-
"name": "params",
|
|
4433
|
-
"type": "tuple"
|
|
4434
|
-
},
|
|
4435
|
-
{
|
|
4436
|
-
"internalType": "bytes32",
|
|
4437
|
-
"name": "message",
|
|
4438
|
-
"type": "bytes32"
|
|
4439
|
-
},
|
|
4440
|
-
{
|
|
4441
|
-
"internalType": "bytes",
|
|
4442
|
-
"name": "signature",
|
|
4443
|
-
"type": "bytes"
|
|
4444
|
-
},
|
|
4445
|
-
{
|
|
4446
|
-
"internalType": "bytes",
|
|
4447
|
-
"name": "data",
|
|
4448
|
-
"type": "bytes"
|
|
4449
|
-
}
|
|
4450
|
-
],
|
|
4451
|
-
"internalType": "struct EngineBlox.MetaTransaction",
|
|
4452
|
-
"name": "metaTx",
|
|
4453
|
-
"type": "tuple"
|
|
4454
|
-
}
|
|
4455
|
-
],
|
|
4456
|
-
"name": "updateBroadcasterApprovalWithMetaTx",
|
|
4457
|
-
"outputs": [
|
|
4458
|
-
{
|
|
4459
|
-
"components": [
|
|
4460
|
-
{
|
|
4461
|
-
"internalType": "uint256",
|
|
4462
|
-
"name": "txId",
|
|
4463
|
-
"type": "uint256"
|
|
4464
|
-
},
|
|
4465
|
-
{
|
|
4466
|
-
"internalType": "uint256",
|
|
4467
|
-
"name": "releaseTime",
|
|
4468
|
-
"type": "uint256"
|
|
4469
|
-
},
|
|
4470
|
-
{
|
|
4471
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4472
|
-
"name": "status",
|
|
4473
|
-
"type": "uint8"
|
|
4474
|
-
},
|
|
4475
|
-
{
|
|
4476
|
-
"components": [
|
|
4477
|
-
{
|
|
4478
|
-
"internalType": "address",
|
|
4479
|
-
"name": "requester",
|
|
4480
|
-
"type": "address"
|
|
4481
|
-
},
|
|
4482
|
-
{
|
|
4483
|
-
"internalType": "address",
|
|
4484
|
-
"name": "target",
|
|
4485
|
-
"type": "address"
|
|
4486
|
-
},
|
|
4487
|
-
{
|
|
4488
|
-
"internalType": "uint256",
|
|
4489
|
-
"name": "value",
|
|
4490
|
-
"type": "uint256"
|
|
4491
|
-
},
|
|
4492
|
-
{
|
|
4493
|
-
"internalType": "uint256",
|
|
4494
|
-
"name": "gasLimit",
|
|
4495
|
-
"type": "uint256"
|
|
4496
|
-
},
|
|
4497
|
-
{
|
|
4498
|
-
"internalType": "bytes32",
|
|
4499
|
-
"name": "operationType",
|
|
4500
|
-
"type": "bytes32"
|
|
4501
|
-
},
|
|
4502
|
-
{
|
|
4503
|
-
"internalType": "bytes4",
|
|
4504
|
-
"name": "executionSelector",
|
|
4505
|
-
"type": "bytes4"
|
|
4506
|
-
},
|
|
4507
|
-
{
|
|
4508
|
-
"internalType": "bytes",
|
|
4509
|
-
"name": "executionParams",
|
|
4510
|
-
"type": "bytes"
|
|
4511
|
-
}
|
|
4512
|
-
],
|
|
4513
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4514
|
-
"name": "params",
|
|
4515
|
-
"type": "tuple"
|
|
4516
|
-
},
|
|
4517
|
-
{
|
|
4518
|
-
"internalType": "bytes32",
|
|
4519
|
-
"name": "message",
|
|
4520
|
-
"type": "bytes32"
|
|
4521
|
-
},
|
|
4522
|
-
{
|
|
4523
|
-
"internalType": "bytes",
|
|
4524
|
-
"name": "result",
|
|
4525
|
-
"type": "bytes"
|
|
4526
|
-
},
|
|
4527
|
-
{
|
|
4528
|
-
"components": [
|
|
4529
|
-
{
|
|
4530
|
-
"internalType": "address",
|
|
4531
|
-
"name": "recipient",
|
|
4532
|
-
"type": "address"
|
|
4533
|
-
},
|
|
4534
|
-
{
|
|
4535
|
-
"internalType": "uint256",
|
|
4536
|
-
"name": "nativeTokenAmount",
|
|
4537
|
-
"type": "uint256"
|
|
4538
|
-
},
|
|
4539
|
-
{
|
|
4540
|
-
"internalType": "address",
|
|
4541
|
-
"name": "erc20TokenAddress",
|
|
4542
|
-
"type": "address"
|
|
4543
|
-
},
|
|
4544
|
-
{
|
|
4545
|
-
"internalType": "uint256",
|
|
4546
|
-
"name": "erc20TokenAmount",
|
|
4547
|
-
"type": "uint256"
|
|
4548
|
-
}
|
|
4549
|
-
],
|
|
4550
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4551
|
-
"name": "payment",
|
|
4552
|
-
"type": "tuple"
|
|
4553
|
-
}
|
|
4554
|
-
],
|
|
4555
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
4556
|
-
"name": "",
|
|
4557
|
-
"type": "tuple"
|
|
4558
|
-
}
|
|
4559
|
-
],
|
|
4560
|
-
"stateMutability": "nonpayable",
|
|
4561
|
-
"type": "function"
|
|
4562
|
-
},
|
|
4563
|
-
{
|
|
4564
|
-
"inputs": [
|
|
4565
|
-
{
|
|
4566
|
-
"internalType": "uint256",
|
|
4567
|
-
"name": "txId",
|
|
4568
|
-
"type": "uint256"
|
|
4569
|
-
}
|
|
4570
|
-
],
|
|
4571
|
-
"name": "updateBroadcasterCancellation",
|
|
4572
|
-
"outputs": [
|
|
4573
|
-
{
|
|
4574
|
-
"components": [
|
|
4575
|
-
{
|
|
4576
|
-
"internalType": "uint256",
|
|
4577
|
-
"name": "txId",
|
|
4578
|
-
"type": "uint256"
|
|
4579
|
-
},
|
|
4580
|
-
{
|
|
4581
|
-
"internalType": "uint256",
|
|
4582
|
-
"name": "releaseTime",
|
|
4583
|
-
"type": "uint256"
|
|
4584
|
-
},
|
|
4585
|
-
{
|
|
4586
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4587
|
-
"name": "status",
|
|
4588
|
-
"type": "uint8"
|
|
4589
|
-
},
|
|
4590
|
-
{
|
|
4591
|
-
"components": [
|
|
4592
|
-
{
|
|
4593
|
-
"internalType": "address",
|
|
4594
|
-
"name": "requester",
|
|
4595
|
-
"type": "address"
|
|
4596
|
-
},
|
|
4597
|
-
{
|
|
4598
|
-
"internalType": "address",
|
|
4599
|
-
"name": "target",
|
|
4600
|
-
"type": "address"
|
|
4601
|
-
},
|
|
4602
|
-
{
|
|
4603
|
-
"internalType": "uint256",
|
|
4604
|
-
"name": "value",
|
|
4605
|
-
"type": "uint256"
|
|
4606
|
-
},
|
|
4607
|
-
{
|
|
4608
|
-
"internalType": "uint256",
|
|
4609
|
-
"name": "gasLimit",
|
|
4610
|
-
"type": "uint256"
|
|
4611
|
-
},
|
|
4612
|
-
{
|
|
4613
|
-
"internalType": "bytes32",
|
|
4614
|
-
"name": "operationType",
|
|
4615
|
-
"type": "bytes32"
|
|
4616
|
-
},
|
|
4617
|
-
{
|
|
4618
|
-
"internalType": "bytes4",
|
|
4619
|
-
"name": "executionSelector",
|
|
4620
|
-
"type": "bytes4"
|
|
4621
|
-
},
|
|
4622
|
-
{
|
|
4623
|
-
"internalType": "bytes",
|
|
4624
|
-
"name": "executionParams",
|
|
4625
|
-
"type": "bytes"
|
|
4626
|
-
}
|
|
4627
|
-
],
|
|
4628
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4629
|
-
"name": "params",
|
|
4630
|
-
"type": "tuple"
|
|
4631
|
-
},
|
|
4632
|
-
{
|
|
4633
|
-
"internalType": "bytes32",
|
|
4634
|
-
"name": "message",
|
|
4635
|
-
"type": "bytes32"
|
|
4636
|
-
},
|
|
4637
|
-
{
|
|
4638
|
-
"internalType": "bytes",
|
|
4639
|
-
"name": "result",
|
|
4640
|
-
"type": "bytes"
|
|
4641
|
-
},
|
|
4642
|
-
{
|
|
4643
|
-
"components": [
|
|
4644
|
-
{
|
|
4645
|
-
"internalType": "address",
|
|
4646
|
-
"name": "recipient",
|
|
4647
|
-
"type": "address"
|
|
4648
|
-
},
|
|
4649
|
-
{
|
|
4650
|
-
"internalType": "uint256",
|
|
4651
|
-
"name": "nativeTokenAmount",
|
|
4652
|
-
"type": "uint256"
|
|
4653
|
-
},
|
|
4654
|
-
{
|
|
4655
|
-
"internalType": "address",
|
|
4656
|
-
"name": "erc20TokenAddress",
|
|
4657
|
-
"type": "address"
|
|
4658
|
-
},
|
|
4659
|
-
{
|
|
4660
|
-
"internalType": "uint256",
|
|
4661
|
-
"name": "erc20TokenAmount",
|
|
4662
|
-
"type": "uint256"
|
|
4663
|
-
}
|
|
4664
|
-
],
|
|
4665
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4666
|
-
"name": "payment",
|
|
4667
|
-
"type": "tuple"
|
|
4668
|
-
}
|
|
4669
|
-
],
|
|
4670
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
4671
|
-
"name": "",
|
|
4672
|
-
"type": "tuple"
|
|
4673
|
-
}
|
|
4674
|
-
],
|
|
4675
|
-
"stateMutability": "nonpayable",
|
|
4676
|
-
"type": "function"
|
|
4677
|
-
},
|
|
4678
|
-
{
|
|
4679
|
-
"inputs": [
|
|
4680
|
-
{
|
|
4681
|
-
"components": [
|
|
4682
|
-
{
|
|
4683
|
-
"components": [
|
|
4684
|
-
{
|
|
4685
|
-
"internalType": "uint256",
|
|
4686
|
-
"name": "txId",
|
|
4687
|
-
"type": "uint256"
|
|
3091
|
+
"internalType": "uint256",
|
|
3092
|
+
"name": "txId",
|
|
3093
|
+
"type": "uint256"
|
|
4688
3094
|
},
|
|
4689
3095
|
{
|
|
4690
3096
|
"internalType": "uint256",
|
|
@@ -4813,214 +3219,17 @@
|
|
|
4813
3219
|
"type": "uint256"
|
|
4814
3220
|
},
|
|
4815
3221
|
{
|
|
4816
|
-
"internalType": "uint256",
|
|
4817
|
-
"name": "maxGasPrice",
|
|
4818
|
-
"type": "uint256"
|
|
4819
|
-
},
|
|
4820
|
-
{
|
|
4821
|
-
"internalType": "address",
|
|
4822
|
-
"name": "signer",
|
|
4823
|
-
"type": "address"
|
|
4824
|
-
}
|
|
4825
|
-
],
|
|
4826
|
-
"internalType": "struct EngineBlox.MetaTxParams",
|
|
4827
|
-
"name": "params",
|
|
4828
|
-
"type": "tuple"
|
|
4829
|
-
},
|
|
4830
|
-
{
|
|
4831
|
-
"internalType": "bytes32",
|
|
4832
|
-
"name": "message",
|
|
4833
|
-
"type": "bytes32"
|
|
4834
|
-
},
|
|
4835
|
-
{
|
|
4836
|
-
"internalType": "bytes",
|
|
4837
|
-
"name": "signature",
|
|
4838
|
-
"type": "bytes"
|
|
4839
|
-
},
|
|
4840
|
-
{
|
|
4841
|
-
"internalType": "bytes",
|
|
4842
|
-
"name": "data",
|
|
4843
|
-
"type": "bytes"
|
|
4844
|
-
}
|
|
4845
|
-
],
|
|
4846
|
-
"internalType": "struct EngineBlox.MetaTransaction",
|
|
4847
|
-
"name": "metaTx",
|
|
4848
|
-
"type": "tuple"
|
|
4849
|
-
}
|
|
4850
|
-
],
|
|
4851
|
-
"name": "updateBroadcasterCancellationWithMetaTx",
|
|
4852
|
-
"outputs": [
|
|
4853
|
-
{
|
|
4854
|
-
"components": [
|
|
4855
|
-
{
|
|
4856
|
-
"internalType": "uint256",
|
|
4857
|
-
"name": "txId",
|
|
4858
|
-
"type": "uint256"
|
|
4859
|
-
},
|
|
4860
|
-
{
|
|
4861
|
-
"internalType": "uint256",
|
|
4862
|
-
"name": "releaseTime",
|
|
4863
|
-
"type": "uint256"
|
|
4864
|
-
},
|
|
4865
|
-
{
|
|
4866
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4867
|
-
"name": "status",
|
|
4868
|
-
"type": "uint8"
|
|
4869
|
-
},
|
|
4870
|
-
{
|
|
4871
|
-
"components": [
|
|
4872
|
-
{
|
|
4873
|
-
"internalType": "address",
|
|
4874
|
-
"name": "requester",
|
|
4875
|
-
"type": "address"
|
|
4876
|
-
},
|
|
4877
|
-
{
|
|
4878
|
-
"internalType": "address",
|
|
4879
|
-
"name": "target",
|
|
4880
|
-
"type": "address"
|
|
4881
|
-
},
|
|
4882
|
-
{
|
|
4883
|
-
"internalType": "uint256",
|
|
4884
|
-
"name": "value",
|
|
4885
|
-
"type": "uint256"
|
|
4886
|
-
},
|
|
4887
|
-
{
|
|
4888
|
-
"internalType": "uint256",
|
|
4889
|
-
"name": "gasLimit",
|
|
4890
|
-
"type": "uint256"
|
|
4891
|
-
},
|
|
4892
|
-
{
|
|
4893
|
-
"internalType": "bytes32",
|
|
4894
|
-
"name": "operationType",
|
|
4895
|
-
"type": "bytes32"
|
|
4896
|
-
},
|
|
4897
|
-
{
|
|
4898
|
-
"internalType": "bytes4",
|
|
4899
|
-
"name": "executionSelector",
|
|
4900
|
-
"type": "bytes4"
|
|
4901
|
-
},
|
|
4902
|
-
{
|
|
4903
|
-
"internalType": "bytes",
|
|
4904
|
-
"name": "executionParams",
|
|
4905
|
-
"type": "bytes"
|
|
4906
|
-
}
|
|
4907
|
-
],
|
|
4908
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
4909
|
-
"name": "params",
|
|
4910
|
-
"type": "tuple"
|
|
4911
|
-
},
|
|
4912
|
-
{
|
|
4913
|
-
"internalType": "bytes32",
|
|
4914
|
-
"name": "message",
|
|
4915
|
-
"type": "bytes32"
|
|
4916
|
-
},
|
|
4917
|
-
{
|
|
4918
|
-
"internalType": "bytes",
|
|
4919
|
-
"name": "result",
|
|
4920
|
-
"type": "bytes"
|
|
4921
|
-
},
|
|
4922
|
-
{
|
|
4923
|
-
"components": [
|
|
4924
|
-
{
|
|
4925
|
-
"internalType": "address",
|
|
4926
|
-
"name": "recipient",
|
|
4927
|
-
"type": "address"
|
|
4928
|
-
},
|
|
4929
|
-
{
|
|
4930
|
-
"internalType": "uint256",
|
|
4931
|
-
"name": "nativeTokenAmount",
|
|
4932
|
-
"type": "uint256"
|
|
4933
|
-
},
|
|
4934
|
-
{
|
|
4935
|
-
"internalType": "address",
|
|
4936
|
-
"name": "erc20TokenAddress",
|
|
4937
|
-
"type": "address"
|
|
4938
|
-
},
|
|
4939
|
-
{
|
|
4940
|
-
"internalType": "uint256",
|
|
4941
|
-
"name": "erc20TokenAmount",
|
|
4942
|
-
"type": "uint256"
|
|
4943
|
-
}
|
|
4944
|
-
],
|
|
4945
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
4946
|
-
"name": "payment",
|
|
4947
|
-
"type": "tuple"
|
|
4948
|
-
}
|
|
4949
|
-
],
|
|
4950
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
4951
|
-
"name": "",
|
|
4952
|
-
"type": "tuple"
|
|
4953
|
-
}
|
|
4954
|
-
],
|
|
4955
|
-
"stateMutability": "nonpayable",
|
|
4956
|
-
"type": "function"
|
|
4957
|
-
},
|
|
4958
|
-
{
|
|
4959
|
-
"inputs": [
|
|
4960
|
-
{
|
|
4961
|
-
"internalType": "uint256",
|
|
4962
|
-
"name": "txId",
|
|
4963
|
-
"type": "uint256"
|
|
4964
|
-
}
|
|
4965
|
-
],
|
|
4966
|
-
"name": "updateBroadcasterDelayedApproval",
|
|
4967
|
-
"outputs": [
|
|
4968
|
-
{
|
|
4969
|
-
"components": [
|
|
4970
|
-
{
|
|
4971
|
-
"internalType": "uint256",
|
|
4972
|
-
"name": "txId",
|
|
4973
|
-
"type": "uint256"
|
|
4974
|
-
},
|
|
4975
|
-
{
|
|
4976
|
-
"internalType": "uint256",
|
|
4977
|
-
"name": "releaseTime",
|
|
4978
|
-
"type": "uint256"
|
|
4979
|
-
},
|
|
4980
|
-
{
|
|
4981
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
4982
|
-
"name": "status",
|
|
4983
|
-
"type": "uint8"
|
|
4984
|
-
},
|
|
4985
|
-
{
|
|
4986
|
-
"components": [
|
|
4987
|
-
{
|
|
4988
|
-
"internalType": "address",
|
|
4989
|
-
"name": "requester",
|
|
4990
|
-
"type": "address"
|
|
4991
|
-
},
|
|
4992
|
-
{
|
|
4993
|
-
"internalType": "address",
|
|
4994
|
-
"name": "target",
|
|
4995
|
-
"type": "address"
|
|
4996
|
-
},
|
|
4997
|
-
{
|
|
4998
|
-
"internalType": "uint256",
|
|
4999
|
-
"name": "value",
|
|
5000
|
-
"type": "uint256"
|
|
5001
|
-
},
|
|
5002
|
-
{
|
|
5003
|
-
"internalType": "uint256",
|
|
5004
|
-
"name": "gasLimit",
|
|
5005
|
-
"type": "uint256"
|
|
5006
|
-
},
|
|
5007
|
-
{
|
|
5008
|
-
"internalType": "bytes32",
|
|
5009
|
-
"name": "operationType",
|
|
5010
|
-
"type": "bytes32"
|
|
5011
|
-
},
|
|
5012
|
-
{
|
|
5013
|
-
"internalType": "bytes4",
|
|
5014
|
-
"name": "executionSelector",
|
|
5015
|
-
"type": "bytes4"
|
|
3222
|
+
"internalType": "uint256",
|
|
3223
|
+
"name": "maxGasPrice",
|
|
3224
|
+
"type": "uint256"
|
|
5016
3225
|
},
|
|
5017
3226
|
{
|
|
5018
|
-
"internalType": "
|
|
5019
|
-
"name": "
|
|
5020
|
-
"type": "
|
|
3227
|
+
"internalType": "address",
|
|
3228
|
+
"name": "signer",
|
|
3229
|
+
"type": "address"
|
|
5021
3230
|
}
|
|
5022
3231
|
],
|
|
5023
|
-
"internalType": "struct EngineBlox.
|
|
3232
|
+
"internalType": "struct EngineBlox.MetaTxParams",
|
|
5024
3233
|
"name": "params",
|
|
5025
3234
|
"type": "tuple"
|
|
5026
3235
|
},
|
|
@@ -5031,157 +3240,274 @@
|
|
|
5031
3240
|
},
|
|
5032
3241
|
{
|
|
5033
3242
|
"internalType": "bytes",
|
|
5034
|
-
"name": "
|
|
3243
|
+
"name": "signature",
|
|
5035
3244
|
"type": "bytes"
|
|
5036
3245
|
},
|
|
5037
3246
|
{
|
|
5038
|
-
"
|
|
5039
|
-
|
|
5040
|
-
|
|
5041
|
-
"name": "recipient",
|
|
5042
|
-
"type": "address"
|
|
5043
|
-
},
|
|
5044
|
-
{
|
|
5045
|
-
"internalType": "uint256",
|
|
5046
|
-
"name": "nativeTokenAmount",
|
|
5047
|
-
"type": "uint256"
|
|
5048
|
-
},
|
|
5049
|
-
{
|
|
5050
|
-
"internalType": "address",
|
|
5051
|
-
"name": "erc20TokenAddress",
|
|
5052
|
-
"type": "address"
|
|
5053
|
-
},
|
|
5054
|
-
{
|
|
5055
|
-
"internalType": "uint256",
|
|
5056
|
-
"name": "erc20TokenAmount",
|
|
5057
|
-
"type": "uint256"
|
|
5058
|
-
}
|
|
5059
|
-
],
|
|
5060
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
5061
|
-
"name": "payment",
|
|
5062
|
-
"type": "tuple"
|
|
3247
|
+
"internalType": "bytes",
|
|
3248
|
+
"name": "data",
|
|
3249
|
+
"type": "bytes"
|
|
5063
3250
|
}
|
|
5064
3251
|
],
|
|
5065
|
-
"internalType": "struct EngineBlox.
|
|
5066
|
-
"name": "",
|
|
3252
|
+
"internalType": "struct EngineBlox.MetaTransaction",
|
|
3253
|
+
"name": "metaTx",
|
|
5067
3254
|
"type": "tuple"
|
|
5068
3255
|
}
|
|
5069
3256
|
],
|
|
3257
|
+
"name": "updateBroadcasterApprovalWithMetaTx",
|
|
3258
|
+
"outputs": [
|
|
3259
|
+
{
|
|
3260
|
+
"internalType": "uint256",
|
|
3261
|
+
"name": "",
|
|
3262
|
+
"type": "uint256"
|
|
3263
|
+
}
|
|
3264
|
+
],
|
|
5070
3265
|
"stateMutability": "nonpayable",
|
|
5071
3266
|
"type": "function"
|
|
5072
3267
|
},
|
|
5073
3268
|
{
|
|
5074
3269
|
"inputs": [
|
|
5075
3270
|
{
|
|
5076
|
-
"internalType": "
|
|
5077
|
-
"name": "
|
|
5078
|
-
"type": "
|
|
3271
|
+
"internalType": "uint256",
|
|
3272
|
+
"name": "txId",
|
|
3273
|
+
"type": "uint256"
|
|
5079
3274
|
}
|
|
5080
3275
|
],
|
|
5081
|
-
"name": "
|
|
3276
|
+
"name": "updateBroadcasterCancellation",
|
|
5082
3277
|
"outputs": [
|
|
3278
|
+
{
|
|
3279
|
+
"internalType": "uint256",
|
|
3280
|
+
"name": "",
|
|
3281
|
+
"type": "uint256"
|
|
3282
|
+
}
|
|
3283
|
+
],
|
|
3284
|
+
"stateMutability": "nonpayable",
|
|
3285
|
+
"type": "function"
|
|
3286
|
+
},
|
|
3287
|
+
{
|
|
3288
|
+
"inputs": [
|
|
5083
3289
|
{
|
|
5084
3290
|
"components": [
|
|
5085
|
-
{
|
|
5086
|
-
"internalType": "uint256",
|
|
5087
|
-
"name": "txId",
|
|
5088
|
-
"type": "uint256"
|
|
5089
|
-
},
|
|
5090
|
-
{
|
|
5091
|
-
"internalType": "uint256",
|
|
5092
|
-
"name": "releaseTime",
|
|
5093
|
-
"type": "uint256"
|
|
5094
|
-
},
|
|
5095
|
-
{
|
|
5096
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
5097
|
-
"name": "status",
|
|
5098
|
-
"type": "uint8"
|
|
5099
|
-
},
|
|
5100
3291
|
{
|
|
5101
3292
|
"components": [
|
|
5102
|
-
{
|
|
5103
|
-
"internalType": "address",
|
|
5104
|
-
"name": "requester",
|
|
5105
|
-
"type": "address"
|
|
5106
|
-
},
|
|
5107
|
-
{
|
|
5108
|
-
"internalType": "address",
|
|
5109
|
-
"name": "target",
|
|
5110
|
-
"type": "address"
|
|
5111
|
-
},
|
|
5112
3293
|
{
|
|
5113
3294
|
"internalType": "uint256",
|
|
5114
|
-
"name": "
|
|
3295
|
+
"name": "txId",
|
|
5115
3296
|
"type": "uint256"
|
|
5116
3297
|
},
|
|
5117
3298
|
{
|
|
5118
3299
|
"internalType": "uint256",
|
|
5119
|
-
"name": "
|
|
3300
|
+
"name": "releaseTime",
|
|
5120
3301
|
"type": "uint256"
|
|
5121
3302
|
},
|
|
5122
3303
|
{
|
|
5123
|
-
"internalType": "
|
|
5124
|
-
"name": "
|
|
5125
|
-
"type": "
|
|
3304
|
+
"internalType": "enum EngineBlox.TxStatus",
|
|
3305
|
+
"name": "status",
|
|
3306
|
+
"type": "uint8"
|
|
5126
3307
|
},
|
|
5127
3308
|
{
|
|
5128
|
-
"
|
|
5129
|
-
|
|
5130
|
-
|
|
3309
|
+
"components": [
|
|
3310
|
+
{
|
|
3311
|
+
"internalType": "address",
|
|
3312
|
+
"name": "requester",
|
|
3313
|
+
"type": "address"
|
|
3314
|
+
},
|
|
3315
|
+
{
|
|
3316
|
+
"internalType": "address",
|
|
3317
|
+
"name": "target",
|
|
3318
|
+
"type": "address"
|
|
3319
|
+
},
|
|
3320
|
+
{
|
|
3321
|
+
"internalType": "uint256",
|
|
3322
|
+
"name": "value",
|
|
3323
|
+
"type": "uint256"
|
|
3324
|
+
},
|
|
3325
|
+
{
|
|
3326
|
+
"internalType": "uint256",
|
|
3327
|
+
"name": "gasLimit",
|
|
3328
|
+
"type": "uint256"
|
|
3329
|
+
},
|
|
3330
|
+
{
|
|
3331
|
+
"internalType": "bytes32",
|
|
3332
|
+
"name": "operationType",
|
|
3333
|
+
"type": "bytes32"
|
|
3334
|
+
},
|
|
3335
|
+
{
|
|
3336
|
+
"internalType": "bytes4",
|
|
3337
|
+
"name": "executionSelector",
|
|
3338
|
+
"type": "bytes4"
|
|
3339
|
+
},
|
|
3340
|
+
{
|
|
3341
|
+
"internalType": "bytes",
|
|
3342
|
+
"name": "executionParams",
|
|
3343
|
+
"type": "bytes"
|
|
3344
|
+
}
|
|
3345
|
+
],
|
|
3346
|
+
"internalType": "struct EngineBlox.TxParams",
|
|
3347
|
+
"name": "params",
|
|
3348
|
+
"type": "tuple"
|
|
3349
|
+
},
|
|
3350
|
+
{
|
|
3351
|
+
"internalType": "bytes32",
|
|
3352
|
+
"name": "message",
|
|
3353
|
+
"type": "bytes32"
|
|
5131
3354
|
},
|
|
5132
3355
|
{
|
|
5133
3356
|
"internalType": "bytes",
|
|
5134
|
-
"name": "
|
|
3357
|
+
"name": "result",
|
|
5135
3358
|
"type": "bytes"
|
|
3359
|
+
},
|
|
3360
|
+
{
|
|
3361
|
+
"components": [
|
|
3362
|
+
{
|
|
3363
|
+
"internalType": "address",
|
|
3364
|
+
"name": "recipient",
|
|
3365
|
+
"type": "address"
|
|
3366
|
+
},
|
|
3367
|
+
{
|
|
3368
|
+
"internalType": "uint256",
|
|
3369
|
+
"name": "nativeTokenAmount",
|
|
3370
|
+
"type": "uint256"
|
|
3371
|
+
},
|
|
3372
|
+
{
|
|
3373
|
+
"internalType": "address",
|
|
3374
|
+
"name": "erc20TokenAddress",
|
|
3375
|
+
"type": "address"
|
|
3376
|
+
},
|
|
3377
|
+
{
|
|
3378
|
+
"internalType": "uint256",
|
|
3379
|
+
"name": "erc20TokenAmount",
|
|
3380
|
+
"type": "uint256"
|
|
3381
|
+
}
|
|
3382
|
+
],
|
|
3383
|
+
"internalType": "struct EngineBlox.PaymentDetails",
|
|
3384
|
+
"name": "payment",
|
|
3385
|
+
"type": "tuple"
|
|
5136
3386
|
}
|
|
5137
3387
|
],
|
|
5138
|
-
"internalType": "struct EngineBlox.
|
|
5139
|
-
"name": "
|
|
3388
|
+
"internalType": "struct EngineBlox.TxRecord",
|
|
3389
|
+
"name": "txRecord",
|
|
5140
3390
|
"type": "tuple"
|
|
5141
3391
|
},
|
|
5142
|
-
{
|
|
5143
|
-
"internalType": "bytes32",
|
|
5144
|
-
"name": "message",
|
|
5145
|
-
"type": "bytes32"
|
|
5146
|
-
},
|
|
5147
|
-
{
|
|
5148
|
-
"internalType": "bytes",
|
|
5149
|
-
"name": "result",
|
|
5150
|
-
"type": "bytes"
|
|
5151
|
-
},
|
|
5152
3392
|
{
|
|
5153
3393
|
"components": [
|
|
5154
3394
|
{
|
|
5155
|
-
"internalType": "
|
|
5156
|
-
"name": "
|
|
5157
|
-
"type": "
|
|
3395
|
+
"internalType": "uint256",
|
|
3396
|
+
"name": "chainId",
|
|
3397
|
+
"type": "uint256"
|
|
5158
3398
|
},
|
|
5159
3399
|
{
|
|
5160
3400
|
"internalType": "uint256",
|
|
5161
|
-
"name": "
|
|
3401
|
+
"name": "nonce",
|
|
5162
3402
|
"type": "uint256"
|
|
5163
3403
|
},
|
|
5164
3404
|
{
|
|
5165
3405
|
"internalType": "address",
|
|
5166
|
-
"name": "
|
|
3406
|
+
"name": "handlerContract",
|
|
5167
3407
|
"type": "address"
|
|
5168
3408
|
},
|
|
3409
|
+
{
|
|
3410
|
+
"internalType": "bytes4",
|
|
3411
|
+
"name": "handlerSelector",
|
|
3412
|
+
"type": "bytes4"
|
|
3413
|
+
},
|
|
3414
|
+
{
|
|
3415
|
+
"internalType": "enum EngineBlox.TxAction",
|
|
3416
|
+
"name": "action",
|
|
3417
|
+
"type": "uint8"
|
|
3418
|
+
},
|
|
5169
3419
|
{
|
|
5170
3420
|
"internalType": "uint256",
|
|
5171
|
-
"name": "
|
|
3421
|
+
"name": "deadline",
|
|
3422
|
+
"type": "uint256"
|
|
3423
|
+
},
|
|
3424
|
+
{
|
|
3425
|
+
"internalType": "uint256",
|
|
3426
|
+
"name": "maxGasPrice",
|
|
5172
3427
|
"type": "uint256"
|
|
3428
|
+
},
|
|
3429
|
+
{
|
|
3430
|
+
"internalType": "address",
|
|
3431
|
+
"name": "signer",
|
|
3432
|
+
"type": "address"
|
|
5173
3433
|
}
|
|
5174
3434
|
],
|
|
5175
|
-
"internalType": "struct EngineBlox.
|
|
5176
|
-
"name": "
|
|
3435
|
+
"internalType": "struct EngineBlox.MetaTxParams",
|
|
3436
|
+
"name": "params",
|
|
5177
3437
|
"type": "tuple"
|
|
3438
|
+
},
|
|
3439
|
+
{
|
|
3440
|
+
"internalType": "bytes32",
|
|
3441
|
+
"name": "message",
|
|
3442
|
+
"type": "bytes32"
|
|
3443
|
+
},
|
|
3444
|
+
{
|
|
3445
|
+
"internalType": "bytes",
|
|
3446
|
+
"name": "signature",
|
|
3447
|
+
"type": "bytes"
|
|
3448
|
+
},
|
|
3449
|
+
{
|
|
3450
|
+
"internalType": "bytes",
|
|
3451
|
+
"name": "data",
|
|
3452
|
+
"type": "bytes"
|
|
5178
3453
|
}
|
|
5179
3454
|
],
|
|
5180
|
-
"internalType": "struct EngineBlox.
|
|
5181
|
-
"name": "",
|
|
3455
|
+
"internalType": "struct EngineBlox.MetaTransaction",
|
|
3456
|
+
"name": "metaTx",
|
|
5182
3457
|
"type": "tuple"
|
|
5183
3458
|
}
|
|
5184
3459
|
],
|
|
3460
|
+
"name": "updateBroadcasterCancellationWithMetaTx",
|
|
3461
|
+
"outputs": [
|
|
3462
|
+
{
|
|
3463
|
+
"internalType": "uint256",
|
|
3464
|
+
"name": "",
|
|
3465
|
+
"type": "uint256"
|
|
3466
|
+
}
|
|
3467
|
+
],
|
|
3468
|
+
"stateMutability": "nonpayable",
|
|
3469
|
+
"type": "function"
|
|
3470
|
+
},
|
|
3471
|
+
{
|
|
3472
|
+
"inputs": [
|
|
3473
|
+
{
|
|
3474
|
+
"internalType": "uint256",
|
|
3475
|
+
"name": "txId",
|
|
3476
|
+
"type": "uint256"
|
|
3477
|
+
}
|
|
3478
|
+
],
|
|
3479
|
+
"name": "updateBroadcasterDelayedApproval",
|
|
3480
|
+
"outputs": [
|
|
3481
|
+
{
|
|
3482
|
+
"internalType": "uint256",
|
|
3483
|
+
"name": "",
|
|
3484
|
+
"type": "uint256"
|
|
3485
|
+
}
|
|
3486
|
+
],
|
|
3487
|
+
"stateMutability": "nonpayable",
|
|
3488
|
+
"type": "function"
|
|
3489
|
+
},
|
|
3490
|
+
{
|
|
3491
|
+
"inputs": [
|
|
3492
|
+
{
|
|
3493
|
+
"internalType": "address",
|
|
3494
|
+
"name": "newBroadcaster",
|
|
3495
|
+
"type": "address"
|
|
3496
|
+
},
|
|
3497
|
+
{
|
|
3498
|
+
"internalType": "uint256",
|
|
3499
|
+
"name": "location",
|
|
3500
|
+
"type": "uint256"
|
|
3501
|
+
}
|
|
3502
|
+
],
|
|
3503
|
+
"name": "updateBroadcasterRequest",
|
|
3504
|
+
"outputs": [
|
|
3505
|
+
{
|
|
3506
|
+
"internalType": "uint256",
|
|
3507
|
+
"name": "txId",
|
|
3508
|
+
"type": "uint256"
|
|
3509
|
+
}
|
|
3510
|
+
],
|
|
5185
3511
|
"stateMutability": "nonpayable",
|
|
5186
3512
|
"type": "function"
|
|
5187
3513
|
},
|
|
@@ -5361,105 +3687,9 @@
|
|
|
5361
3687
|
"name": "updateRecoveryRequestAndApprove",
|
|
5362
3688
|
"outputs": [
|
|
5363
3689
|
{
|
|
5364
|
-
"
|
|
5365
|
-
{
|
|
5366
|
-
"internalType": "uint256",
|
|
5367
|
-
"name": "txId",
|
|
5368
|
-
"type": "uint256"
|
|
5369
|
-
},
|
|
5370
|
-
{
|
|
5371
|
-
"internalType": "uint256",
|
|
5372
|
-
"name": "releaseTime",
|
|
5373
|
-
"type": "uint256"
|
|
5374
|
-
},
|
|
5375
|
-
{
|
|
5376
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
5377
|
-
"name": "status",
|
|
5378
|
-
"type": "uint8"
|
|
5379
|
-
},
|
|
5380
|
-
{
|
|
5381
|
-
"components": [
|
|
5382
|
-
{
|
|
5383
|
-
"internalType": "address",
|
|
5384
|
-
"name": "requester",
|
|
5385
|
-
"type": "address"
|
|
5386
|
-
},
|
|
5387
|
-
{
|
|
5388
|
-
"internalType": "address",
|
|
5389
|
-
"name": "target",
|
|
5390
|
-
"type": "address"
|
|
5391
|
-
},
|
|
5392
|
-
{
|
|
5393
|
-
"internalType": "uint256",
|
|
5394
|
-
"name": "value",
|
|
5395
|
-
"type": "uint256"
|
|
5396
|
-
},
|
|
5397
|
-
{
|
|
5398
|
-
"internalType": "uint256",
|
|
5399
|
-
"name": "gasLimit",
|
|
5400
|
-
"type": "uint256"
|
|
5401
|
-
},
|
|
5402
|
-
{
|
|
5403
|
-
"internalType": "bytes32",
|
|
5404
|
-
"name": "operationType",
|
|
5405
|
-
"type": "bytes32"
|
|
5406
|
-
},
|
|
5407
|
-
{
|
|
5408
|
-
"internalType": "bytes4",
|
|
5409
|
-
"name": "executionSelector",
|
|
5410
|
-
"type": "bytes4"
|
|
5411
|
-
},
|
|
5412
|
-
{
|
|
5413
|
-
"internalType": "bytes",
|
|
5414
|
-
"name": "executionParams",
|
|
5415
|
-
"type": "bytes"
|
|
5416
|
-
}
|
|
5417
|
-
],
|
|
5418
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
5419
|
-
"name": "params",
|
|
5420
|
-
"type": "tuple"
|
|
5421
|
-
},
|
|
5422
|
-
{
|
|
5423
|
-
"internalType": "bytes32",
|
|
5424
|
-
"name": "message",
|
|
5425
|
-
"type": "bytes32"
|
|
5426
|
-
},
|
|
5427
|
-
{
|
|
5428
|
-
"internalType": "bytes",
|
|
5429
|
-
"name": "result",
|
|
5430
|
-
"type": "bytes"
|
|
5431
|
-
},
|
|
5432
|
-
{
|
|
5433
|
-
"components": [
|
|
5434
|
-
{
|
|
5435
|
-
"internalType": "address",
|
|
5436
|
-
"name": "recipient",
|
|
5437
|
-
"type": "address"
|
|
5438
|
-
},
|
|
5439
|
-
{
|
|
5440
|
-
"internalType": "uint256",
|
|
5441
|
-
"name": "nativeTokenAmount",
|
|
5442
|
-
"type": "uint256"
|
|
5443
|
-
},
|
|
5444
|
-
{
|
|
5445
|
-
"internalType": "address",
|
|
5446
|
-
"name": "erc20TokenAddress",
|
|
5447
|
-
"type": "address"
|
|
5448
|
-
},
|
|
5449
|
-
{
|
|
5450
|
-
"internalType": "uint256",
|
|
5451
|
-
"name": "erc20TokenAmount",
|
|
5452
|
-
"type": "uint256"
|
|
5453
|
-
}
|
|
5454
|
-
],
|
|
5455
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
5456
|
-
"name": "payment",
|
|
5457
|
-
"type": "tuple"
|
|
5458
|
-
}
|
|
5459
|
-
],
|
|
5460
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3690
|
+
"internalType": "uint256",
|
|
5461
3691
|
"name": "",
|
|
5462
|
-
"type": "
|
|
3692
|
+
"type": "uint256"
|
|
5463
3693
|
}
|
|
5464
3694
|
],
|
|
5465
3695
|
"stateMutability": "nonpayable",
|
|
@@ -5641,105 +3871,9 @@
|
|
|
5641
3871
|
"name": "updateTimeLockRequestAndApprove",
|
|
5642
3872
|
"outputs": [
|
|
5643
3873
|
{
|
|
5644
|
-
"
|
|
5645
|
-
{
|
|
5646
|
-
"internalType": "uint256",
|
|
5647
|
-
"name": "txId",
|
|
5648
|
-
"type": "uint256"
|
|
5649
|
-
},
|
|
5650
|
-
{
|
|
5651
|
-
"internalType": "uint256",
|
|
5652
|
-
"name": "releaseTime",
|
|
5653
|
-
"type": "uint256"
|
|
5654
|
-
},
|
|
5655
|
-
{
|
|
5656
|
-
"internalType": "enum EngineBlox.TxStatus",
|
|
5657
|
-
"name": "status",
|
|
5658
|
-
"type": "uint8"
|
|
5659
|
-
},
|
|
5660
|
-
{
|
|
5661
|
-
"components": [
|
|
5662
|
-
{
|
|
5663
|
-
"internalType": "address",
|
|
5664
|
-
"name": "requester",
|
|
5665
|
-
"type": "address"
|
|
5666
|
-
},
|
|
5667
|
-
{
|
|
5668
|
-
"internalType": "address",
|
|
5669
|
-
"name": "target",
|
|
5670
|
-
"type": "address"
|
|
5671
|
-
},
|
|
5672
|
-
{
|
|
5673
|
-
"internalType": "uint256",
|
|
5674
|
-
"name": "value",
|
|
5675
|
-
"type": "uint256"
|
|
5676
|
-
},
|
|
5677
|
-
{
|
|
5678
|
-
"internalType": "uint256",
|
|
5679
|
-
"name": "gasLimit",
|
|
5680
|
-
"type": "uint256"
|
|
5681
|
-
},
|
|
5682
|
-
{
|
|
5683
|
-
"internalType": "bytes32",
|
|
5684
|
-
"name": "operationType",
|
|
5685
|
-
"type": "bytes32"
|
|
5686
|
-
},
|
|
5687
|
-
{
|
|
5688
|
-
"internalType": "bytes4",
|
|
5689
|
-
"name": "executionSelector",
|
|
5690
|
-
"type": "bytes4"
|
|
5691
|
-
},
|
|
5692
|
-
{
|
|
5693
|
-
"internalType": "bytes",
|
|
5694
|
-
"name": "executionParams",
|
|
5695
|
-
"type": "bytes"
|
|
5696
|
-
}
|
|
5697
|
-
],
|
|
5698
|
-
"internalType": "struct EngineBlox.TxParams",
|
|
5699
|
-
"name": "params",
|
|
5700
|
-
"type": "tuple"
|
|
5701
|
-
},
|
|
5702
|
-
{
|
|
5703
|
-
"internalType": "bytes32",
|
|
5704
|
-
"name": "message",
|
|
5705
|
-
"type": "bytes32"
|
|
5706
|
-
},
|
|
5707
|
-
{
|
|
5708
|
-
"internalType": "bytes",
|
|
5709
|
-
"name": "result",
|
|
5710
|
-
"type": "bytes"
|
|
5711
|
-
},
|
|
5712
|
-
{
|
|
5713
|
-
"components": [
|
|
5714
|
-
{
|
|
5715
|
-
"internalType": "address",
|
|
5716
|
-
"name": "recipient",
|
|
5717
|
-
"type": "address"
|
|
5718
|
-
},
|
|
5719
|
-
{
|
|
5720
|
-
"internalType": "uint256",
|
|
5721
|
-
"name": "nativeTokenAmount",
|
|
5722
|
-
"type": "uint256"
|
|
5723
|
-
},
|
|
5724
|
-
{
|
|
5725
|
-
"internalType": "address",
|
|
5726
|
-
"name": "erc20TokenAddress",
|
|
5727
|
-
"type": "address"
|
|
5728
|
-
},
|
|
5729
|
-
{
|
|
5730
|
-
"internalType": "uint256",
|
|
5731
|
-
"name": "erc20TokenAmount",
|
|
5732
|
-
"type": "uint256"
|
|
5733
|
-
}
|
|
5734
|
-
],
|
|
5735
|
-
"internalType": "struct EngineBlox.PaymentDetails",
|
|
5736
|
-
"name": "payment",
|
|
5737
|
-
"type": "tuple"
|
|
5738
|
-
}
|
|
5739
|
-
],
|
|
5740
|
-
"internalType": "struct EngineBlox.TxRecord",
|
|
3874
|
+
"internalType": "uint256",
|
|
5741
3875
|
"name": "",
|
|
5742
|
-
"type": "
|
|
3876
|
+
"type": "uint256"
|
|
5743
3877
|
}
|
|
5744
3878
|
],
|
|
5745
3879
|
"stateMutability": "nonpayable",
|
|
@@ -5800,12 +3934,5 @@
|
|
|
5800
3934
|
],
|
|
5801
3935
|
"stateMutability": "view",
|
|
5802
3936
|
"type": "function"
|
|
5803
|
-
},
|
|
5804
|
-
{
|
|
5805
|
-
"inputs": [],
|
|
5806
|
-
"name": "deposit",
|
|
5807
|
-
"outputs": [],
|
|
5808
|
-
"stateMutability": "payable",
|
|
5809
|
-
"type": "function"
|
|
5810
3937
|
}
|
|
5811
3938
|
]
|