@venusprotocol/isolated-pools 4.2.0-dev.4 → 4.2.0-dev.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.
Files changed (26) hide show
  1. package/deployments/basemainnet/VToken_vwstETH_Core.json +257 -0
  2. package/deployments/basemainnet/solcInputs/bf6504e8406cd8d7763a8de7cdacad9c.json +454 -0
  3. package/deployments/basemainnet.json +74 -0
  4. package/deployments/basemainnet_addresses.json +1 -0
  5. package/deployments/basesepolia/MockwstETH.json +458 -0
  6. package/deployments/basesepolia/VToken_vwstETH_Core.json +257 -0
  7. package/deployments/basesepolia/solcInputs/bf6504e8406cd8d7763a8de7cdacad9c.json +454 -0
  8. package/deployments/basesepolia.json +383 -0
  9. package/deployments/basesepolia_addresses.json +2 -0
  10. package/deployments/zksyncmainnet/JumpRateModelV2_base0bps_slope900bps_jump30000bps_kink4500bps.json +668 -0
  11. package/deployments/zksyncmainnet/VToken_vwstETH_Core.json +317 -0
  12. package/deployments/zksyncmainnet/solcInputs/4891999ef4820941e6f6f9716556c887.json +169 -0
  13. package/deployments/zksyncmainnet.json +434 -0
  14. package/deployments/zksyncmainnet_addresses.json +3 -1
  15. package/deployments/zksyncsepolia/JumpRateModelV2_base0bps_slope900bps_jump30000bps_kink4500bps.json +668 -0
  16. package/deployments/zksyncsepolia/MockwstETH.json +519 -0
  17. package/deployments/zksyncsepolia/VToken_vwstETH_Core.json +317 -0
  18. package/deployments/zksyncsepolia/solcInputs/4891999ef4820941e6f6f9716556c887.json +169 -0
  19. package/deployments/zksyncsepolia.json +774 -31
  20. package/deployments/zksyncsepolia_addresses.json +4 -1
  21. package/dist/deployments/basemainnet.json +74 -0
  22. package/dist/deployments/basesepolia.json +383 -0
  23. package/dist/deployments/zksyncmainnet.json +434 -0
  24. package/dist/deployments/zksyncsepolia.json +774 -31
  25. package/dist/helpers/deploymentConfig.js +100 -0
  26. package/package.json +1 -1
@@ -4180,6 +4180,366 @@
4180
4180
  }
4181
4181
  ]
4182
4182
  },
