@zoralabs/comments-contracts 0.0.2 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +71 -65
- package/CHANGELOG.md +15 -0
- package/abis/CommentsImpl.json +0 -5
- package/abis/CommentsPermitTest.json +2 -2
- package/abis/CommentsTest.json +30 -2
- package/abis/Comments_mintAndCommentTest.json +8 -1
- package/abis/Comments_smartWallet.json +36 -1
- package/abis/ICoinComments.json +53 -0
- package/abis/IComments.json +0 -5
- package/abis/IProtocolRewards.json +18 -0
- package/abis/MockCoin.json +395 -0
- package/abis/Vm.json +1482 -111
- package/abis/VmSafe.json +856 -32
- package/addresses/1.json +2 -2
- package/addresses/10.json +2 -2
- package/addresses/42161.json +2 -2
- package/addresses/7777777.json +2 -2
- package/addresses/81457.json +2 -2
- package/addresses/8453.json +2 -2
- package/addresses/84532.json +2 -2
- package/addresses/999999999.json +2 -2
- package/dist/index.cjs +133 -134
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +130 -131
- package/dist/index.js.map +1 -1
- package/dist/wagmiGenerated.d.ts +65 -69
- package/dist/wagmiGenerated.d.ts.map +1 -1
- package/package/wagmiGenerated.ts +65 -66
- package/package.json +9 -8
- package/script/storage-check.sh +1 -1
- package/src/CommentsImpl.sol +41 -26
- package/src/interfaces/ICoinComments.sol +8 -0
- package/src/interfaces/IComments.sol +0 -3
- package/src/version/ContractVersionBase.sol +1 -1
- package/test/Comments.t.sol +68 -4
- package/test/CommentsTestBase.sol +7 -0
- package/test/Comments_delegateComment.t.sol +19 -2
- package/test/Comments_permit.t.sol +3 -3
- package/test/Comments_smartWallet.t.sol +97 -2
- package/test/mocks/MockCoin.sol +42 -0
- package/script/bundle-abis.ts +0 -109
- package/script/update-contract-version.ts +0 -63
package/abis/Vm.json
CHANGED
|
@@ -2679,6 +2679,13 @@
|
|
|
2679
2679
|
"outputs": [],
|
|
2680
2680
|
"stateMutability": "pure"
|
|
2681
2681
|
},
|
|
2682
|
+
{
|
|
2683
|
+
"type": "function",
|
|
2684
|
+
"name": "assumeNoRevert",
|
|
2685
|
+
"inputs": [],
|
|
2686
|
+
"outputs": [],
|
|
2687
|
+
"stateMutability": "pure"
|
|
2688
|
+
},
|
|
2682
2689
|
{
|
|
2683
2690
|
"type": "function",
|
|
2684
2691
|
"name": "blobBaseFee",
|
|
@@ -2716,7 +2723,7 @@
|
|
|
2716
2723
|
}
|
|
2717
2724
|
],
|
|
2718
2725
|
"outputs": [],
|
|
2719
|
-
"stateMutability": "
|
|
2726
|
+
"stateMutability": "pure"
|
|
2720
2727
|
},
|
|
2721
2728
|
{
|
|
2722
2729
|
"type": "function",
|
|
@@ -2734,7 +2741,7 @@
|
|
|
2734
2741
|
}
|
|
2735
2742
|
],
|
|
2736
2743
|
"outputs": [],
|
|
2737
|
-
"stateMutability": "
|
|
2744
|
+
"stateMutability": "pure"
|
|
2738
2745
|
},
|
|
2739
2746
|
{
|
|
2740
2747
|
"type": "function",
|
|
@@ -2769,6 +2776,19 @@
|
|
|
2769
2776
|
"outputs": [],
|
|
2770
2777
|
"stateMutability": "nonpayable"
|
|
2771
2778
|
},
|
|
2779
|
+
{
|
|
2780
|
+
"type": "function",
|
|
2781
|
+
"name": "broadcastRawTransaction",
|
|
2782
|
+
"inputs": [
|
|
2783
|
+
{
|
|
2784
|
+
"name": "data",
|
|
2785
|
+
"type": "bytes",
|
|
2786
|
+
"internalType": "bytes"
|
|
2787
|
+
}
|
|
2788
|
+
],
|
|
2789
|
+
"outputs": [],
|
|
2790
|
+
"stateMutability": "nonpayable"
|
|
2791
|
+
},
|
|
2772
2792
|
{
|
|
2773
2793
|
"type": "function",
|
|
2774
2794
|
"name": "chainId",
|
|
@@ -2789,6 +2809,24 @@
|
|
|
2789
2809
|
"outputs": [],
|
|
2790
2810
|
"stateMutability": "nonpayable"
|
|
2791
2811
|
},
|
|
2812
|
+
{
|
|
2813
|
+
"type": "function",
|
|
2814
|
+
"name": "cloneAccount",
|
|
2815
|
+
"inputs": [
|
|
2816
|
+
{
|
|
2817
|
+
"name": "source",
|
|
2818
|
+
"type": "address",
|
|
2819
|
+
"internalType": "address"
|
|
2820
|
+
},
|
|
2821
|
+
{
|
|
2822
|
+
"name": "target",
|
|
2823
|
+
"type": "address",
|
|
2824
|
+
"internalType": "address"
|
|
2825
|
+
}
|
|
2826
|
+
],
|
|
2827
|
+
"outputs": [],
|
|
2828
|
+
"stateMutability": "nonpayable"
|
|
2829
|
+
},
|
|
2792
2830
|
{
|
|
2793
2831
|
"type": "function",
|
|
2794
2832
|
"name": "closeFile",
|
|
@@ -2916,6 +2954,24 @@
|
|
|
2916
2954
|
],
|
|
2917
2955
|
"stateMutability": "nonpayable"
|
|
2918
2956
|
},
|
|
2957
|
+
{
|
|
2958
|
+
"type": "function",
|
|
2959
|
+
"name": "copyStorage",
|
|
2960
|
+
"inputs": [
|
|
2961
|
+
{
|
|
2962
|
+
"name": "from",
|
|
2963
|
+
"type": "address",
|
|
2964
|
+
"internalType": "address"
|
|
2965
|
+
},
|
|
2966
|
+
{
|
|
2967
|
+
"name": "to",
|
|
2968
|
+
"type": "address",
|
|
2969
|
+
"internalType": "address"
|
|
2970
|
+
}
|
|
2971
|
+
],
|
|
2972
|
+
"outputs": [],
|
|
2973
|
+
"stateMutability": "nonpayable"
|
|
2974
|
+
},
|
|
2919
2975
|
{
|
|
2920
2976
|
"type": "function",
|
|
2921
2977
|
"name": "createDir",
|
|
@@ -3240,6 +3296,75 @@
|
|
|
3240
3296
|
"outputs": [],
|
|
3241
3297
|
"stateMutability": "nonpayable"
|
|
3242
3298
|
},
|
|
3299
|
+
{
|
|
3300
|
+
"type": "function",
|
|
3301
|
+
"name": "deleteStateSnapshot",
|
|
3302
|
+
"inputs": [
|
|
3303
|
+
{
|
|
3304
|
+
"name": "snapshotId",
|
|
3305
|
+
"type": "uint256",
|
|
3306
|
+
"internalType": "uint256"
|
|
3307
|
+
}
|
|
3308
|
+
],
|
|
3309
|
+
"outputs": [
|
|
3310
|
+
{
|
|
3311
|
+
"name": "success",
|
|
3312
|
+
"type": "bool",
|
|
3313
|
+
"internalType": "bool"
|
|
3314
|
+
}
|
|
3315
|
+
],
|
|
3316
|
+
"stateMutability": "nonpayable"
|
|
3317
|
+
},
|
|
3318
|
+
{
|
|
3319
|
+
"type": "function",
|
|
3320
|
+
"name": "deleteStateSnapshots",
|
|
3321
|
+
"inputs": [],
|
|
3322
|
+
"outputs": [],
|
|
3323
|
+
"stateMutability": "nonpayable"
|
|
3324
|
+
},
|
|
3325
|
+
{
|
|
3326
|
+
"type": "function",
|
|
3327
|
+
"name": "deployCode",
|
|
3328
|
+
"inputs": [
|
|
3329
|
+
{
|
|
3330
|
+
"name": "artifactPath",
|
|
3331
|
+
"type": "string",
|
|
3332
|
+
"internalType": "string"
|
|
3333
|
+
},
|
|
3334
|
+
{
|
|
3335
|
+
"name": "constructorArgs",
|
|
3336
|
+
"type": "bytes",
|
|
3337
|
+
"internalType": "bytes"
|
|
3338
|
+
}
|
|
3339
|
+
],
|
|
3340
|
+
"outputs": [
|
|
3341
|
+
{
|
|
3342
|
+
"name": "deployedAddress",
|
|
3343
|
+
"type": "address",
|
|
3344
|
+
"internalType": "address"
|
|
3345
|
+
}
|
|
3346
|
+
],
|
|
3347
|
+
"stateMutability": "nonpayable"
|
|
3348
|
+
},
|
|
3349
|
+
{
|
|
3350
|
+
"type": "function",
|
|
3351
|
+
"name": "deployCode",
|
|
3352
|
+
"inputs": [
|
|
3353
|
+
{
|
|
3354
|
+
"name": "artifactPath",
|
|
3355
|
+
"type": "string",
|
|
3356
|
+
"internalType": "string"
|
|
3357
|
+
}
|
|
3358
|
+
],
|
|
3359
|
+
"outputs": [
|
|
3360
|
+
{
|
|
3361
|
+
"name": "deployedAddress",
|
|
3362
|
+
"type": "address",
|
|
3363
|
+
"internalType": "address"
|
|
3364
|
+
}
|
|
3365
|
+
],
|
|
3366
|
+
"stateMutability": "nonpayable"
|
|
3367
|
+
},
|
|
3243
3368
|
{
|
|
3244
3369
|
"type": "function",
|
|
3245
3370
|
"name": "deriveKey",
|
|
@@ -4507,12 +4632,19 @@
|
|
|
4507
4632
|
},
|
|
4508
4633
|
{
|
|
4509
4634
|
"type": "function",
|
|
4510
|
-
"name": "
|
|
4635
|
+
"name": "expectEmitAnonymous",
|
|
4636
|
+
"inputs": [],
|
|
4637
|
+
"outputs": [],
|
|
4638
|
+
"stateMutability": "nonpayable"
|
|
4639
|
+
},
|
|
4640
|
+
{
|
|
4641
|
+
"type": "function",
|
|
4642
|
+
"name": "expectEmitAnonymous",
|
|
4511
4643
|
"inputs": [
|
|
4512
4644
|
{
|
|
4513
|
-
"name": "
|
|
4514
|
-
"type": "
|
|
4515
|
-
"internalType": "
|
|
4645
|
+
"name": "emitter",
|
|
4646
|
+
"type": "address",
|
|
4647
|
+
"internalType": "address"
|
|
4516
4648
|
}
|
|
4517
4649
|
],
|
|
4518
4650
|
"outputs": [],
|
|
@@ -4520,12 +4652,37 @@
|
|
|
4520
4652
|
},
|
|
4521
4653
|
{
|
|
4522
4654
|
"type": "function",
|
|
4523
|
-
"name": "
|
|
4655
|
+
"name": "expectEmitAnonymous",
|
|
4524
4656
|
"inputs": [
|
|
4525
4657
|
{
|
|
4526
|
-
"name": "
|
|
4527
|
-
"type": "
|
|
4528
|
-
"internalType": "
|
|
4658
|
+
"name": "checkTopic0",
|
|
4659
|
+
"type": "bool",
|
|
4660
|
+
"internalType": "bool"
|
|
4661
|
+
},
|
|
4662
|
+
{
|
|
4663
|
+
"name": "checkTopic1",
|
|
4664
|
+
"type": "bool",
|
|
4665
|
+
"internalType": "bool"
|
|
4666
|
+
},
|
|
4667
|
+
{
|
|
4668
|
+
"name": "checkTopic2",
|
|
4669
|
+
"type": "bool",
|
|
4670
|
+
"internalType": "bool"
|
|
4671
|
+
},
|
|
4672
|
+
{
|
|
4673
|
+
"name": "checkTopic3",
|
|
4674
|
+
"type": "bool",
|
|
4675
|
+
"internalType": "bool"
|
|
4676
|
+
},
|
|
4677
|
+
{
|
|
4678
|
+
"name": "checkData",
|
|
4679
|
+
"type": "bool",
|
|
4680
|
+
"internalType": "bool"
|
|
4681
|
+
},
|
|
4682
|
+
{
|
|
4683
|
+
"name": "emitter",
|
|
4684
|
+
"type": "address",
|
|
4685
|
+
"internalType": "address"
|
|
4529
4686
|
}
|
|
4530
4687
|
],
|
|
4531
4688
|
"outputs": [],
|
|
@@ -4533,24 +4690,45 @@
|
|
|
4533
4690
|
},
|
|
4534
4691
|
{
|
|
4535
4692
|
"type": "function",
|
|
4536
|
-
"name": "
|
|
4537
|
-
"inputs": [
|
|
4693
|
+
"name": "expectEmitAnonymous",
|
|
4694
|
+
"inputs": [
|
|
4695
|
+
{
|
|
4696
|
+
"name": "checkTopic0",
|
|
4697
|
+
"type": "bool",
|
|
4698
|
+
"internalType": "bool"
|
|
4699
|
+
},
|
|
4700
|
+
{
|
|
4701
|
+
"name": "checkTopic1",
|
|
4702
|
+
"type": "bool",
|
|
4703
|
+
"internalType": "bool"
|
|
4704
|
+
},
|
|
4705
|
+
{
|
|
4706
|
+
"name": "checkTopic2",
|
|
4707
|
+
"type": "bool",
|
|
4708
|
+
"internalType": "bool"
|
|
4709
|
+
},
|
|
4710
|
+
{
|
|
4711
|
+
"name": "checkTopic3",
|
|
4712
|
+
"type": "bool",
|
|
4713
|
+
"internalType": "bool"
|
|
4714
|
+
},
|
|
4715
|
+
{
|
|
4716
|
+
"name": "checkData",
|
|
4717
|
+
"type": "bool",
|
|
4718
|
+
"internalType": "bool"
|
|
4719
|
+
}
|
|
4720
|
+
],
|
|
4538
4721
|
"outputs": [],
|
|
4539
4722
|
"stateMutability": "nonpayable"
|
|
4540
4723
|
},
|
|
4541
4724
|
{
|
|
4542
4725
|
"type": "function",
|
|
4543
|
-
"name": "
|
|
4726
|
+
"name": "expectPartialRevert",
|
|
4544
4727
|
"inputs": [
|
|
4545
4728
|
{
|
|
4546
|
-
"name": "
|
|
4547
|
-
"type": "
|
|
4548
|
-
"internalType": "
|
|
4549
|
-
},
|
|
4550
|
-
{
|
|
4551
|
-
"name": "max",
|
|
4552
|
-
"type": "uint64",
|
|
4553
|
-
"internalType": "uint64"
|
|
4729
|
+
"name": "revertData",
|
|
4730
|
+
"type": "bytes4",
|
|
4731
|
+
"internalType": "bytes4"
|
|
4554
4732
|
}
|
|
4555
4733
|
],
|
|
4556
4734
|
"outputs": [],
|
|
@@ -4558,17 +4736,17 @@
|
|
|
4558
4736
|
},
|
|
4559
4737
|
{
|
|
4560
4738
|
"type": "function",
|
|
4561
|
-
"name": "
|
|
4739
|
+
"name": "expectPartialRevert",
|
|
4562
4740
|
"inputs": [
|
|
4563
4741
|
{
|
|
4564
|
-
"name": "
|
|
4565
|
-
"type": "
|
|
4566
|
-
"internalType": "
|
|
4742
|
+
"name": "revertData",
|
|
4743
|
+
"type": "bytes4",
|
|
4744
|
+
"internalType": "bytes4"
|
|
4567
4745
|
},
|
|
4568
4746
|
{
|
|
4569
|
-
"name": "
|
|
4570
|
-
"type": "
|
|
4571
|
-
"internalType": "
|
|
4747
|
+
"name": "reverter",
|
|
4748
|
+
"type": "address",
|
|
4749
|
+
"internalType": "address"
|
|
4572
4750
|
}
|
|
4573
4751
|
],
|
|
4574
4752
|
"outputs": [],
|
|
@@ -4576,12 +4754,17 @@
|
|
|
4576
4754
|
},
|
|
4577
4755
|
{
|
|
4578
4756
|
"type": "function",
|
|
4579
|
-
"name": "
|
|
4757
|
+
"name": "expectRevert",
|
|
4580
4758
|
"inputs": [
|
|
4581
4759
|
{
|
|
4582
|
-
"name": "
|
|
4583
|
-
"type": "
|
|
4584
|
-
"internalType": "
|
|
4760
|
+
"name": "revertData",
|
|
4761
|
+
"type": "bytes4",
|
|
4762
|
+
"internalType": "bytes4"
|
|
4763
|
+
},
|
|
4764
|
+
{
|
|
4765
|
+
"name": "reverter",
|
|
4766
|
+
"type": "address",
|
|
4767
|
+
"internalType": "address"
|
|
4585
4768
|
}
|
|
4586
4769
|
],
|
|
4587
4770
|
"outputs": [],
|
|
@@ -4589,40 +4772,153 @@
|
|
|
4589
4772
|
},
|
|
4590
4773
|
{
|
|
4591
4774
|
"type": "function",
|
|
4592
|
-
"name": "
|
|
4775
|
+
"name": "expectRevert",
|
|
4593
4776
|
"inputs": [
|
|
4594
4777
|
{
|
|
4595
|
-
"name": "
|
|
4596
|
-
"type": "string[]",
|
|
4597
|
-
"internalType": "string[]"
|
|
4598
|
-
}
|
|
4599
|
-
],
|
|
4600
|
-
"outputs": [
|
|
4601
|
-
{
|
|
4602
|
-
"name": "result",
|
|
4778
|
+
"name": "revertData",
|
|
4603
4779
|
"type": "bytes",
|
|
4604
4780
|
"internalType": "bytes"
|
|
4781
|
+
},
|
|
4782
|
+
{
|
|
4783
|
+
"name": "reverter",
|
|
4784
|
+
"type": "address",
|
|
4785
|
+
"internalType": "address"
|
|
4605
4786
|
}
|
|
4606
4787
|
],
|
|
4788
|
+
"outputs": [],
|
|
4607
4789
|
"stateMutability": "nonpayable"
|
|
4608
4790
|
},
|
|
4609
4791
|
{
|
|
4610
4792
|
"type": "function",
|
|
4611
|
-
"name": "
|
|
4793
|
+
"name": "expectRevert",
|
|
4612
4794
|
"inputs": [
|
|
4613
4795
|
{
|
|
4614
|
-
"name": "
|
|
4615
|
-
"type": "
|
|
4616
|
-
"internalType": "
|
|
4796
|
+
"name": "revertData",
|
|
4797
|
+
"type": "bytes4",
|
|
4798
|
+
"internalType": "bytes4"
|
|
4617
4799
|
}
|
|
4618
4800
|
],
|
|
4619
|
-
"outputs": [
|
|
4620
|
-
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
|
|
4625
|
-
|
|
4801
|
+
"outputs": [],
|
|
4802
|
+
"stateMutability": "nonpayable"
|
|
4803
|
+
},
|
|
4804
|
+
{
|
|
4805
|
+
"type": "function",
|
|
4806
|
+
"name": "expectRevert",
|
|
4807
|
+
"inputs": [
|
|
4808
|
+
{
|
|
4809
|
+
"name": "reverter",
|
|
4810
|
+
"type": "address",
|
|
4811
|
+
"internalType": "address"
|
|
4812
|
+
}
|
|
4813
|
+
],
|
|
4814
|
+
"outputs": [],
|
|
4815
|
+
"stateMutability": "nonpayable"
|
|
4816
|
+
},
|
|
4817
|
+
{
|
|
4818
|
+
"type": "function",
|
|
4819
|
+
"name": "expectRevert",
|
|
4820
|
+
"inputs": [
|
|
4821
|
+
{
|
|
4822
|
+
"name": "revertData",
|
|
4823
|
+
"type": "bytes",
|
|
4824
|
+
"internalType": "bytes"
|
|
4825
|
+
}
|
|
4826
|
+
],
|
|
4827
|
+
"outputs": [],
|
|
4828
|
+
"stateMutability": "nonpayable"
|
|
4829
|
+
},
|
|
4830
|
+
{
|
|
4831
|
+
"type": "function",
|
|
4832
|
+
"name": "expectRevert",
|
|
4833
|
+
"inputs": [],
|
|
4834
|
+
"outputs": [],
|
|
4835
|
+
"stateMutability": "nonpayable"
|
|
4836
|
+
},
|
|
4837
|
+
{
|
|
4838
|
+
"type": "function",
|
|
4839
|
+
"name": "expectSafeMemory",
|
|
4840
|
+
"inputs": [
|
|
4841
|
+
{
|
|
4842
|
+
"name": "min",
|
|
4843
|
+
"type": "uint64",
|
|
4844
|
+
"internalType": "uint64"
|
|
4845
|
+
},
|
|
4846
|
+
{
|
|
4847
|
+
"name": "max",
|
|
4848
|
+
"type": "uint64",
|
|
4849
|
+
"internalType": "uint64"
|
|
4850
|
+
}
|
|
4851
|
+
],
|
|
4852
|
+
"outputs": [],
|
|
4853
|
+
"stateMutability": "nonpayable"
|
|
4854
|
+
},
|
|
4855
|
+
{
|
|
4856
|
+
"type": "function",
|
|
4857
|
+
"name": "expectSafeMemoryCall",
|
|
4858
|
+
"inputs": [
|
|
4859
|
+
{
|
|
4860
|
+
"name": "min",
|
|
4861
|
+
"type": "uint64",
|
|
4862
|
+
"internalType": "uint64"
|
|
4863
|
+
},
|
|
4864
|
+
{
|
|
4865
|
+
"name": "max",
|
|
4866
|
+
"type": "uint64",
|
|
4867
|
+
"internalType": "uint64"
|
|
4868
|
+
}
|
|
4869
|
+
],
|
|
4870
|
+
"outputs": [],
|
|
4871
|
+
"stateMutability": "nonpayable"
|
|
4872
|
+
},
|
|
4873
|
+
{
|
|
4874
|
+
"type": "function",
|
|
4875
|
+
"name": "fee",
|
|
4876
|
+
"inputs": [
|
|
4877
|
+
{
|
|
4878
|
+
"name": "newBasefee",
|
|
4879
|
+
"type": "uint256",
|
|
4880
|
+
"internalType": "uint256"
|
|
4881
|
+
}
|
|
4882
|
+
],
|
|
4883
|
+
"outputs": [],
|
|
4884
|
+
"stateMutability": "nonpayable"
|
|
4885
|
+
},
|
|
4886
|
+
{
|
|
4887
|
+
"type": "function",
|
|
4888
|
+
"name": "ffi",
|
|
4889
|
+
"inputs": [
|
|
4890
|
+
{
|
|
4891
|
+
"name": "commandInput",
|
|
4892
|
+
"type": "string[]",
|
|
4893
|
+
"internalType": "string[]"
|
|
4894
|
+
}
|
|
4895
|
+
],
|
|
4896
|
+
"outputs": [
|
|
4897
|
+
{
|
|
4898
|
+
"name": "result",
|
|
4899
|
+
"type": "bytes",
|
|
4900
|
+
"internalType": "bytes"
|
|
4901
|
+
}
|
|
4902
|
+
],
|
|
4903
|
+
"stateMutability": "nonpayable"
|
|
4904
|
+
},
|
|
4905
|
+
{
|
|
4906
|
+
"type": "function",
|
|
4907
|
+
"name": "fsMetadata",
|
|
4908
|
+
"inputs": [
|
|
4909
|
+
{
|
|
4910
|
+
"name": "path",
|
|
4911
|
+
"type": "string",
|
|
4912
|
+
"internalType": "string"
|
|
4913
|
+
}
|
|
4914
|
+
],
|
|
4915
|
+
"outputs": [
|
|
4916
|
+
{
|
|
4917
|
+
"name": "metadata",
|
|
4918
|
+
"type": "tuple",
|
|
4919
|
+
"internalType": "struct VmSafe.FsMetadata",
|
|
4920
|
+
"components": [
|
|
4921
|
+
{
|
|
4626
4922
|
"name": "isDir",
|
|
4627
4923
|
"type": "bool",
|
|
4628
4924
|
"internalType": "bool"
|
|
@@ -4662,6 +4958,44 @@
|
|
|
4662
4958
|
],
|
|
4663
4959
|
"stateMutability": "view"
|
|
4664
4960
|
},
|
|
4961
|
+
{
|
|
4962
|
+
"type": "function",
|
|
4963
|
+
"name": "getArtifactPathByCode",
|
|
4964
|
+
"inputs": [
|
|
4965
|
+
{
|
|
4966
|
+
"name": "code",
|
|
4967
|
+
"type": "bytes",
|
|
4968
|
+
"internalType": "bytes"
|
|
4969
|
+
}
|
|
4970
|
+
],
|
|
4971
|
+
"outputs": [
|
|
4972
|
+
{
|
|
4973
|
+
"name": "path",
|
|
4974
|
+
"type": "string",
|
|
4975
|
+
"internalType": "string"
|
|
4976
|
+
}
|
|
4977
|
+
],
|
|
4978
|
+
"stateMutability": "view"
|
|
4979
|
+
},
|
|
4980
|
+
{
|
|
4981
|
+
"type": "function",
|
|
4982
|
+
"name": "getArtifactPathByDeployedCode",
|
|
4983
|
+
"inputs": [
|
|
4984
|
+
{
|
|
4985
|
+
"name": "deployedCode",
|
|
4986
|
+
"type": "bytes",
|
|
4987
|
+
"internalType": "bytes"
|
|
4988
|
+
}
|
|
4989
|
+
],
|
|
4990
|
+
"outputs": [
|
|
4991
|
+
{
|
|
4992
|
+
"name": "path",
|
|
4993
|
+
"type": "string",
|
|
4994
|
+
"internalType": "string"
|
|
4995
|
+
}
|
|
4996
|
+
],
|
|
4997
|
+
"stateMutability": "view"
|
|
4998
|
+
},
|
|
4665
4999
|
{
|
|
4666
5000
|
"type": "function",
|
|
4667
5001
|
"name": "getBlobBaseFee",
|
|
@@ -4752,6 +5086,19 @@
|
|
|
4752
5086
|
],
|
|
4753
5087
|
"stateMutability": "view"
|
|
4754
5088
|
},
|
|
5089
|
+
{
|
|
5090
|
+
"type": "function",
|
|
5091
|
+
"name": "getFoundryVersion",
|
|
5092
|
+
"inputs": [],
|
|
5093
|
+
"outputs": [
|
|
5094
|
+
{
|
|
5095
|
+
"name": "version",
|
|
5096
|
+
"type": "string",
|
|
5097
|
+
"internalType": "string"
|
|
5098
|
+
}
|
|
5099
|
+
],
|
|
5100
|
+
"stateMutability": "view"
|
|
5101
|
+
},
|
|
4755
5102
|
{
|
|
4756
5103
|
"type": "function",
|
|
4757
5104
|
"name": "getLabel",
|
|
@@ -4948,6 +5295,32 @@
|
|
|
4948
5295
|
],
|
|
4949
5296
|
"stateMutability": "nonpayable"
|
|
4950
5297
|
},
|
|
5298
|
+
{
|
|
5299
|
+
"type": "function",
|
|
5300
|
+
"name": "getScriptWallets",
|
|
5301
|
+
"inputs": [],
|
|
5302
|
+
"outputs": [
|
|
5303
|
+
{
|
|
5304
|
+
"name": "wallets",
|
|
5305
|
+
"type": "address[]",
|
|
5306
|
+
"internalType": "address[]"
|
|
5307
|
+
}
|
|
5308
|
+
],
|
|
5309
|
+
"stateMutability": "nonpayable"
|
|
5310
|
+
},
|
|
5311
|
+
{
|
|
5312
|
+
"type": "function",
|
|
5313
|
+
"name": "getWallets",
|
|
5314
|
+
"inputs": [],
|
|
5315
|
+
"outputs": [
|
|
5316
|
+
{
|
|
5317
|
+
"name": "wallets",
|
|
5318
|
+
"type": "address[]",
|
|
5319
|
+
"internalType": "address[]"
|
|
5320
|
+
}
|
|
5321
|
+
],
|
|
5322
|
+
"stateMutability": "nonpayable"
|
|
5323
|
+
},
|
|
4951
5324
|
{
|
|
4952
5325
|
"type": "function",
|
|
4953
5326
|
"name": "indexOf",
|
|
@@ -5386,70 +5759,144 @@
|
|
|
5386
5759
|
},
|
|
5387
5760
|
{
|
|
5388
5761
|
"type": "function",
|
|
5389
|
-
"name": "
|
|
5762
|
+
"name": "mockCalls",
|
|
5390
5763
|
"inputs": [
|
|
5391
5764
|
{
|
|
5392
|
-
"name": "
|
|
5393
|
-
"type": "string",
|
|
5394
|
-
"internalType": "string"
|
|
5395
|
-
}
|
|
5396
|
-
],
|
|
5397
|
-
"outputs": [
|
|
5398
|
-
{
|
|
5399
|
-
"name": "parsedValue",
|
|
5765
|
+
"name": "callee",
|
|
5400
5766
|
"type": "address",
|
|
5401
5767
|
"internalType": "address"
|
|
5402
|
-
}
|
|
5403
|
-
],
|
|
5404
|
-
"stateMutability": "pure"
|
|
5405
|
-
},
|
|
5406
|
-
{
|
|
5407
|
-
"type": "function",
|
|
5408
|
-
"name": "parseBool",
|
|
5409
|
-
"inputs": [
|
|
5768
|
+
},
|
|
5410
5769
|
{
|
|
5411
|
-
"name": "
|
|
5412
|
-
"type": "
|
|
5413
|
-
"internalType": "
|
|
5414
|
-
}
|
|
5415
|
-
],
|
|
5416
|
-
"outputs": [
|
|
5770
|
+
"name": "msgValue",
|
|
5771
|
+
"type": "uint256",
|
|
5772
|
+
"internalType": "uint256"
|
|
5773
|
+
},
|
|
5417
5774
|
{
|
|
5418
|
-
"name": "
|
|
5419
|
-
"type": "
|
|
5420
|
-
"internalType": "
|
|
5775
|
+
"name": "data",
|
|
5776
|
+
"type": "bytes",
|
|
5777
|
+
"internalType": "bytes"
|
|
5778
|
+
},
|
|
5779
|
+
{
|
|
5780
|
+
"name": "returnData",
|
|
5781
|
+
"type": "bytes[]",
|
|
5782
|
+
"internalType": "bytes[]"
|
|
5421
5783
|
}
|
|
5422
5784
|
],
|
|
5423
|
-
"
|
|
5785
|
+
"outputs": [],
|
|
5786
|
+
"stateMutability": "nonpayable"
|
|
5424
5787
|
},
|
|
5425
5788
|
{
|
|
5426
5789
|
"type": "function",
|
|
5427
|
-
"name": "
|
|
5790
|
+
"name": "mockCalls",
|
|
5428
5791
|
"inputs": [
|
|
5429
5792
|
{
|
|
5430
|
-
"name": "
|
|
5431
|
-
"type": "
|
|
5432
|
-
"internalType": "
|
|
5433
|
-
}
|
|
5434
|
-
],
|
|
5435
|
-
"outputs": [
|
|
5793
|
+
"name": "callee",
|
|
5794
|
+
"type": "address",
|
|
5795
|
+
"internalType": "address"
|
|
5796
|
+
},
|
|
5436
5797
|
{
|
|
5437
|
-
"name": "
|
|
5798
|
+
"name": "data",
|
|
5438
5799
|
"type": "bytes",
|
|
5439
5800
|
"internalType": "bytes"
|
|
5801
|
+
},
|
|
5802
|
+
{
|
|
5803
|
+
"name": "returnData",
|
|
5804
|
+
"type": "bytes[]",
|
|
5805
|
+
"internalType": "bytes[]"
|
|
5440
5806
|
}
|
|
5441
5807
|
],
|
|
5442
|
-
"
|
|
5808
|
+
"outputs": [],
|
|
5809
|
+
"stateMutability": "nonpayable"
|
|
5443
5810
|
},
|
|
5444
5811
|
{
|
|
5445
5812
|
"type": "function",
|
|
5446
|
-
"name": "
|
|
5813
|
+
"name": "mockFunction",
|
|
5447
5814
|
"inputs": [
|
|
5448
5815
|
{
|
|
5449
|
-
"name": "
|
|
5450
|
-
"type": "
|
|
5451
|
-
"internalType": "
|
|
5452
|
-
}
|
|
5816
|
+
"name": "callee",
|
|
5817
|
+
"type": "address",
|
|
5818
|
+
"internalType": "address"
|
|
5819
|
+
},
|
|
5820
|
+
{
|
|
5821
|
+
"name": "target",
|
|
5822
|
+
"type": "address",
|
|
5823
|
+
"internalType": "address"
|
|
5824
|
+
},
|
|
5825
|
+
{
|
|
5826
|
+
"name": "data",
|
|
5827
|
+
"type": "bytes",
|
|
5828
|
+
"internalType": "bytes"
|
|
5829
|
+
}
|
|
5830
|
+
],
|
|
5831
|
+
"outputs": [],
|
|
5832
|
+
"stateMutability": "nonpayable"
|
|
5833
|
+
},
|
|
5834
|
+
{
|
|
5835
|
+
"type": "function",
|
|
5836
|
+
"name": "parseAddress",
|
|
5837
|
+
"inputs": [
|
|
5838
|
+
{
|
|
5839
|
+
"name": "stringifiedValue",
|
|
5840
|
+
"type": "string",
|
|
5841
|
+
"internalType": "string"
|
|
5842
|
+
}
|
|
5843
|
+
],
|
|
5844
|
+
"outputs": [
|
|
5845
|
+
{
|
|
5846
|
+
"name": "parsedValue",
|
|
5847
|
+
"type": "address",
|
|
5848
|
+
"internalType": "address"
|
|
5849
|
+
}
|
|
5850
|
+
],
|
|
5851
|
+
"stateMutability": "pure"
|
|
5852
|
+
},
|
|
5853
|
+
{
|
|
5854
|
+
"type": "function",
|
|
5855
|
+
"name": "parseBool",
|
|
5856
|
+
"inputs": [
|
|
5857
|
+
{
|
|
5858
|
+
"name": "stringifiedValue",
|
|
5859
|
+
"type": "string",
|
|
5860
|
+
"internalType": "string"
|
|
5861
|
+
}
|
|
5862
|
+
],
|
|
5863
|
+
"outputs": [
|
|
5864
|
+
{
|
|
5865
|
+
"name": "parsedValue",
|
|
5866
|
+
"type": "bool",
|
|
5867
|
+
"internalType": "bool"
|
|
5868
|
+
}
|
|
5869
|
+
],
|
|
5870
|
+
"stateMutability": "pure"
|
|
5871
|
+
},
|
|
5872
|
+
{
|
|
5873
|
+
"type": "function",
|
|
5874
|
+
"name": "parseBytes",
|
|
5875
|
+
"inputs": [
|
|
5876
|
+
{
|
|
5877
|
+
"name": "stringifiedValue",
|
|
5878
|
+
"type": "string",
|
|
5879
|
+
"internalType": "string"
|
|
5880
|
+
}
|
|
5881
|
+
],
|
|
5882
|
+
"outputs": [
|
|
5883
|
+
{
|
|
5884
|
+
"name": "parsedValue",
|
|
5885
|
+
"type": "bytes",
|
|
5886
|
+
"internalType": "bytes"
|
|
5887
|
+
}
|
|
5888
|
+
],
|
|
5889
|
+
"stateMutability": "pure"
|
|
5890
|
+
},
|
|
5891
|
+
{
|
|
5892
|
+
"type": "function",
|
|
5893
|
+
"name": "parseBytes32",
|
|
5894
|
+
"inputs": [
|
|
5895
|
+
{
|
|
5896
|
+
"name": "stringifiedValue",
|
|
5897
|
+
"type": "string",
|
|
5898
|
+
"internalType": "string"
|
|
5899
|
+
}
|
|
5453
5900
|
],
|
|
5454
5901
|
"outputs": [
|
|
5455
5902
|
{
|
|
@@ -5834,6 +6281,88 @@
|
|
|
5834
6281
|
],
|
|
5835
6282
|
"stateMutability": "pure"
|
|
5836
6283
|
},
|
|
6284
|
+
{
|
|
6285
|
+
"type": "function",
|
|
6286
|
+
"name": "parseJsonType",
|
|
6287
|
+
"inputs": [
|
|
6288
|
+
{
|
|
6289
|
+
"name": "json",
|
|
6290
|
+
"type": "string",
|
|
6291
|
+
"internalType": "string"
|
|
6292
|
+
},
|
|
6293
|
+
{
|
|
6294
|
+
"name": "typeDescription",
|
|
6295
|
+
"type": "string",
|
|
6296
|
+
"internalType": "string"
|
|
6297
|
+
}
|
|
6298
|
+
],
|
|
6299
|
+
"outputs": [
|
|
6300
|
+
{
|
|
6301
|
+
"name": "",
|
|
6302
|
+
"type": "bytes",
|
|
6303
|
+
"internalType": "bytes"
|
|
6304
|
+
}
|
|
6305
|
+
],
|
|
6306
|
+
"stateMutability": "pure"
|
|
6307
|
+
},
|
|
6308
|
+
{
|
|
6309
|
+
"type": "function",
|
|
6310
|
+
"name": "parseJsonType",
|
|
6311
|
+
"inputs": [
|
|
6312
|
+
{
|
|
6313
|
+
"name": "json",
|
|
6314
|
+
"type": "string",
|
|
6315
|
+
"internalType": "string"
|
|
6316
|
+
},
|
|
6317
|
+
{
|
|
6318
|
+
"name": "key",
|
|
6319
|
+
"type": "string",
|
|
6320
|
+
"internalType": "string"
|
|
6321
|
+
},
|
|
6322
|
+
{
|
|
6323
|
+
"name": "typeDescription",
|
|
6324
|
+
"type": "string",
|
|
6325
|
+
"internalType": "string"
|
|
6326
|
+
}
|
|
6327
|
+
],
|
|
6328
|
+
"outputs": [
|
|
6329
|
+
{
|
|
6330
|
+
"name": "",
|
|
6331
|
+
"type": "bytes",
|
|
6332
|
+
"internalType": "bytes"
|
|
6333
|
+
}
|
|
6334
|
+
],
|
|
6335
|
+
"stateMutability": "pure"
|
|
6336
|
+
},
|
|
6337
|
+
{
|
|
6338
|
+
"type": "function",
|
|
6339
|
+
"name": "parseJsonTypeArray",
|
|
6340
|
+
"inputs": [
|
|
6341
|
+
{
|
|
6342
|
+
"name": "json",
|
|
6343
|
+
"type": "string",
|
|
6344
|
+
"internalType": "string"
|
|
6345
|
+
},
|
|
6346
|
+
{
|
|
6347
|
+
"name": "key",
|
|
6348
|
+
"type": "string",
|
|
6349
|
+
"internalType": "string"
|
|
6350
|
+
},
|
|
6351
|
+
{
|
|
6352
|
+
"name": "typeDescription",
|
|
6353
|
+
"type": "string",
|
|
6354
|
+
"internalType": "string"
|
|
6355
|
+
}
|
|
6356
|
+
],
|
|
6357
|
+
"outputs": [
|
|
6358
|
+
{
|
|
6359
|
+
"name": "",
|
|
6360
|
+
"type": "bytes",
|
|
6361
|
+
"internalType": "bytes"
|
|
6362
|
+
}
|
|
6363
|
+
],
|
|
6364
|
+
"stateMutability": "pure"
|
|
6365
|
+
},
|
|
5837
6366
|
{
|
|
5838
6367
|
"type": "function",
|
|
5839
6368
|
"name": "parseJsonUint",
|
|
@@ -6237,6 +6766,88 @@
|
|
|
6237
6766
|
],
|
|
6238
6767
|
"stateMutability": "pure"
|
|
6239
6768
|
},
|
|
6769
|
+
{
|
|
6770
|
+
"type": "function",
|
|
6771
|
+
"name": "parseTomlType",
|
|
6772
|
+
"inputs": [
|
|
6773
|
+
{
|
|
6774
|
+
"name": "toml",
|
|
6775
|
+
"type": "string",
|
|
6776
|
+
"internalType": "string"
|
|
6777
|
+
},
|
|
6778
|
+
{
|
|
6779
|
+
"name": "typeDescription",
|
|
6780
|
+
"type": "string",
|
|
6781
|
+
"internalType": "string"
|
|
6782
|
+
}
|
|
6783
|
+
],
|
|
6784
|
+
"outputs": [
|
|
6785
|
+
{
|
|
6786
|
+
"name": "",
|
|
6787
|
+
"type": "bytes",
|
|
6788
|
+
"internalType": "bytes"
|
|
6789
|
+
}
|
|
6790
|
+
],
|
|
6791
|
+
"stateMutability": "pure"
|
|
6792
|
+
},
|
|
6793
|
+
{
|
|
6794
|
+
"type": "function",
|
|
6795
|
+
"name": "parseTomlType",
|
|
6796
|
+
"inputs": [
|
|
6797
|
+
{
|
|
6798
|
+
"name": "toml",
|
|
6799
|
+
"type": "string",
|
|
6800
|
+
"internalType": "string"
|
|
6801
|
+
},
|
|
6802
|
+
{
|
|
6803
|
+
"name": "key",
|
|
6804
|
+
"type": "string",
|
|
6805
|
+
"internalType": "string"
|
|
6806
|
+
},
|
|
6807
|
+
{
|
|
6808
|
+
"name": "typeDescription",
|
|
6809
|
+
"type": "string",
|
|
6810
|
+
"internalType": "string"
|
|
6811
|
+
}
|
|
6812
|
+
],
|
|
6813
|
+
"outputs": [
|
|
6814
|
+
{
|
|
6815
|
+
"name": "",
|
|
6816
|
+
"type": "bytes",
|
|
6817
|
+
"internalType": "bytes"
|
|
6818
|
+
}
|
|
6819
|
+
],
|
|
6820
|
+
"stateMutability": "pure"
|
|
6821
|
+
},
|
|
6822
|
+
{
|
|
6823
|
+
"type": "function",
|
|
6824
|
+
"name": "parseTomlTypeArray",
|
|
6825
|
+
"inputs": [
|
|
6826
|
+
{
|
|
6827
|
+
"name": "toml",
|
|
6828
|
+
"type": "string",
|
|
6829
|
+
"internalType": "string"
|
|
6830
|
+
},
|
|
6831
|
+
{
|
|
6832
|
+
"name": "key",
|
|
6833
|
+
"type": "string",
|
|
6834
|
+
"internalType": "string"
|
|
6835
|
+
},
|
|
6836
|
+
{
|
|
6837
|
+
"name": "typeDescription",
|
|
6838
|
+
"type": "string",
|
|
6839
|
+
"internalType": "string"
|
|
6840
|
+
}
|
|
6841
|
+
],
|
|
6842
|
+
"outputs": [
|
|
6843
|
+
{
|
|
6844
|
+
"name": "",
|
|
6845
|
+
"type": "bytes",
|
|
6846
|
+
"internalType": "bytes"
|
|
6847
|
+
}
|
|
6848
|
+
],
|
|
6849
|
+
"stateMutability": "pure"
|
|
6850
|
+
},
|
|
6240
6851
|
{
|
|
6241
6852
|
"type": "function",
|
|
6242
6853
|
"name": "parseTomlUint",
|
|
@@ -6311,6 +6922,13 @@
|
|
|
6311
6922
|
"outputs": [],
|
|
6312
6923
|
"stateMutability": "nonpayable"
|
|
6313
6924
|
},
|
|
6925
|
+
{
|
|
6926
|
+
"type": "function",
|
|
6927
|
+
"name": "pauseTracing",
|
|
6928
|
+
"inputs": [],
|
|
6929
|
+
"outputs": [],
|
|
6930
|
+
"stateMutability": "view"
|
|
6931
|
+
},
|
|
6314
6932
|
{
|
|
6315
6933
|
"type": "function",
|
|
6316
6934
|
"name": "prank",
|
|
@@ -6478,19 +7096,133 @@
|
|
|
6478
7096
|
},
|
|
6479
7097
|
{
|
|
6480
7098
|
"type": "function",
|
|
6481
|
-
"name": "
|
|
6482
|
-
"inputs": [
|
|
6483
|
-
"outputs": [
|
|
7099
|
+
"name": "publicKeyP256",
|
|
7100
|
+
"inputs": [
|
|
6484
7101
|
{
|
|
6485
|
-
"name": "",
|
|
6486
|
-
"type": "
|
|
6487
|
-
"internalType": "
|
|
7102
|
+
"name": "privateKey",
|
|
7103
|
+
"type": "uint256",
|
|
7104
|
+
"internalType": "uint256"
|
|
6488
7105
|
}
|
|
6489
7106
|
],
|
|
6490
|
-
"
|
|
6491
|
-
|
|
6492
|
-
|
|
6493
|
-
|
|
7107
|
+
"outputs": [
|
|
7108
|
+
{
|
|
7109
|
+
"name": "publicKeyX",
|
|
7110
|
+
"type": "uint256",
|
|
7111
|
+
"internalType": "uint256"
|
|
7112
|
+
},
|
|
7113
|
+
{
|
|
7114
|
+
"name": "publicKeyY",
|
|
7115
|
+
"type": "uint256",
|
|
7116
|
+
"internalType": "uint256"
|
|
7117
|
+
}
|
|
7118
|
+
],
|
|
7119
|
+
"stateMutability": "pure"
|
|
7120
|
+
},
|
|
7121
|
+
{
|
|
7122
|
+
"type": "function",
|
|
7123
|
+
"name": "randomAddress",
|
|
7124
|
+
"inputs": [],
|
|
7125
|
+
"outputs": [
|
|
7126
|
+
{
|
|
7127
|
+
"name": "",
|
|
7128
|
+
"type": "address",
|
|
7129
|
+
"internalType": "address"
|
|
7130
|
+
}
|
|
7131
|
+
],
|
|
7132
|
+
"stateMutability": "nonpayable"
|
|
7133
|
+
},
|
|
7134
|
+
{
|
|
7135
|
+
"type": "function",
|
|
7136
|
+
"name": "randomBool",
|
|
7137
|
+
"inputs": [],
|
|
7138
|
+
"outputs": [
|
|
7139
|
+
{
|
|
7140
|
+
"name": "",
|
|
7141
|
+
"type": "bool",
|
|
7142
|
+
"internalType": "bool"
|
|
7143
|
+
}
|
|
7144
|
+
],
|
|
7145
|
+
"stateMutability": "view"
|
|
7146
|
+
},
|
|
7147
|
+
{
|
|
7148
|
+
"type": "function",
|
|
7149
|
+
"name": "randomBytes",
|
|
7150
|
+
"inputs": [
|
|
7151
|
+
{
|
|
7152
|
+
"name": "len",
|
|
7153
|
+
"type": "uint256",
|
|
7154
|
+
"internalType": "uint256"
|
|
7155
|
+
}
|
|
7156
|
+
],
|
|
7157
|
+
"outputs": [
|
|
7158
|
+
{
|
|
7159
|
+
"name": "",
|
|
7160
|
+
"type": "bytes",
|
|
7161
|
+
"internalType": "bytes"
|
|
7162
|
+
}
|
|
7163
|
+
],
|
|
7164
|
+
"stateMutability": "view"
|
|
7165
|
+
},
|
|
7166
|
+
{
|
|
7167
|
+
"type": "function",
|
|
7168
|
+
"name": "randomBytes4",
|
|
7169
|
+
"inputs": [],
|
|
7170
|
+
"outputs": [
|
|
7171
|
+
{
|
|
7172
|
+
"name": "",
|
|
7173
|
+
"type": "bytes4",
|
|
7174
|
+
"internalType": "bytes4"
|
|
7175
|
+
}
|
|
7176
|
+
],
|
|
7177
|
+
"stateMutability": "view"
|
|
7178
|
+
},
|
|
7179
|
+
{
|
|
7180
|
+
"type": "function",
|
|
7181
|
+
"name": "randomBytes8",
|
|
7182
|
+
"inputs": [],
|
|
7183
|
+
"outputs": [
|
|
7184
|
+
{
|
|
7185
|
+
"name": "",
|
|
7186
|
+
"type": "bytes8",
|
|
7187
|
+
"internalType": "bytes8"
|
|
7188
|
+
}
|
|
7189
|
+
],
|
|
7190
|
+
"stateMutability": "view"
|
|
7191
|
+
},
|
|
7192
|
+
{
|
|
7193
|
+
"type": "function",
|
|
7194
|
+
"name": "randomInt",
|
|
7195
|
+
"inputs": [],
|
|
7196
|
+
"outputs": [
|
|
7197
|
+
{
|
|
7198
|
+
"name": "",
|
|
7199
|
+
"type": "int256",
|
|
7200
|
+
"internalType": "int256"
|
|
7201
|
+
}
|
|
7202
|
+
],
|
|
7203
|
+
"stateMutability": "view"
|
|
7204
|
+
},
|
|
7205
|
+
{
|
|
7206
|
+
"type": "function",
|
|
7207
|
+
"name": "randomInt",
|
|
7208
|
+
"inputs": [
|
|
7209
|
+
{
|
|
7210
|
+
"name": "bits",
|
|
7211
|
+
"type": "uint256",
|
|
7212
|
+
"internalType": "uint256"
|
|
7213
|
+
}
|
|
7214
|
+
],
|
|
7215
|
+
"outputs": [
|
|
7216
|
+
{
|
|
7217
|
+
"name": "",
|
|
7218
|
+
"type": "int256",
|
|
7219
|
+
"internalType": "int256"
|
|
7220
|
+
}
|
|
7221
|
+
],
|
|
7222
|
+
"stateMutability": "view"
|
|
7223
|
+
},
|
|
7224
|
+
{
|
|
7225
|
+
"type": "function",
|
|
6494
7226
|
"name": "randomUint",
|
|
6495
7227
|
"inputs": [],
|
|
6496
7228
|
"outputs": [
|
|
@@ -6502,6 +7234,25 @@
|
|
|
6502
7234
|
],
|
|
6503
7235
|
"stateMutability": "nonpayable"
|
|
6504
7236
|
},
|
|
7237
|
+
{
|
|
7238
|
+
"type": "function",
|
|
7239
|
+
"name": "randomUint",
|
|
7240
|
+
"inputs": [
|
|
7241
|
+
{
|
|
7242
|
+
"name": "bits",
|
|
7243
|
+
"type": "uint256",
|
|
7244
|
+
"internalType": "uint256"
|
|
7245
|
+
}
|
|
7246
|
+
],
|
|
7247
|
+
"outputs": [
|
|
7248
|
+
{
|
|
7249
|
+
"name": "",
|
|
7250
|
+
"type": "uint256",
|
|
7251
|
+
"internalType": "uint256"
|
|
7252
|
+
}
|
|
7253
|
+
],
|
|
7254
|
+
"stateMutability": "view"
|
|
7255
|
+
},
|
|
6505
7256
|
{
|
|
6506
7257
|
"type": "function",
|
|
6507
7258
|
"name": "randomUint",
|
|
@@ -6811,6 +7562,69 @@
|
|
|
6811
7562
|
],
|
|
6812
7563
|
"stateMutability": "nonpayable"
|
|
6813
7564
|
},
|
|
7565
|
+
{
|
|
7566
|
+
"type": "function",
|
|
7567
|
+
"name": "rememberKeys",
|
|
7568
|
+
"inputs": [
|
|
7569
|
+
{
|
|
7570
|
+
"name": "mnemonic",
|
|
7571
|
+
"type": "string",
|
|
7572
|
+
"internalType": "string"
|
|
7573
|
+
},
|
|
7574
|
+
{
|
|
7575
|
+
"name": "derivationPath",
|
|
7576
|
+
"type": "string",
|
|
7577
|
+
"internalType": "string"
|
|
7578
|
+
},
|
|
7579
|
+
{
|
|
7580
|
+
"name": "count",
|
|
7581
|
+
"type": "uint32",
|
|
7582
|
+
"internalType": "uint32"
|
|
7583
|
+
}
|
|
7584
|
+
],
|
|
7585
|
+
"outputs": [
|
|
7586
|
+
{
|
|
7587
|
+
"name": "keyAddrs",
|
|
7588
|
+
"type": "address[]",
|
|
7589
|
+
"internalType": "address[]"
|
|
7590
|
+
}
|
|
7591
|
+
],
|
|
7592
|
+
"stateMutability": "nonpayable"
|
|
7593
|
+
},
|
|
7594
|
+
{
|
|
7595
|
+
"type": "function",
|
|
7596
|
+
"name": "rememberKeys",
|
|
7597
|
+
"inputs": [
|
|
7598
|
+
{
|
|
7599
|
+
"name": "mnemonic",
|
|
7600
|
+
"type": "string",
|
|
7601
|
+
"internalType": "string"
|
|
7602
|
+
},
|
|
7603
|
+
{
|
|
7604
|
+
"name": "derivationPath",
|
|
7605
|
+
"type": "string",
|
|
7606
|
+
"internalType": "string"
|
|
7607
|
+
},
|
|
7608
|
+
{
|
|
7609
|
+
"name": "language",
|
|
7610
|
+
"type": "string",
|
|
7611
|
+
"internalType": "string"
|
|
7612
|
+
},
|
|
7613
|
+
{
|
|
7614
|
+
"name": "count",
|
|
7615
|
+
"type": "uint32",
|
|
7616
|
+
"internalType": "uint32"
|
|
7617
|
+
}
|
|
7618
|
+
],
|
|
7619
|
+
"outputs": [
|
|
7620
|
+
{
|
|
7621
|
+
"name": "keyAddrs",
|
|
7622
|
+
"type": "address[]",
|
|
7623
|
+
"internalType": "address[]"
|
|
7624
|
+
}
|
|
7625
|
+
],
|
|
7626
|
+
"stateMutability": "nonpayable"
|
|
7627
|
+
},
|
|
6814
7628
|
{
|
|
6815
7629
|
"type": "function",
|
|
6816
7630
|
"name": "removeDir",
|
|
@@ -6871,6 +7685,13 @@
|
|
|
6871
7685
|
],
|
|
6872
7686
|
"stateMutability": "pure"
|
|
6873
7687
|
},
|
|
7688
|
+
{
|
|
7689
|
+
"type": "function",
|
|
7690
|
+
"name": "resetGasMetering",
|
|
7691
|
+
"inputs": [],
|
|
7692
|
+
"outputs": [],
|
|
7693
|
+
"stateMutability": "nonpayable"
|
|
7694
|
+
},
|
|
6874
7695
|
{
|
|
6875
7696
|
"type": "function",
|
|
6876
7697
|
"name": "resetNonce",
|
|
@@ -6891,6 +7712,13 @@
|
|
|
6891
7712
|
"outputs": [],
|
|
6892
7713
|
"stateMutability": "nonpayable"
|
|
6893
7714
|
},
|
|
7715
|
+
{
|
|
7716
|
+
"type": "function",
|
|
7717
|
+
"name": "resumeTracing",
|
|
7718
|
+
"inputs": [],
|
|
7719
|
+
"outputs": [],
|
|
7720
|
+
"stateMutability": "view"
|
|
7721
|
+
},
|
|
6894
7722
|
{
|
|
6895
7723
|
"type": "function",
|
|
6896
7724
|
"name": "revertTo",
|
|
@@ -6929,6 +7757,44 @@
|
|
|
6929
7757
|
],
|
|
6930
7758
|
"stateMutability": "nonpayable"
|
|
6931
7759
|
},
|
|
7760
|
+
{
|
|
7761
|
+
"type": "function",
|
|
7762
|
+
"name": "revertToState",
|
|
7763
|
+
"inputs": [
|
|
7764
|
+
{
|
|
7765
|
+
"name": "snapshotId",
|
|
7766
|
+
"type": "uint256",
|
|
7767
|
+
"internalType": "uint256"
|
|
7768
|
+
}
|
|
7769
|
+
],
|
|
7770
|
+
"outputs": [
|
|
7771
|
+
{
|
|
7772
|
+
"name": "success",
|
|
7773
|
+
"type": "bool",
|
|
7774
|
+
"internalType": "bool"
|
|
7775
|
+
}
|
|
7776
|
+
],
|
|
7777
|
+
"stateMutability": "nonpayable"
|
|
7778
|
+
},
|
|
7779
|
+
{
|
|
7780
|
+
"type": "function",
|
|
7781
|
+
"name": "revertToStateAndDelete",
|
|
7782
|
+
"inputs": [
|
|
7783
|
+
{
|
|
7784
|
+
"name": "snapshotId",
|
|
7785
|
+
"type": "uint256",
|
|
7786
|
+
"internalType": "uint256"
|
|
7787
|
+
}
|
|
7788
|
+
],
|
|
7789
|
+
"outputs": [
|
|
7790
|
+
{
|
|
7791
|
+
"name": "success",
|
|
7792
|
+
"type": "bool",
|
|
7793
|
+
"internalType": "bool"
|
|
7794
|
+
}
|
|
7795
|
+
],
|
|
7796
|
+
"stateMutability": "nonpayable"
|
|
7797
|
+
},
|
|
6932
7798
|
{
|
|
6933
7799
|
"type": "function",
|
|
6934
7800
|
"name": "revokePersistent",
|
|
@@ -7034,6 +7900,11 @@
|
|
|
7034
7900
|
"type": "function",
|
|
7035
7901
|
"name": "rpc",
|
|
7036
7902
|
"inputs": [
|
|
7903
|
+
{
|
|
7904
|
+
"name": "urlOrAlias",
|
|
7905
|
+
"type": "string",
|
|
7906
|
+
"internalType": "string"
|
|
7907
|
+
},
|
|
7037
7908
|
{
|
|
7038
7909
|
"name": "method",
|
|
7039
7910
|
"type": "string",
|
|
@@ -7056,27 +7927,51 @@
|
|
|
7056
7927
|
},
|
|
7057
7928
|
{
|
|
7058
7929
|
"type": "function",
|
|
7059
|
-
"name": "
|
|
7930
|
+
"name": "rpc",
|
|
7060
7931
|
"inputs": [
|
|
7061
7932
|
{
|
|
7062
|
-
"name": "
|
|
7933
|
+
"name": "method",
|
|
7934
|
+
"type": "string",
|
|
7935
|
+
"internalType": "string"
|
|
7936
|
+
},
|
|
7937
|
+
{
|
|
7938
|
+
"name": "params",
|
|
7063
7939
|
"type": "string",
|
|
7064
7940
|
"internalType": "string"
|
|
7065
7941
|
}
|
|
7066
7942
|
],
|
|
7067
7943
|
"outputs": [
|
|
7068
7944
|
{
|
|
7069
|
-
"name": "
|
|
7070
|
-
"type": "
|
|
7071
|
-
"internalType": "
|
|
7945
|
+
"name": "data",
|
|
7946
|
+
"type": "bytes",
|
|
7947
|
+
"internalType": "bytes"
|
|
7072
7948
|
}
|
|
7073
7949
|
],
|
|
7074
|
-
"stateMutability": "
|
|
7950
|
+
"stateMutability": "nonpayable"
|
|
7075
7951
|
},
|
|
7076
7952
|
{
|
|
7077
7953
|
"type": "function",
|
|
7078
|
-
"name": "
|
|
7079
|
-
"inputs": [
|
|
7954
|
+
"name": "rpcUrl",
|
|
7955
|
+
"inputs": [
|
|
7956
|
+
{
|
|
7957
|
+
"name": "rpcAlias",
|
|
7958
|
+
"type": "string",
|
|
7959
|
+
"internalType": "string"
|
|
7960
|
+
}
|
|
7961
|
+
],
|
|
7962
|
+
"outputs": [
|
|
7963
|
+
{
|
|
7964
|
+
"name": "json",
|
|
7965
|
+
"type": "string",
|
|
7966
|
+
"internalType": "string"
|
|
7967
|
+
}
|
|
7968
|
+
],
|
|
7969
|
+
"stateMutability": "view"
|
|
7970
|
+
},
|
|
7971
|
+
{
|
|
7972
|
+
"type": "function",
|
|
7973
|
+
"name": "rpcUrlStructs",
|
|
7974
|
+
"inputs": [],
|
|
7080
7975
|
"outputs": [
|
|
7081
7976
|
{
|
|
7082
7977
|
"name": "urls",
|
|
@@ -7438,6 +8333,64 @@
|
|
|
7438
8333
|
],
|
|
7439
8334
|
"stateMutability": "nonpayable"
|
|
7440
8335
|
},
|
|
8336
|
+
{
|
|
8337
|
+
"type": "function",
|
|
8338
|
+
"name": "serializeJsonType",
|
|
8339
|
+
"inputs": [
|
|
8340
|
+
{
|
|
8341
|
+
"name": "typeDescription",
|
|
8342
|
+
"type": "string",
|
|
8343
|
+
"internalType": "string"
|
|
8344
|
+
},
|
|
8345
|
+
{
|
|
8346
|
+
"name": "value",
|
|
8347
|
+
"type": "bytes",
|
|
8348
|
+
"internalType": "bytes"
|
|
8349
|
+
}
|
|
8350
|
+
],
|
|
8351
|
+
"outputs": [
|
|
8352
|
+
{
|
|
8353
|
+
"name": "json",
|
|
8354
|
+
"type": "string",
|
|
8355
|
+
"internalType": "string"
|
|
8356
|
+
}
|
|
8357
|
+
],
|
|
8358
|
+
"stateMutability": "pure"
|
|
8359
|
+
},
|
|
8360
|
+
{
|
|
8361
|
+
"type": "function",
|
|
8362
|
+
"name": "serializeJsonType",
|
|
8363
|
+
"inputs": [
|
|
8364
|
+
{
|
|
8365
|
+
"name": "objectKey",
|
|
8366
|
+
"type": "string",
|
|
8367
|
+
"internalType": "string"
|
|
8368
|
+
},
|
|
8369
|
+
{
|
|
8370
|
+
"name": "valueKey",
|
|
8371
|
+
"type": "string",
|
|
8372
|
+
"internalType": "string"
|
|
8373
|
+
},
|
|
8374
|
+
{
|
|
8375
|
+
"name": "typeDescription",
|
|
8376
|
+
"type": "string",
|
|
8377
|
+
"internalType": "string"
|
|
8378
|
+
},
|
|
8379
|
+
{
|
|
8380
|
+
"name": "value",
|
|
8381
|
+
"type": "bytes",
|
|
8382
|
+
"internalType": "bytes"
|
|
8383
|
+
}
|
|
8384
|
+
],
|
|
8385
|
+
"outputs": [
|
|
8386
|
+
{
|
|
8387
|
+
"name": "json",
|
|
8388
|
+
"type": "string",
|
|
8389
|
+
"internalType": "string"
|
|
8390
|
+
}
|
|
8391
|
+
],
|
|
8392
|
+
"stateMutability": "nonpayable"
|
|
8393
|
+
},
|
|
7441
8394
|
{
|
|
7442
8395
|
"type": "function",
|
|
7443
8396
|
"name": "serializeString",
|
|
@@ -7583,6 +8536,37 @@
|
|
|
7583
8536
|
],
|
|
7584
8537
|
"stateMutability": "nonpayable"
|
|
7585
8538
|
},
|
|
8539
|
+
{
|
|
8540
|
+
"type": "function",
|
|
8541
|
+
"name": "setArbitraryStorage",
|
|
8542
|
+
"inputs": [
|
|
8543
|
+
{
|
|
8544
|
+
"name": "target",
|
|
8545
|
+
"type": "address",
|
|
8546
|
+
"internalType": "address"
|
|
8547
|
+
}
|
|
8548
|
+
],
|
|
8549
|
+
"outputs": [],
|
|
8550
|
+
"stateMutability": "nonpayable"
|
|
8551
|
+
},
|
|
8552
|
+
{
|
|
8553
|
+
"type": "function",
|
|
8554
|
+
"name": "setBlockhash",
|
|
8555
|
+
"inputs": [
|
|
8556
|
+
{
|
|
8557
|
+
"name": "blockNumber",
|
|
8558
|
+
"type": "uint256",
|
|
8559
|
+
"internalType": "uint256"
|
|
8560
|
+
},
|
|
8561
|
+
{
|
|
8562
|
+
"name": "blockHash",
|
|
8563
|
+
"type": "bytes32",
|
|
8564
|
+
"internalType": "bytes32"
|
|
8565
|
+
}
|
|
8566
|
+
],
|
|
8567
|
+
"outputs": [],
|
|
8568
|
+
"stateMutability": "nonpayable"
|
|
8569
|
+
},
|
|
7586
8570
|
{
|
|
7587
8571
|
"type": "function",
|
|
7588
8572
|
"name": "setEnv",
|
|
@@ -7790,6 +8774,139 @@
|
|
|
7790
8774
|
],
|
|
7791
8775
|
"stateMutability": "pure"
|
|
7792
8776
|
},
|
|
8777
|
+
{
|
|
8778
|
+
"type": "function",
|
|
8779
|
+
"name": "signCompact",
|
|
8780
|
+
"inputs": [
|
|
8781
|
+
{
|
|
8782
|
+
"name": "wallet",
|
|
8783
|
+
"type": "tuple",
|
|
8784
|
+
"internalType": "struct VmSafe.Wallet",
|
|
8785
|
+
"components": [
|
|
8786
|
+
{
|
|
8787
|
+
"name": "addr",
|
|
8788
|
+
"type": "address",
|
|
8789
|
+
"internalType": "address"
|
|
8790
|
+
},
|
|
8791
|
+
{
|
|
8792
|
+
"name": "publicKeyX",
|
|
8793
|
+
"type": "uint256",
|
|
8794
|
+
"internalType": "uint256"
|
|
8795
|
+
},
|
|
8796
|
+
{
|
|
8797
|
+
"name": "publicKeyY",
|
|
8798
|
+
"type": "uint256",
|
|
8799
|
+
"internalType": "uint256"
|
|
8800
|
+
},
|
|
8801
|
+
{
|
|
8802
|
+
"name": "privateKey",
|
|
8803
|
+
"type": "uint256",
|
|
8804
|
+
"internalType": "uint256"
|
|
8805
|
+
}
|
|
8806
|
+
]
|
|
8807
|
+
},
|
|
8808
|
+
{
|
|
8809
|
+
"name": "digest",
|
|
8810
|
+
"type": "bytes32",
|
|
8811
|
+
"internalType": "bytes32"
|
|
8812
|
+
}
|
|
8813
|
+
],
|
|
8814
|
+
"outputs": [
|
|
8815
|
+
{
|
|
8816
|
+
"name": "r",
|
|
8817
|
+
"type": "bytes32",
|
|
8818
|
+
"internalType": "bytes32"
|
|
8819
|
+
},
|
|
8820
|
+
{
|
|
8821
|
+
"name": "vs",
|
|
8822
|
+
"type": "bytes32",
|
|
8823
|
+
"internalType": "bytes32"
|
|
8824
|
+
}
|
|
8825
|
+
],
|
|
8826
|
+
"stateMutability": "nonpayable"
|
|
8827
|
+
},
|
|
8828
|
+
{
|
|
8829
|
+
"type": "function",
|
|
8830
|
+
"name": "signCompact",
|
|
8831
|
+
"inputs": [
|
|
8832
|
+
{
|
|
8833
|
+
"name": "signer",
|
|
8834
|
+
"type": "address",
|
|
8835
|
+
"internalType": "address"
|
|
8836
|
+
},
|
|
8837
|
+
{
|
|
8838
|
+
"name": "digest",
|
|
8839
|
+
"type": "bytes32",
|
|
8840
|
+
"internalType": "bytes32"
|
|
8841
|
+
}
|
|
8842
|
+
],
|
|
8843
|
+
"outputs": [
|
|
8844
|
+
{
|
|
8845
|
+
"name": "r",
|
|
8846
|
+
"type": "bytes32",
|
|
8847
|
+
"internalType": "bytes32"
|
|
8848
|
+
},
|
|
8849
|
+
{
|
|
8850
|
+
"name": "vs",
|
|
8851
|
+
"type": "bytes32",
|
|
8852
|
+
"internalType": "bytes32"
|
|
8853
|
+
}
|
|
8854
|
+
],
|
|
8855
|
+
"stateMutability": "pure"
|
|
8856
|
+
},
|
|
8857
|
+
{
|
|
8858
|
+
"type": "function",
|
|
8859
|
+
"name": "signCompact",
|
|
8860
|
+
"inputs": [
|
|
8861
|
+
{
|
|
8862
|
+
"name": "digest",
|
|
8863
|
+
"type": "bytes32",
|
|
8864
|
+
"internalType": "bytes32"
|
|
8865
|
+
}
|
|
8866
|
+
],
|
|
8867
|
+
"outputs": [
|
|
8868
|
+
{
|
|
8869
|
+
"name": "r",
|
|
8870
|
+
"type": "bytes32",
|
|
8871
|
+
"internalType": "bytes32"
|
|
8872
|
+
},
|
|
8873
|
+
{
|
|
8874
|
+
"name": "vs",
|
|
8875
|
+
"type": "bytes32",
|
|
8876
|
+
"internalType": "bytes32"
|
|
8877
|
+
}
|
|
8878
|
+
],
|
|
8879
|
+
"stateMutability": "pure"
|
|
8880
|
+
},
|
|
8881
|
+
{
|
|
8882
|
+
"type": "function",
|
|
8883
|
+
"name": "signCompact",
|
|
8884
|
+
"inputs": [
|
|
8885
|
+
{
|
|
8886
|
+
"name": "privateKey",
|
|
8887
|
+
"type": "uint256",
|
|
8888
|
+
"internalType": "uint256"
|
|
8889
|
+
},
|
|
8890
|
+
{
|
|
8891
|
+
"name": "digest",
|
|
8892
|
+
"type": "bytes32",
|
|
8893
|
+
"internalType": "bytes32"
|
|
8894
|
+
}
|
|
8895
|
+
],
|
|
8896
|
+
"outputs": [
|
|
8897
|
+
{
|
|
8898
|
+
"name": "r",
|
|
8899
|
+
"type": "bytes32",
|
|
8900
|
+
"internalType": "bytes32"
|
|
8901
|
+
},
|
|
8902
|
+
{
|
|
8903
|
+
"name": "vs",
|
|
8904
|
+
"type": "bytes32",
|
|
8905
|
+
"internalType": "bytes32"
|
|
8906
|
+
}
|
|
8907
|
+
],
|
|
8908
|
+
"stateMutability": "pure"
|
|
8909
|
+
},
|
|
7793
8910
|
{
|
|
7794
8911
|
"type": "function",
|
|
7795
8912
|
"name": "signP256",
|
|
@@ -7819,6 +8936,24 @@
|
|
|
7819
8936
|
],
|
|
7820
8937
|
"stateMutability": "pure"
|
|
7821
8938
|
},
|
|
8939
|
+
{
|
|
8940
|
+
"type": "function",
|
|
8941
|
+
"name": "skip",
|
|
8942
|
+
"inputs": [
|
|
8943
|
+
{
|
|
8944
|
+
"name": "skipTest",
|
|
8945
|
+
"type": "bool",
|
|
8946
|
+
"internalType": "bool"
|
|
8947
|
+
},
|
|
8948
|
+
{
|
|
8949
|
+
"name": "reason",
|
|
8950
|
+
"type": "string",
|
|
8951
|
+
"internalType": "string"
|
|
8952
|
+
}
|
|
8953
|
+
],
|
|
8954
|
+
"outputs": [],
|
|
8955
|
+
"stateMutability": "nonpayable"
|
|
8956
|
+
},
|
|
7822
8957
|
{
|
|
7823
8958
|
"type": "function",
|
|
7824
8959
|
"name": "skip",
|
|
@@ -7858,6 +8993,103 @@
|
|
|
7858
8993
|
],
|
|
7859
8994
|
"stateMutability": "nonpayable"
|
|
7860
8995
|
},
|
|
8996
|
+
{
|
|
8997
|
+
"type": "function",
|
|
8998
|
+
"name": "snapshotGasLastCall",
|
|
8999
|
+
"inputs": [
|
|
9000
|
+
{
|
|
9001
|
+
"name": "group",
|
|
9002
|
+
"type": "string",
|
|
9003
|
+
"internalType": "string"
|
|
9004
|
+
},
|
|
9005
|
+
{
|
|
9006
|
+
"name": "name",
|
|
9007
|
+
"type": "string",
|
|
9008
|
+
"internalType": "string"
|
|
9009
|
+
}
|
|
9010
|
+
],
|
|
9011
|
+
"outputs": [
|
|
9012
|
+
{
|
|
9013
|
+
"name": "gasUsed",
|
|
9014
|
+
"type": "uint256",
|
|
9015
|
+
"internalType": "uint256"
|
|
9016
|
+
}
|
|
9017
|
+
],
|
|
9018
|
+
"stateMutability": "nonpayable"
|
|
9019
|
+
},
|
|
9020
|
+
{
|
|
9021
|
+
"type": "function",
|
|
9022
|
+
"name": "snapshotGasLastCall",
|
|
9023
|
+
"inputs": [
|
|
9024
|
+
{
|
|
9025
|
+
"name": "name",
|
|
9026
|
+
"type": "string",
|
|
9027
|
+
"internalType": "string"
|
|
9028
|
+
}
|
|
9029
|
+
],
|
|
9030
|
+
"outputs": [
|
|
9031
|
+
{
|
|
9032
|
+
"name": "gasUsed",
|
|
9033
|
+
"type": "uint256",
|
|
9034
|
+
"internalType": "uint256"
|
|
9035
|
+
}
|
|
9036
|
+
],
|
|
9037
|
+
"stateMutability": "nonpayable"
|
|
9038
|
+
},
|
|
9039
|
+
{
|
|
9040
|
+
"type": "function",
|
|
9041
|
+
"name": "snapshotState",
|
|
9042
|
+
"inputs": [],
|
|
9043
|
+
"outputs": [
|
|
9044
|
+
{
|
|
9045
|
+
"name": "snapshotId",
|
|
9046
|
+
"type": "uint256",
|
|
9047
|
+
"internalType": "uint256"
|
|
9048
|
+
}
|
|
9049
|
+
],
|
|
9050
|
+
"stateMutability": "nonpayable"
|
|
9051
|
+
},
|
|
9052
|
+
{
|
|
9053
|
+
"type": "function",
|
|
9054
|
+
"name": "snapshotValue",
|
|
9055
|
+
"inputs": [
|
|
9056
|
+
{
|
|
9057
|
+
"name": "name",
|
|
9058
|
+
"type": "string",
|
|
9059
|
+
"internalType": "string"
|
|
9060
|
+
},
|
|
9061
|
+
{
|
|
9062
|
+
"name": "value",
|
|
9063
|
+
"type": "uint256",
|
|
9064
|
+
"internalType": "uint256"
|
|
9065
|
+
}
|
|
9066
|
+
],
|
|
9067
|
+
"outputs": [],
|
|
9068
|
+
"stateMutability": "nonpayable"
|
|
9069
|
+
},
|
|
9070
|
+
{
|
|
9071
|
+
"type": "function",
|
|
9072
|
+
"name": "snapshotValue",
|
|
9073
|
+
"inputs": [
|
|
9074
|
+
{
|
|
9075
|
+
"name": "group",
|
|
9076
|
+
"type": "string",
|
|
9077
|
+
"internalType": "string"
|
|
9078
|
+
},
|
|
9079
|
+
{
|
|
9080
|
+
"name": "name",
|
|
9081
|
+
"type": "string",
|
|
9082
|
+
"internalType": "string"
|
|
9083
|
+
},
|
|
9084
|
+
{
|
|
9085
|
+
"name": "value",
|
|
9086
|
+
"type": "uint256",
|
|
9087
|
+
"internalType": "uint256"
|
|
9088
|
+
}
|
|
9089
|
+
],
|
|
9090
|
+
"outputs": [],
|
|
9091
|
+
"stateMutability": "nonpayable"
|
|
9092
|
+
},
|
|
7861
9093
|
{
|
|
7862
9094
|
"type": "function",
|
|
7863
9095
|
"name": "split",
|
|
@@ -7915,6 +9147,13 @@
|
|
|
7915
9147
|
"outputs": [],
|
|
7916
9148
|
"stateMutability": "nonpayable"
|
|
7917
9149
|
},
|
|
9150
|
+
{
|
|
9151
|
+
"type": "function",
|
|
9152
|
+
"name": "startDebugTraceRecording",
|
|
9153
|
+
"inputs": [],
|
|
9154
|
+
"outputs": [],
|
|
9155
|
+
"stateMutability": "nonpayable"
|
|
9156
|
+
},
|
|
7918
9157
|
{
|
|
7919
9158
|
"type": "function",
|
|
7920
9159
|
"name": "startMappingRecording",
|
|
@@ -7953,6 +9192,37 @@
|
|
|
7953
9192
|
"outputs": [],
|
|
7954
9193
|
"stateMutability": "nonpayable"
|
|
7955
9194
|
},
|
|
9195
|
+
{
|
|
9196
|
+
"type": "function",
|
|
9197
|
+
"name": "startSnapshotGas",
|
|
9198
|
+
"inputs": [
|
|
9199
|
+
{
|
|
9200
|
+
"name": "name",
|
|
9201
|
+
"type": "string",
|
|
9202
|
+
"internalType": "string"
|
|
9203
|
+
}
|
|
9204
|
+
],
|
|
9205
|
+
"outputs": [],
|
|
9206
|
+
"stateMutability": "nonpayable"
|
|
9207
|
+
},
|
|
9208
|
+
{
|
|
9209
|
+
"type": "function",
|
|
9210
|
+
"name": "startSnapshotGas",
|
|
9211
|
+
"inputs": [
|
|
9212
|
+
{
|
|
9213
|
+
"name": "group",
|
|
9214
|
+
"type": "string",
|
|
9215
|
+
"internalType": "string"
|
|
9216
|
+
},
|
|
9217
|
+
{
|
|
9218
|
+
"name": "name",
|
|
9219
|
+
"type": "string",
|
|
9220
|
+
"internalType": "string"
|
|
9221
|
+
}
|
|
9222
|
+
],
|
|
9223
|
+
"outputs": [],
|
|
9224
|
+
"stateMutability": "nonpayable"
|
|
9225
|
+
},
|
|
7956
9226
|
{
|
|
7957
9227
|
"type": "function",
|
|
7958
9228
|
"name": "startStateDiffRecording",
|
|
@@ -7960,6 +9230,51 @@
|
|
|
7960
9230
|
"outputs": [],
|
|
7961
9231
|
"stateMutability": "nonpayable"
|
|
7962
9232
|
},
|
|
9233
|
+
{
|
|
9234
|
+
"type": "function",
|
|
9235
|
+
"name": "stopAndReturnDebugTraceRecording",
|
|
9236
|
+
"inputs": [],
|
|
9237
|
+
"outputs": [
|
|
9238
|
+
{
|
|
9239
|
+
"name": "step",
|
|
9240
|
+
"type": "tuple[]",
|
|
9241
|
+
"internalType": "struct VmSafe.DebugStep[]",
|
|
9242
|
+
"components": [
|
|
9243
|
+
{
|
|
9244
|
+
"name": "stack",
|
|
9245
|
+
"type": "uint256[]",
|
|
9246
|
+
"internalType": "uint256[]"
|
|
9247
|
+
},
|
|
9248
|
+
{
|
|
9249
|
+
"name": "memoryInput",
|
|
9250
|
+
"type": "bytes",
|
|
9251
|
+
"internalType": "bytes"
|
|
9252
|
+
},
|
|
9253
|
+
{
|
|
9254
|
+
"name": "opcode",
|
|
9255
|
+
"type": "uint8",
|
|
9256
|
+
"internalType": "uint8"
|
|
9257
|
+
},
|
|
9258
|
+
{
|
|
9259
|
+
"name": "depth",
|
|
9260
|
+
"type": "uint64",
|
|
9261
|
+
"internalType": "uint64"
|
|
9262
|
+
},
|
|
9263
|
+
{
|
|
9264
|
+
"name": "isOutOfGas",
|
|
9265
|
+
"type": "bool",
|
|
9266
|
+
"internalType": "bool"
|
|
9267
|
+
},
|
|
9268
|
+
{
|
|
9269
|
+
"name": "contractAddr",
|
|
9270
|
+
"type": "address",
|
|
9271
|
+
"internalType": "address"
|
|
9272
|
+
}
|
|
9273
|
+
]
|
|
9274
|
+
}
|
|
9275
|
+
],
|
|
9276
|
+
"stateMutability": "nonpayable"
|
|
9277
|
+
},
|
|
7963
9278
|
{
|
|
7964
9279
|
"type": "function",
|
|
7965
9280
|
"name": "stopAndReturnStateDiff",
|
|
@@ -8112,6 +9427,62 @@
|
|
|
8112
9427
|
"outputs": [],
|
|
8113
9428
|
"stateMutability": "nonpayable"
|
|
8114
9429
|
},
|
|
9430
|
+
{
|
|
9431
|
+
"type": "function",
|
|
9432
|
+
"name": "stopSnapshotGas",
|
|
9433
|
+
"inputs": [
|
|
9434
|
+
{
|
|
9435
|
+
"name": "group",
|
|
9436
|
+
"type": "string",
|
|
9437
|
+
"internalType": "string"
|
|
9438
|
+
},
|
|
9439
|
+
{
|
|
9440
|
+
"name": "name",
|
|
9441
|
+
"type": "string",
|
|
9442
|
+
"internalType": "string"
|
|
9443
|
+
}
|
|
9444
|
+
],
|
|
9445
|
+
"outputs": [
|
|
9446
|
+
{
|
|
9447
|
+
"name": "gasUsed",
|
|
9448
|
+
"type": "uint256",
|
|
9449
|
+
"internalType": "uint256"
|
|
9450
|
+
}
|
|
9451
|
+
],
|
|
9452
|
+
"stateMutability": "nonpayable"
|
|
9453
|
+
},
|
|
9454
|
+
{
|
|
9455
|
+
"type": "function",
|
|
9456
|
+
"name": "stopSnapshotGas",
|
|
9457
|
+
"inputs": [
|
|
9458
|
+
{
|
|
9459
|
+
"name": "name",
|
|
9460
|
+
"type": "string",
|
|
9461
|
+
"internalType": "string"
|
|
9462
|
+
}
|
|
9463
|
+
],
|
|
9464
|
+
"outputs": [
|
|
9465
|
+
{
|
|
9466
|
+
"name": "gasUsed",
|
|
9467
|
+
"type": "uint256",
|
|
9468
|
+
"internalType": "uint256"
|
|
9469
|
+
}
|
|
9470
|
+
],
|
|
9471
|
+
"stateMutability": "nonpayable"
|
|
9472
|
+
},
|
|
9473
|
+
{
|
|
9474
|
+
"type": "function",
|
|
9475
|
+
"name": "stopSnapshotGas",
|
|
9476
|
+
"inputs": [],
|
|
9477
|
+
"outputs": [
|
|
9478
|
+
{
|
|
9479
|
+
"name": "gasUsed",
|
|
9480
|
+
"type": "uint256",
|
|
9481
|
+
"internalType": "uint256"
|
|
9482
|
+
}
|
|
9483
|
+
],
|
|
9484
|
+
"stateMutability": "nonpayable"
|
|
9485
|
+
},
|
|
8115
9486
|
{
|
|
8116
9487
|
"type": "function",
|
|
8117
9488
|
"name": "store",
|