4183
+ "JumpRateModelV2_base0bps_slope900bps_jump30000bps_kink4500bps": {
4184
+ "address": "0x41113B64774a5980bCC09011855756775A297876",
4185
+ "abi": [
4186
+ {
4187
+ "inputs": [
4188
+ {
4189
+ "internalType": "uint256",
4190
+ "name": "baseRatePerYear_",
4191
+ "type": "uint256"
4192
+ },
4193
+ {
4194
+ "internalType": "uint256",
4195
+ "name": "multiplierPerYear_",
4196
+ "type": "uint256"
4197
+ },
4198
+ {
4199
+ "internalType": "uint256",
4200
+ "name": "jumpMultiplierPerYear_",
4201
+ "type": "uint256"
4202
+ },
4203
+ {
4204
+ "internalType": "uint256",
4205
+ "name": "kink_",
4206
+ "type": "uint256"
4207
+ },
4208
+ {
4209
+ "internalType": "contract IAccessControlManagerV8",
4210
+ "name": "accessControlManager_",
4211
+ "type": "address"
4212
+ },
4213
+ {
4214
+ "internalType": "bool",
4215
+ "name": "timeBased_",
4216
+ "type": "bool"
4217
+ },
4218
+ {
4219
+ "internalType": "uint256",
4220
+ "name": "blocksPerYear_",
4221
+ "type": "uint256"
4222
+ }
4223
+ ],
4224
+ "stateMutability": "nonpayable",
4225
+ "type": "constructor"
4226
+ },
4227
+ {
4228
+ "inputs": [],
4229
+ "name": "InvalidBlocksPerYear",
4230
+ "type": "error"
4231
+ },
4232
+ {
4233
+ "inputs": [],
4234
+ "name": "InvalidTimeBasedConfiguration",
4235
+ "type": "error"
4236
+ },
4237
+ {
4238
+ "inputs": [
4239
+ {
4240
+ "internalType": "address",
4241
+ "name": "sender",
4242
+ "type": "address"
4243
+ },
4244
+ {
4245
+ "internalType": "address",
4246
+ "name": "calledContract",
4247
+ "type": "address"
4248
+ },
4249
+ {
4250
+ "internalType": "string",
4251
+ "name": "methodSignature",
4252
+ "type": "string"
4253
+ }
4254
+ ],
4255
+ "name": "Unauthorized",
4256
+ "type": "error"
4257
+ },
4258
+ {
4259
+ "anonymous": false,
4260
+ "inputs": [
4261
+ {
4262
+ "indexed": false,
4263
+ "internalType": "uint256",
4264
+ "name": "baseRatePerBlockOrTimestamp",
4265
+ "type": "uint256"
4266
+ },
4267
+ {
4268
+ "indexed": false,
4269
+ "internalType": "uint256",
4270
+ "name": "multiplierPerBlockOrTimestamp",
4271
+ "type": "uint256"
4272
+ },
4273
+ {
4274
+ "indexed": false,
4275
+ "internalType": "uint256",
4276
+ "name": "jumpMultiplierPerBlockOrTimestamp",
4277
+ "type": "uint256"
4278
+ },
4279
+ {
4280
+ "indexed": false,
4281
+ "internalType": "uint256",
4282
+ "name": "kink",
4283
+ "type": "uint256"
4284
+ }
4285
+ ],
4286
+ "name": "NewInterestParams",
4287
+ "type": "event"
4288
+ },
4289
+ {
4290
+ "inputs": [],
4291
+ "name": "accessControlManager",
4292
+ "outputs": [
4293
+ {
4294
+ "internalType": "contract IAccessControlManagerV8",
4295
+ "name": "",
4296
+ "type": "address"
4297
+ }
4298
+ ],
4299
+ "stateMutability": "view",
4300
+ "type": "function"
4301
+ },
4302
+ {
4303
+ "inputs": [],
4304
+ "name": "baseRatePerBlock",
4305
+ "outputs": [
4306
+ {
4307
+ "internalType": "uint256",
4308
+ "name": "",
4309
+ "type": "uint256"
4310
+ }
4311
+ ],
4312
+ "stateMutability": "view",
4313
+ "type": "function"
4314
+ },
4315
+ {
4316
+ "inputs": [],
4317
+ "name": "blocksOrSecondsPerYear",
4318
+ "outputs": [
4319
+ {
4320
+ "internalType": "uint256",
4321
+ "name": "",
4322
+ "type": "uint256"
4323
+ }
4324
+ ],
4325
+ "stateMutability": "view",
4326
+ "type": "function"
4327
+ },
4328
+ {
4329
+ "inputs": [],
4330
+ "name": "getBlockNumberOrTimestamp",
4331
+ "outputs": [
4332
+ {
4333
+ "internalType": "uint256",
4334
+ "name": "",
4335
+ "type": "uint256"
4336
+ }
4337
+ ],
4338
+ "stateMutability": "view",
4339
+ "type": "function"
4340
+ },
4341
+ {
4342
+ "inputs": [
4343
+ {
4344
+ "internalType": "uint256",
4345
+ "name": "cash",
4346
+ "type": "uint256"
4347
+ },
4348
+ {
4349
+ "internalType": "uint256",
4350
+ "name": "borrows",
4351
+ "type": "uint256"
4352
+ },
4353
+ {
4354
+ "internalType": "uint256",
4355
+ "name": "reserves",
4356
+ "type": "uint256"
4357
+ },
4358
+ {
4359
+ "internalType": "uint256",
4360
+ "name": "badDebt",
4361
+ "type": "uint256"
4362
+ }
4363
+ ],
4364
+ "name": "getBorrowRate",
4365
+ "outputs": [
4366
+ {
4367
+ "internalType": "uint256",
4368
+ "name": "",
4369
+ "type": "uint256"
4370
+ }
4371
+ ],
4372
+ "stateMutability": "view",
4373
+ "type": "function"
4374
+ },
4375
+ {
4376
+ "inputs": [
4377
+ {
4378
+ "internalType": "uint256",
4379
+ "name": "cash",
4380
+ "type": "uint256"
4381
+ },
4382
+ {
4383
+ "internalType": "uint256",
4384
+ "name": "borrows",
4385
+ "type": "uint256"
4386
+ },
4387
+ {
4388
+ "internalType": "uint256",
4389
+ "name": "reserves",
4390
+ "type": "uint256"
4391
+ },
4392
+ {
4393
+ "internalType": "uint256",
4394
+ "name": "reserveFactorMantissa",
4395
+ "type": "uint256"
4396
+ },
4397
+ {
4398
+ "internalType": "uint256",
4399
+ "name": "badDebt",
4400
+ "type": "uint256"
4401
+ }
4402
+ ],
4403
+ "name": "getSupplyRate",
4404
+ "outputs": [
4405
+ {
4406
+ "internalType": "uint256",
4407
+ "name": "",
4408
+ "type": "uint256"
4409
+ }
4410
+ ],
4411
+ "stateMutability": "view",
4412
+ "type": "function"
4413
+ },
4414
+ {
4415
+ "inputs": [],
4416
+ "name": "isInterestRateModel",
4417
+ "outputs": [
4418
+ {
4419
+ "internalType": "bool",
4420
+ "name": "",
4421
+ "type": "bool"
4422
+ }
4423
+ ],
4424
+ "stateMutability": "pure",
4425
+ "type": "function"
4426
+ },
4427
+ {
4428
+ "inputs": [],
4429
+ "name": "isTimeBased",
4430
+ "outputs": [
4431
+ {
4432
+ "internalType": "bool",
4433
+ "name": "",
4434
+ "type": "bool"
4435
+ }
4436
+ ],
4437
+ "stateMutability": "view",
4438
+ "type": "function"
4439
+ },
4440
+ {
4441
+ "inputs": [],
4442
+ "name": "jumpMultiplierPerBlock",
4443
+ "outputs": [
4444
+ {
4445
+ "internalType": "uint256",
4446
+ "name": "",
4447
+ "type": "uint256"
4448
+ }
4449
+ ],
4450
+ "stateMutability": "view",
4451
+ "type": "function"
4452
+ },
4453
+ {
4454
+ "inputs": [],
4455
+ "name": "kink",
4456
+ "outputs": [
4457
+ {
4458
+ "internalType": "uint256",
4459
+ "name": "",
4460
+ "type": "uint256"
4461
+ }
4462
+ ],
4463
+ "stateMutability": "view",
4464
+ "type": "function"
4465
+ },
4466
+ {
4467
+ "inputs": [],
4468
+ "name": "multiplierPerBlock",
4469
+ "outputs": [
4470
+ {
4471
+ "internalType": "uint256",
4472
+ "name": "",
4473
+ "type": "uint256"
4474
+ }
4475
+ ],
4476
+ "stateMutability": "view",
4477
+ "type": "function"
4478
+ },
4479
+ {
4480
+ "inputs": [
4481
+ {
4482
+ "internalType": "uint256",
4483
+ "name": "baseRatePerYear",
4484
+ "type": "uint256"
4485
+ },
4486
+ {
4487
+ "internalType": "uint256",
4488
+ "name": "multiplierPerYear",
4489
+ "type": "uint256"
4490
+ },
4491
+ {
4492
+ "internalType": "uint256",
4493
+ "name": "jumpMultiplierPerYear",
4494
+ "type": "uint256"
4495
+ },
4496
+ {
4497
+ "internalType": "uint256",
4498
+ "name": "kink_",
4499
+ "type": "uint256"
4500
+ }
4501
+ ],
4502
+ "name": "updateJumpRateModel",
4503
+ "outputs": [],
4504
+ "stateMutability": "nonpayable",
4505
+ "type": "function"
4506
+ },
4507
+ {
4508
+ "inputs": [
4509
+ {
4510
+ "internalType": "uint256",
4511
+ "name": "cash",
4512
+ "type": "uint256"
4513
+ },
4514
+ {
4515
+ "internalType": "uint256",
4516
+ "name": "borrows",
4517
+ "type": "uint256"
4518
+ },
4519
+ {
4520
+ "internalType": "uint256",
4521
+ "name": "reserves",
4522
+ "type": "uint256"
4523
+ },
4524
+ {
4525
+ "internalType": "uint256",
4526
+ "name": "badDebt",
4527
+ "type": "uint256"
4528
+ }
4529
+ ],
4530
+ "name": "utilizationRate",
4531
+ "outputs": [
4532
+ {
4533
+ "internalType": "uint256",
4534
+ "name": "",
4535
+ "type": "uint256"
4536
+ }
4537
+ ],
4538
+ "stateMutability": "pure",
4539
+ "type": "function"
4540
+ }
4541
+ ]
4542
+ },
4183
4543
  "MockUSDC.e": {
4184
4544
  "address": "0xF98780C8a0843829f98e624d83C3FfDDf43BE984",
4185
4545
  "abi": [
@@ -4489,8 +4849,317 @@
4489
4849
  }
4490
4850
  ]
4491
4851
  },
4492
- "MockUSDC": {
4493
- "address": "0x512F8b4a3c466a30e8c9BAC9c64638dd710968c2",
4852
+ "MockUSDC": {
4853
+ "address": "0x512F8b4a3c466a30e8c9BAC9c64638dd710968c2",
4854
+ "abi": [
4855
+ {
4856
+ "inputs": [
4857
+ {
4858
+ "internalType": "string",
4859
+ "name": "name_",
4860
+ "type": "string"
4861
+ },
4862
+ {
4863
+ "internalType": "string",
4864
+ "name": "symbol_",
4865
+ "type": "string"
4866
+ },
4867
+ {
4868
+ "internalType": "uint8",
4869
+ "name": "decimals_",
4870
+ "type": "uint8"
4871
+ }
4872
+ ],
4873
+ "stateMutability": "nonpayable",
4874
+ "type": "constructor"
4875
+ },
4876
+ {
4877
+ "anonymous": false,
4878
+ "inputs": [
4879
+ {
4880
+ "indexed": true,
4881
+ "internalType": "address",
4882
+ "name": "owner",
4883
+ "type": "address"
4884
+ },
4885
+ {
4886
+ "indexed": true,
4887
+ "internalType": "address",
4888
+ "name": "spender",
4889
+ "type": "address"
4890
+ },
4891
+ {
4892
+ "indexed": false,
4893
+ "internalType": "uint256",
4894
+ "name": "value",
4895
+ "type": "uint256"
4896
+ }
4897
+ ],
4898
+ "name": "Approval",
4899
+ "type": "event"
4900
+ },
4901
+ {
4902
+ "anonymous": false,
4903
+ "inputs": [
4904
+ {
4905
+ "indexed": true,
4906
+ "internalType": "address",
4907
+ "name": "from",
4908
+ "type": "address"
4909
+ },
4910
+ {
4911
+ "indexed": true,
4912
+ "internalType": "address",
4913
+ "name": "to",
4914
+ "type": "address"
4915
+ },
4916
+ {
4917
+ "indexed": false,
4918
+ "internalType": "uint256",
4919
+ "name": "value",
4920
+ "type": "uint256"
4921
+ }
4922
+ ],
4923
+ "name": "Transfer",
4924
+ "type": "event"
4925
+ },
4926
+ {
4927
+ "inputs": [
4928
+ {
4929
+ "internalType": "address",
4930
+ "name": "owner",
4931
+ "type": "address"
4932
+ },
4933
+ {
4934
+ "internalType": "address",
4935
+ "name": "spender",
4936
+ "type": "address"
4937
+ }
4938
+ ],
4939
+ "name": "allowance",
4940
+ "outputs": [
4941
+ {
4942
+ "internalType": "uint256",
4943
+ "name": "",
4944
+ "type": "uint256"
4945
+ }
4946
+ ],
4947
+ "stateMutability": "view",
4948
+ "type": "function"
4949
+ },
4950
+ {
4951
+ "inputs": [
4952
+ {
4953
+ "internalType": "address",
4954
+ "name": "spender",
4955
+ "type": "address"
4956
+ },
4957
+ {
4958
+ "internalType": "uint256",
4959
+ "name": "amount",
4960
+ "type": "uint256"
4961
+ }
4962
+ ],
4963
+ "name": "approve",
4964
+ "outputs": [
4965
+ {
4966
+ "internalType": "bool",
4967
+ "name": "",
4968
+ "type": "bool"
4969
+ }
4970
+ ],
4971
+ "stateMutability": "nonpayable",
4972
+ "type": "function"
4973
+ },
4974
+ {
4975
+ "inputs": [
4976
+ {
4977
+ "internalType": "address",
4978
+ "name": "account",
4979
+ "type": "address"
4980
+ }
4981
+ ],
4982
+ "name": "balanceOf",
4983
+ "outputs": [
4984
+ {
4985
+ "internalType": "uint256",
4986
+ "name": "",
4987
+ "type": "uint256"
4988
+ }
4989
+ ],
4990
+ "stateMutability": "view",
4991
+ "type": "function"
4992
+ },
4993
+ {
4994
+ "inputs": [],
4995
+ "name": "decimals",
4996
+ "outputs": [
4997
+ {
4998
+ "internalType": "uint8",
4999
+ "name": "",
5000
+ "type": "uint8"
5001
+ }
5002
+ ],
5003
+ "stateMutability": "view",
5004
+ "type": "function"
5005
+ },
5006
+ {
5007
+ "inputs": [
5008
+ {
5009
+ "internalType": "address",
5010
+ "name": "spender",
5011
+ "type": "address"
5012
+ },
5013
+ {
5014
+ "internalType": "uint256",
5015
+ "name": "subtractedValue",
5016
+ "type": "uint256"
5017
+ }
5018
+ ],
5019
+ "name": "decreaseAllowance",
5020
+ "outputs": [
5021
+ {
5022
+ "internalType": "bool",
5023
+ "name": "",
5024
+ "type": "bool"
5025
+ }
5026
+ ],
5027
+ "stateMutability": "nonpayable",
5028
+ "type": "function"
5029
+ },
5030
+ {
5031
+ "inputs": [
5032
+ {
5033
+ "internalType": "uint256",
5034
+ "name": "amount",
5035
+ "type": "uint256"
5036
+ }
5037
+ ],
5038
+ "name": "faucet",
5039
+ "outputs": [],
5040
+ "stateMutability": "nonpayable",
5041
+ "type": "function"
5042
+ },
5043
+ {
5044
+ "inputs": [
5045
+ {
5046
+ "internalType": "address",
5047
+ "name": "spender",
5048
+ "type": "address"
5049
+ },
5050
+ {
5051
+ "internalType": "uint256",
5052
+ "name": "addedValue",
5053
+ "type": "uint256"
5054
+ }
5055
+ ],
5056
+ "name": "increaseAllowance",
5057
+ "outputs": [
5058
+ {
5059
+ "internalType": "bool",
5060
+ "name": "",
5061
+ "type": "bool"
5062
+ }
5063
+ ],
5064
+ "stateMutability": "nonpayable",
5065
+ "type": "function"
5066
+ },
5067
+ {
5068
+ "inputs": [],
5069
+ "name": "name",
5070
+ "outputs": [
5071
+ {
5072
+ "internalType": "string",
5073
+ "name": "",
5074
+ "type": "string"
5075
+ }
5076
+ ],
5077
+ "stateMutability": "view",
5078
+ "type": "function"
5079
+ },
5080
+ {
5081
+ "inputs": [],
5082
+ "name": "symbol",
5083
+ "outputs": [
5084
+ {
5085
+ "internalType": "string",
5086
+ "name": "",
5087
+ "type": "string"
5088
+ }
5089
+ ],
5090
+ "stateMutability": "view",
5091
+ "type": "function"
5092
+ },
5093
+ {
5094
+ "inputs": [],
5095
+ "name": "totalSupply",
5096
+ "outputs": [
5097
+ {
5098
+ "internalType": "uint256",
5099
+ "name": "",
5100
+ "type": "uint256"
5101
+ }
5102
+ ],
5103
+ "stateMutability": "view",
5104
+ "type": "function"
5105
+ },
5106
+ {
5107
+ "inputs": [
5108
+ {
5109
+ "internalType": "address",
5110
+ "name": "to",
5111
+ "type": "address"
5112
+ },
5113
+ {
5114
+ "internalType": "uint256",
5115
+ "name": "amount",
5116
+ "type": "uint256"
5117
+ }
5118
+ ],
5119
+ "name": "transfer",
5120
+ "outputs": [
5121
+ {
5122
+ "internalType": "bool",
5123
+ "name": "",
5124
+ "type": "bool"
5125
+ }
5126
+ ],
5127
+ "stateMutability": "nonpayable",
5128
+ "type": "function"
5129
+ },
5130
+ {
5131
+ "inputs": [
5132
+ {
5133
+ "internalType": "address",
5134
+ "name": "from",
5135
+ "type": "address"
5136
+ },
5137
+ {
5138
+ "internalType": "address",
5139
+ "name": "to",
5140
+ "type": "address"
5141
+ },
5142
+ {
5143
+ "internalType": "uint256",
5144
+ "name": "amount",
5145
+ "type": "uint256"
5146
+ }
5147
+ ],
5148
+ "name": "transferFrom",
5149
+ "outputs": [
5150
+ {
5151
+ "internalType": "bool",
5152
+ "name": "",
5153
+ "type": "bool"
5154
+ }
5155
+ ],
5156
+ "stateMutability": "nonpayable",
5157
+ "type": "function"
5158
+ }
5159
+ ]
5160
+ },
5161
+ "MockUSDM": {
5162
+ "address": "0x5d5334dBa9C727eD81b549b6106aE37Ea137076D",
4494
5163
  "abi": [
4495
5164
  {
4496
5165
  "inputs": [
@@ -4798,8 +5467,8 @@
4798
5467
  }
4799
5468
  ]
4800
5469
  },
4801
- "MockUSDM": {
4802
- "address": "0x5d5334dBa9C727eD81b549b6106aE37Ea137076D",
5470
+ "MockUSDT": {
5471
+ "address": "0x9Bf62C9C6AaB7AB8e01271f0d7A401306579709B",
4803
5472
  "abi": [
4804
5473
  {
4805
5474
  "inputs": [
@@ -5107,8 +5776,8 @@
5107
5776
  }
5108
5777
  ]
5109
5778
  },
5110
- "MockUSDT": {
5111
- "address": "0x9Bf62C9C6AaB7AB8e01271f0d7A401306579709B",
5779
+ "MockWBTC": {
5780
+ "address": "0xeF891B3FA37FfD83Ce8cC7b682E4CADBD8fFc6F0",
5112
5781
  "abi": [
5113
5782
  {
5114
5783
  "inputs": [
@@ -5416,8 +6085,8 @@
5416
6085
  }
5417
6086
  ]
5418
6087
  },
5419
- "MockWBTC": {
5420
- "address": "0xeF891B3FA37FfD83Ce8cC7b682E4CADBD8fFc6F0",
6088
+ "MockZK": {
6089
+ "address": "0x8A2E9048F5d658E88D6eD89DdD1F3B5cA0250B9F",
5421
6090
  "abi": [
5422
6091
  {
5423
6092
  "inputs": [
@@ -5725,8 +6394,8 @@
5725
6394
  }
5726
6395
  ]
5727
6396
  },
5728
- "MockZK": {
5729
- "address": "0x8A2E9048F5d658E88D6eD89DdD1F3B5cA0250B9F",
6397
+ "MockwUSDM": {
6398
+ "address": "0x0b3C8fB109f144f6296bF4Ac52F191181bEa003a",
5730
6399
  "abi": [
5731
6400
  {
5732
6401
  "inputs": [
@@ -5866,6 +6535,25 @@
5866
6535
  "stateMutability": "view",
5867
6536
  "type": "function"
5868
6537
  },
6538
+ {
6539
+ "inputs": [
6540
+ {
6541
+ "internalType": "uint256",
6542
+ "name": "shares",
6543
+ "type": "uint256"
6544
+ }
6545
+ ],
6546
+ "name": "convertToAssets",
6547
+ "outputs": [
6548
+ {
6549
+ "internalType": "uint256",
6550
+ "name": "",
6551
+ "type": "uint256"
6552
+ }
6553
+ ],
6554
+ "stateMutability": "pure",
6555
+ "type": "function"
6556
+ },
5869
6557
  {
5870
6558
  "inputs": [],
5871
6559
  "name": "decimals",
@@ -6034,8 +6722,8 @@
6034
6722
  }
6035
6723
  ]
6036
6724
  },
6037
- "MockwUSDM": {
6038
- "address": "0x0b3C8fB109f144f6296bF4Ac52F191181bEa003a",
6725
+ "MockwstETH": {
6726
+ "address": "0x8507bb4F4f0915D05432011E384850B65a7FCcD1",
6039
6727
  "abi": [
6040
6728
  {
6041
6729
  "inputs": [
@@ -6175,25 +6863,6 @@
6175
6863
  "stateMutability": "view",
6176
6864
  "type": "function"
6177
6865
  },
6178
- {
6179
- "inputs": [
6180
- {
6181
- "internalType": "uint256",
6182
- "name": "shares",
6183
- "type": "uint256"
6184
- }
6185
- ],
6186
- "name": "convertToAssets",
6187
- "outputs": [
6188
- {
6189
- "internalType": "uint256",
6190
- "name": "",
6191
- "type": "uint256"
6192
- }
6193
- ],
6194
- "stateMutability": "pure",
6195
- "type": "function"
6196
- },
6197
6866
  {
6198
6867
  "inputs": [],
6199
6868
  "name": "decimals",
@@ -14802,6 +15471,80 @@
14802
15471
  "type": "receive"
14803
15472
  }
14804
15473
  ]
15474
+ },
15475
+ "VToken_vwstETH_Core": {
15476
+ "address": "0x853ed4e6ab3a6747d71Bb79eDbc0A64FF87D31BF",
15477
+ "abi": [
15478
+ {
15479
+ "inputs": [
15480
+ {
15481
+ "internalType": "address",
15482
+ "name": "beacon",
15483
+ "type": "address"
15484
+ },
15485
+ {
15486
+ "internalType": "bytes",
15487
+ "name": "data",
15488
+ "type": "bytes"
15489
+ }
15490
+ ],
15491
+ "stateMutability": "payable",
15492
+ "type": "constructor"
15493
+ },
15494
+ {
15495
+ "anonymous": false,
15496
+ "inputs": [
15497
+ {
15498
+ "indexed": false,
15499
+ "internalType": "address",
15500
+ "name": "previousAdmin",
15501
+ "type": "address"
15502
+ },
15503
+ {
15504
+ "indexed": false,
15505
+ "internalType": "address",
15506
+ "name": "newAdmin",
15507
+ "type": "address"
15508
+ }
15509
+ ],
15510
+ "name": "AdminChanged",
15511
+ "type": "event"
15512
+ },
15513
+ {
15514
+ "anonymous": false,
15515
+ "inputs": [
15516
+ {
15517
+ "indexed": true,
15518
+ "internalType": "address",
15519
+ "name": "beacon",
15520
+ "type": "address"
15521
+ }
15522
+ ],
15523
+ "name": "BeaconUpgraded",
15524
+ "type": "event"
15525
+ },
15526
+ {
15527
+ "anonymous": false,
15528
+ "inputs": [
15529
+ {
15530
+ "indexed": true,
15531
+ "internalType": "address",
15532
+ "name": "implementation",
15533
+ "type": "address"
15534
+ }
15535
+ ],
15536
+ "name": "Upgraded",
15537
+ "type": "event"
15538
+ },
15539
+ {
15540
+ "stateMutability": "payable",
15541
+ "type": "fallback"
15542
+ },
15543
+ {
15544
+ "stateMutability": "payable",
15545
+ "type": "receive"
15546
+ }
15547
+ ]
14805
15548
  }
14806
15549
  }
14807
15550
  }