@venusprotocol/isolated-pools 4.2.0-dev.12 → 4.2.0-dev.14

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 (38) hide show
  1. package/deployments/ethereum/JumpRateModelV2_base0bps_slope0bps_jump0bps_kink0bps_bpy2628000.json +600 -0
  2. package/deployments/ethereum/JumpRateModelV2_base0bps_slope1000bps_jump25000bps_kink8000bps_bpy2628000.json +608 -0
  3. package/deployments/ethereum/VToken_vUSDe_Core.json +257 -0
  4. package/deployments/ethereum/VToken_vsUSDe_Core.json +257 -0
  5. package/deployments/ethereum/solcInputs/63aefd090744a1a82e68ec023a9846aa.json +460 -0
  6. package/deployments/ethereum.json +1344 -476
  7. package/deployments/ethereum_addresses.json +4 -0
  8. package/deployments/sepolia/JumpRateModelV2_base0bps_slope0bps_jump0bps_kink0bps_bpy2628000.json +600 -0
  9. package/deployments/sepolia/JumpRateModelV2_base0bps_slope1000bps_jump25000bps_kink8000bps_bpy2628000.json +608 -0
  10. package/deployments/sepolia/VToken_vUSDe_Core.json +257 -0
  11. package/deployments/sepolia/VToken_vsUSDe_Core.json +257 -0
  12. package/deployments/sepolia/solcInputs/63aefd090744a1a82e68ec023a9846aa.json +460 -0
  13. package/deployments/sepolia.json +1113 -245
  14. package/deployments/sepolia_addresses.json +4 -0
  15. package/deployments/unichainmainnet/JumpRateModelV2_base0bps_slope900bps_jump30000bps_kink4500bps_timeBased.json +608 -0
  16. package/deployments/unichainmainnet/VToken_vweETH_Core.json +257 -0
  17. package/deployments/unichainmainnet/VToken_vwstETH_Core.json +257 -0
  18. package/deployments/unichainmainnet/solcInputs/ce6625b54019da2185242b008485096c.json +487 -0
  19. package/deployments/unichainmainnet.json +508 -0
  20. package/deployments/unichainmainnet_addresses.json +4 -1
  21. package/deployments/unichainsepolia/JumpRateModelV2_base0bps_slope900bps_jump30000bps_kink4500bps_timeBased.json +608 -0
  22. package/deployments/unichainsepolia/MockweETH.json +458 -0
  23. package/deployments/unichainsepolia/MockwstETH.json +458 -0
  24. package/deployments/unichainsepolia/VToken_vweETH_Core.json +257 -0
  25. package/deployments/unichainsepolia/VToken_vwstETH_Core.json +257 -0
  26. package/deployments/unichainsepolia/solcInputs/ce6625b54019da2185242b008485096c.json +487 -0
  27. package/deployments/unichainsepolia.json +1132 -6
  28. package/deployments/unichainsepolia_addresses.json +6 -1
  29. package/dist/deployments/ethereum.json +1344 -476
  30. package/dist/deployments/sepolia.json +1113 -245
  31. package/dist/deployments/unichainmainnet.json +508 -0
  32. package/dist/deployments/unichainsepolia.json +1132 -6
  33. package/dist/helpers/deploymentConfig.js +192 -2
  34. package/dist/typechain/factories/IVToken__factory.d.ts +5 -1
  35. package/dist/typechain/factories/IVToken__factory.js +201 -1
  36. package/package.json +1 -1
  37. package/typechain/IVToken.d.ts +341 -4
  38. package/typechain/factories/IVToken__factory.ts +201 -1
@@ -4272,6 +4272,366 @@
4272
4272
  }
4273
4273
  ]
4274
4274
  },
4275
+ "JumpRateModelV2_base0bps_slope900bps_jump30000bps_kink4500bps_timeBased": {
4276
+ "address": "0xa8f62DE954852c39BC66ff9B103c8D4758982309",
4277
+ "abi": [
4278
+ {
4279
+ "inputs": [
4280
+ {
4281
+ "internalType": "uint256",
4282
+ "name": "baseRatePerYear_",
4283
+ "type": "uint256"
4284
+ },
4285
+ {
4286
+ "internalType": "uint256",
4287
+ "name": "multiplierPerYear_",
4288
+ "type": "uint256"
4289
+ },
4290
+ {
4291
+ "internalType": "uint256",
4292
+ "name": "jumpMultiplierPerYear_",
4293
+ "type": "uint256"
4294
+ },
4295
+ {
4296
+ "internalType": "uint256",
4297
+ "name": "kink_",
4298
+ "type": "uint256"
4299
+ },
4300
+ {
4301
+ "internalType": "contract IAccessControlManagerV8",
4302
+ "name": "accessControlManager_",
4303
+ "type": "address"
4304
+ },
4305
+ {
4306
+ "internalType": "bool",
4307
+ "name": "timeBased_",
4308
+ "type": "bool"
4309
+ },
4310
+ {
4311
+ "internalType": "uint256",
4312
+ "name": "blocksPerYear_",
4313
+ "type": "uint256"
4314
+ }
4315
+ ],
4316
+ "stateMutability": "nonpayable",
4317
+ "type": "constructor"
4318
+ },
4319
+ {
4320
+ "inputs": [],
4321
+ "name": "InvalidBlocksPerYear",
4322
+ "type": "error"
4323
+ },
4324
+ {
4325
+ "inputs": [],
4326
+ "name": "InvalidTimeBasedConfiguration",
4327
+ "type": "error"
4328
+ },
4329
+ {
4330
+ "inputs": [
4331
+ {
4332
+ "internalType": "address",
4333
+ "name": "sender",
4334
+ "type": "address"
4335
+ },
4336
+ {
4337
+ "internalType": "address",
4338
+ "name": "calledContract",
4339
+ "type": "address"
4340
+ },
4341
+ {
4342
+ "internalType": "string",
4343
+ "name": "methodSignature",
4344
+ "type": "string"
4345
+ }
4346
+ ],
4347
+ "name": "Unauthorized",
4348
+ "type": "error"
4349
+ },
4350
+ {
4351
+ "anonymous": false,
4352
+ "inputs": [
4353
+ {
4354
+ "indexed": false,
4355
+ "internalType": "uint256",
4356
+ "name": "baseRatePerBlockOrTimestamp",
4357
+ "type": "uint256"
4358
+ },
4359
+ {
4360
+ "indexed": false,
4361
+ "internalType": "uint256",
4362
+ "name": "multiplierPerBlockOrTimestamp",
4363
+ "type": "uint256"
4364
+ },
4365
+ {
4366
+ "indexed": false,
4367
+ "internalType": "uint256",
4368
+ "name": "jumpMultiplierPerBlockOrTimestamp",
4369
+ "type": "uint256"
4370
+ },
4371
+ {
4372
+ "indexed": false,
4373
+ "internalType": "uint256",
4374
+ "name": "kink",
4375
+ "type": "uint256"
4376
+ }
4377
+ ],
4378
+ "name": "NewInterestParams",
4379
+ "type": "event"
4380
+ },
4381
+ {
4382
+ "inputs": [],
4383
+ "name": "accessControlManager",
4384
+ "outputs": [
4385
+ {
4386
+ "internalType": "contract IAccessControlManagerV8",
4387
+ "name": "",
4388
+ "type": "address"
4389
+ }
4390
+ ],
4391
+ "stateMutability": "view",
4392
+ "type": "function"
4393
+ },
4394
+ {
4395
+ "inputs": [],
4396
+ "name": "baseRatePerBlock",
4397
+ "outputs": [
4398
+ {
4399
+ "internalType": "uint256",
4400
+ "name": "",
4401
+ "type": "uint256"
4402
+ }
4403
+ ],
4404
+ "stateMutability": "view",
4405
+ "type": "function"
4406
+ },
4407
+ {
4408
+ "inputs": [],
4409
+ "name": "blocksOrSecondsPerYear",
4410
+ "outputs": [
4411
+ {
4412
+ "internalType": "uint256",
4413
+ "name": "",
4414
+ "type": "uint256"
4415
+ }
4416
+ ],
4417
+ "stateMutability": "view",
4418
+ "type": "function"
4419
+ },
4420
+ {
4421
+ "inputs": [],
4422
+ "name": "getBlockNumberOrTimestamp",
4423
+ "outputs": [
4424
+ {
4425
+ "internalType": "uint256",
4426
+ "name": "",
4427
+ "type": "uint256"
4428
+ }
4429
+ ],
4430
+ "stateMutability": "view",
4431
+ "type": "function"
4432
+ },
4433
+ {
4434
+ "inputs": [
4435
+ {
4436
+ "internalType": "uint256",
4437
+ "name": "cash",
4438
+ "type": "uint256"
4439
+ },
4440
+ {
4441
+ "internalType": "uint256",
4442
+ "name": "borrows",
4443
+ "type": "uint256"
4444
+ },
4445
+ {
4446
+ "internalType": "uint256",
4447
+ "name": "reserves",
4448
+ "type": "uint256"
4449
+ },
4450
+ {
4451
+ "internalType": "uint256",
4452
+ "name": "badDebt",
4453
+ "type": "uint256"
4454
+ }
4455
+ ],
4456
+ "name": "getBorrowRate",
4457
+ "outputs": [
4458
+ {
4459
+ "internalType": "uint256",
4460
+ "name": "",
4461
+ "type": "uint256"
4462
+ }
4463
+ ],
4464
+ "stateMutability": "view",
4465
+ "type": "function"
4466
+ },
4467
+ {
4468
+ "inputs": [
4469
+ {
4470
+ "internalType": "uint256",
4471
+ "name": "cash",
4472
+ "type": "uint256"
4473
+ },
4474
+ {
4475
+ "internalType": "uint256",
4476
+ "name": "borrows",
4477
+ "type": "uint256"
4478
+ },
4479
+ {
4480
+ "internalType": "uint256",
4481
+ "name": "reserves",
4482
+ "type": "uint256"
4483
+ },
4484
+ {
4485
+ "internalType": "uint256",
4486
+ "name": "reserveFactorMantissa",
4487
+ "type": "uint256"
4488
+ },
4489
+ {
4490
+ "internalType": "uint256",
4491
+ "name": "badDebt",
4492
+ "type": "uint256"
4493
+ }
4494
+ ],
4495
+ "name": "getSupplyRate",
4496
+ "outputs": [
4497
+ {
4498
+ "internalType": "uint256",
4499
+ "name": "",
4500
+ "type": "uint256"
4501
+ }
4502
+ ],
4503
+ "stateMutability": "view",
4504
+ "type": "function"
4505
+ },
4506
+ {
4507
+ "inputs": [],
4508
+ "name": "isInterestRateModel",
4509
+ "outputs": [
4510
+ {
4511
+ "internalType": "bool",
4512
+ "name": "",
4513
+ "type": "bool"
4514
+ }
4515
+ ],
4516
+ "stateMutability": "pure",
4517
+ "type": "function"
4518
+ },
4519
+ {
4520
+ "inputs": [],
4521
+ "name": "isTimeBased",
4522
+ "outputs": [
4523
+ {
4524
+ "internalType": "bool",
4525
+ "name": "",
4526
+ "type": "bool"
4527
+ }
4528
+ ],
4529
+ "stateMutability": "view",
4530
+ "type": "function"
4531
+ },
4532
+ {
4533
+ "inputs": [],
4534
+ "name": "jumpMultiplierPerBlock",
4535
+ "outputs": [
4536
+ {
4537
+ "internalType": "uint256",
4538
+ "name": "",
4539
+ "type": "uint256"
4540
+ }
4541
+ ],
4542
+ "stateMutability": "view",
4543
+ "type": "function"
4544
+ },
4545
+ {
4546
+ "inputs": [],
4547
+ "name": "kink",
4548
+ "outputs": [
4549
+ {
4550
+ "internalType": "uint256",
4551
+ "name": "",
4552
+ "type": "uint256"
4553
+ }
4554
+ ],
4555
+ "stateMutability": "view",
4556
+ "type": "function"
4557
+ },
4558
+ {
4559
+ "inputs": [],
4560
+ "name": "multiplierPerBlock",
4561
+ "outputs": [
4562
+ {
4563
+ "internalType": "uint256",
4564
+ "name": "",
4565
+ "type": "uint256"
4566
+ }
4567
+ ],
4568
+ "stateMutability": "view",
4569
+ "type": "function"
4570
+ },
4571
+ {
4572
+ "inputs": [
4573
+ {
4574
+ "internalType": "uint256",
4575
+ "name": "baseRatePerYear",
4576
+ "type": "uint256"
4577
+ },
4578
+ {
4579
+ "internalType": "uint256",
4580
+ "name": "multiplierPerYear",
4581
+ "type": "uint256"
4582
+ },
4583
+ {
4584
+ "internalType": "uint256",
4585
+ "name": "jumpMultiplierPerYear",
4586
+ "type": "uint256"
4587
+ },
4588
+ {
4589
+ "internalType": "uint256",
4590
+ "name": "kink_",
4591
+ "type": "uint256"
4592
+ }
4593
+ ],
4594
+ "name": "updateJumpRateModel",
4595
+ "outputs": [],
4596
+ "stateMutability": "nonpayable",
4597
+ "type": "function"
4598
+ },
4599
+ {
4600
+ "inputs": [
4601
+ {
4602
+ "internalType": "uint256",
4603
+ "name": "cash",
4604
+ "type": "uint256"
4605
+ },
4606
+ {
4607
+ "internalType": "uint256",
4608
+ "name": "borrows",
4609
+ "type": "uint256"
4610
+ },
4611
+ {
4612
+ "internalType": "uint256",
4613
+ "name": "reserves",
4614
+ "type": "uint256"
4615
+ },
4616
+ {
4617
+ "internalType": "uint256",
4618
+ "name": "badDebt",
4619
+ "type": "uint256"
4620
+ }
4621
+ ],
4622
+ "name": "utilizationRate",
4623
+ "outputs": [
4624
+ {
4625
+ "internalType": "uint256",
4626
+ "name": "",
4627
+ "type": "uint256"
4628
+ }
4629
+ ],
4630
+ "stateMutability": "pure",
4631
+ "type": "function"
4632
+ }
4633
+ ]
4634
+ },
4275
4635
  "MockUNI": {
4276
4636
  "address": "0x873A6C4B1e3D883920541a0C61Dc4dcb772140b3",
4277
4637
  "abi": [
@@ -4581,8 +4941,626 @@
4581
4941
  }
4582
4942
  ]
4583
4943
  },
4584
- "MockUSDC": {
4585
- "address": "0xf16d4774893eB578130a645d5c69E9c4d183F3A5",
4944
+ "MockUSDC": {
4945
+ "address": "0xf16d4774893eB578130a645d5c69E9c4d183F3A5",
4946
+ "abi": [
4947
+ {
4948
+ "inputs": [
4949
+ {
4950
+ "internalType": "string",
4951
+ "name": "name_",
4952
+ "type": "string"
4953
+ },
4954
+ {
4955
+ "internalType": "string",
4956
+ "name": "symbol_",
4957
+ "type": "string"
4958
+ },
4959
+ {
4960
+ "internalType": "uint8",
4961
+ "name": "decimals_",
4962
+ "type": "uint8"
4963
+ }
4964
+ ],
4965
+ "stateMutability": "nonpayable",
4966
+ "type": "constructor"
4967
+ },
4968
+ {
4969
+ "anonymous": false,
4970
+ "inputs": [
4971
+ {
4972
+ "indexed": true,
4973
+ "internalType": "address",
4974
+ "name": "owner",
4975
+ "type": "address"
4976
+ },
4977
+ {
4978
+ "indexed": true,
4979
+ "internalType": "address",
4980
+ "name": "spender",
4981
+ "type": "address"
4982
+ },
4983
+ {
4984
+ "indexed": false,
4985
+ "internalType": "uint256",
4986
+ "name": "value",
4987
+ "type": "uint256"
4988
+ }
4989
+ ],
4990
+ "name": "Approval",
4991
+ "type": "event"
4992
+ },
4993
+ {
4994
+ "anonymous": false,
4995
+ "inputs": [
4996
+ {
4997
+ "indexed": true,
4998
+ "internalType": "address",
4999
+ "name": "from",
5000
+ "type": "address"
5001
+ },
5002
+ {
5003
+ "indexed": true,
5004
+ "internalType": "address",
5005
+ "name": "to",
5006
+ "type": "address"
5007
+ },
5008
+ {
5009
+ "indexed": false,
5010
+ "internalType": "uint256",
5011
+ "name": "value",
5012
+ "type": "uint256"
5013
+ }
5014
+ ],
5015
+ "name": "Transfer",
5016
+ "type": "event"
5017
+ },
5018
+ {
5019
+ "inputs": [
5020
+ {
5021
+ "internalType": "address",
5022
+ "name": "owner",
5023
+ "type": "address"
5024
+ },
5025
+ {
5026
+ "internalType": "address",
5027
+ "name": "spender",
5028
+ "type": "address"
5029
+ }
5030
+ ],
5031
+ "name": "allowance",
5032
+ "outputs": [
5033
+ {
5034
+ "internalType": "uint256",
5035
+ "name": "",
5036
+ "type": "uint256"
5037
+ }
5038
+ ],
5039
+ "stateMutability": "view",
5040
+ "type": "function"
5041
+ },
5042
+ {
5043
+ "inputs": [
5044
+ {
5045
+ "internalType": "address",
5046
+ "name": "spender",
5047
+ "type": "address"
5048
+ },
5049
+ {
5050
+ "internalType": "uint256",
5051
+ "name": "amount",
5052
+ "type": "uint256"
5053
+ }
5054
+ ],
5055
+ "name": "approve",
5056
+ "outputs": [
5057
+ {
5058
+ "internalType": "bool",
5059
+ "name": "",
5060
+ "type": "bool"
5061
+ }
5062
+ ],
5063
+ "stateMutability": "nonpayable",
5064
+ "type": "function"
5065
+ },
5066
+ {
5067
+ "inputs": [
5068
+ {
5069
+ "internalType": "address",
5070
+ "name": "account",
5071
+ "type": "address"
5072
+ }
5073
+ ],
5074
+ "name": "balanceOf",
5075
+ "outputs": [
5076
+ {
5077
+ "internalType": "uint256",
5078
+ "name": "",
5079
+ "type": "uint256"
5080
+ }
5081
+ ],
5082
+ "stateMutability": "view",
5083
+ "type": "function"
5084
+ },
5085
+ {
5086
+ "inputs": [],
5087
+ "name": "decimals",
5088
+ "outputs": [
5089
+ {
5090
+ "internalType": "uint8",
5091
+ "name": "",
5092
+ "type": "uint8"
5093
+ }
5094
+ ],
5095
+ "stateMutability": "view",
5096
+ "type": "function"
5097
+ },
5098
+ {
5099
+ "inputs": [
5100
+ {
5101
+ "internalType": "address",
5102
+ "name": "spender",
5103
+ "type": "address"
5104
+ },
5105
+ {
5106
+ "internalType": "uint256",
5107
+ "name": "subtractedValue",
5108
+ "type": "uint256"
5109
+ }
5110
+ ],
5111
+ "name": "decreaseAllowance",
5112
+ "outputs": [
5113
+ {
5114
+ "internalType": "bool",
5115
+ "name": "",
5116
+ "type": "bool"
5117
+ }
5118
+ ],
5119
+ "stateMutability": "nonpayable",
5120
+ "type": "function"
5121
+ },
5122
+ {
5123
+ "inputs": [
5124
+ {
5125
+ "internalType": "uint256",
5126
+ "name": "amount",
5127
+ "type": "uint256"
5128
+ }
5129
+ ],
5130
+ "name": "faucet",
5131
+ "outputs": [],
5132
+ "stateMutability": "nonpayable",
5133
+ "type": "function"
5134
+ },
5135
+ {
5136
+ "inputs": [
5137
+ {
5138
+ "internalType": "address",
5139
+ "name": "spender",
5140
+ "type": "address"
5141
+ },
5142
+ {
5143
+ "internalType": "uint256",
5144
+ "name": "addedValue",
5145
+ "type": "uint256"
5146
+ }
5147
+ ],
5148
+ "name": "increaseAllowance",
5149
+ "outputs": [
5150
+ {
5151
+ "internalType": "bool",
5152
+ "name": "",
5153
+ "type": "bool"
5154
+ }
5155
+ ],
5156
+ "stateMutability": "nonpayable",
5157
+ "type": "function"
5158
+ },
5159
+ {
5160
+ "inputs": [],
5161
+ "name": "name",
5162
+ "outputs": [
5163
+ {
5164
+ "internalType": "string",
5165
+ "name": "",
5166
+ "type": "string"
5167
+ }
5168
+ ],
5169
+ "stateMutability": "view",
5170
+ "type": "function"
5171
+ },
5172
+ {
5173
+ "inputs": [],
5174
+ "name": "symbol",
5175
+ "outputs": [
5176
+ {
5177
+ "internalType": "string",
5178
+ "name": "",
5179
+ "type": "string"
5180
+ }
5181
+ ],
5182
+ "stateMutability": "view",
5183
+ "type": "function"
5184
+ },
5185
+ {
5186
+ "inputs": [],
5187
+ "name": "totalSupply",
5188
+ "outputs": [
5189
+ {
5190
+ "internalType": "uint256",
5191
+ "name": "",
5192
+ "type": "uint256"
5193
+ }
5194
+ ],
5195
+ "stateMutability": "view",
5196
+ "type": "function"
5197
+ },
5198
+ {
5199
+ "inputs": [
5200
+ {
5201
+ "internalType": "address",
5202
+ "name": "to",
5203
+ "type": "address"
5204
+ },
5205
+ {
5206
+ "internalType": "uint256",
5207
+ "name": "amount",
5208
+ "type": "uint256"
5209
+ }
5210
+ ],
5211
+ "name": "transfer",
5212
+ "outputs": [
5213
+ {
5214
+ "internalType": "bool",
5215
+ "name": "",
5216
+ "type": "bool"
5217
+ }
5218
+ ],
5219
+ "stateMutability": "nonpayable",
5220
+ "type": "function"
5221
+ },
5222
+ {
5223
+ "inputs": [
5224
+ {
5225
+ "internalType": "address",
5226
+ "name": "from",
5227
+ "type": "address"
5228
+ },
5229
+ {
5230
+ "internalType": "address",
5231
+ "name": "to",
5232
+ "type": "address"
5233
+ },
5234
+ {
5235
+ "internalType": "uint256",
5236
+ "name": "amount",
5237
+ "type": "uint256"
5238
+ }
5239
+ ],
5240
+ "name": "transferFrom",
5241
+ "outputs": [
5242
+ {
5243
+ "internalType": "bool",
5244
+ "name": "",
5245
+ "type": "bool"
5246
+ }
5247
+ ],
5248
+ "stateMutability": "nonpayable",
5249
+ "type": "function"
5250
+ }
5251
+ ]
5252
+ },
5253
+ "MockUSDT": {
5254
+ "address": "0x7bc1b67fde923fd3667Fde59684c6c354C8EbFdA",
5255
+ "abi": [
5256
+ {
5257
+ "inputs": [
5258
+ {
5259
+ "internalType": "string",
5260
+ "name": "name_",
5261
+ "type": "string"
5262
+ },
5263
+ {
5264
+ "internalType": "string",
5265
+ "name": "symbol_",
5266
+ "type": "string"
5267
+ },
5268
+ {
5269
+ "internalType": "uint8",
5270
+ "name": "decimals_",
5271
+ "type": "uint8"
5272
+ }
5273
+ ],
5274
+ "stateMutability": "nonpayable",
5275
+ "type": "constructor"
5276
+ },
5277
+ {
5278
+ "anonymous": false,
5279
+ "inputs": [
5280
+ {
5281
+ "indexed": true,
5282
+ "internalType": "address",
5283
+ "name": "owner",
5284
+ "type": "address"
5285
+ },
5286
+ {
5287
+ "indexed": true,
5288
+ "internalType": "address",
5289
+ "name": "spender",
5290
+ "type": "address"
5291
+ },
5292
+ {
5293
+ "indexed": false,
5294
+ "internalType": "uint256",
5295
+ "name": "value",
5296
+ "type": "uint256"
5297
+ }
5298
+ ],
5299
+ "name": "Approval",
5300
+ "type": "event"
5301
+ },
5302
+ {
5303
+ "anonymous": false,
5304
+ "inputs": [
5305
+ {
5306
+ "indexed": true,
5307
+ "internalType": "address",
5308
+ "name": "from",
5309
+ "type": "address"
5310
+ },
5311
+ {
5312
+ "indexed": true,
5313
+ "internalType": "address",
5314
+ "name": "to",
5315
+ "type": "address"
5316
+ },
5317
+ {
5318
+ "indexed": false,
5319
+ "internalType": "uint256",
5320
+ "name": "value",
5321
+ "type": "uint256"
5322
+ }
5323
+ ],
5324
+ "name": "Transfer",
5325
+ "type": "event"
5326
+ },
5327
+ {
5328
+ "inputs": [
5329
+ {
5330
+ "internalType": "address",
5331
+ "name": "owner",
5332
+ "type": "address"
5333
+ },
5334
+ {
5335
+ "internalType": "address",
5336
+ "name": "spender",
5337
+ "type": "address"
5338
+ }
5339
+ ],
5340
+ "name": "allowance",
5341
+ "outputs": [
5342
+ {
5343
+ "internalType": "uint256",
5344
+ "name": "",
5345
+ "type": "uint256"
5346
+ }
5347
+ ],
5348
+ "stateMutability": "view",
5349
+ "type": "function"
5350
+ },
5351
+ {
5352
+ "inputs": [
5353
+ {
5354
+ "internalType": "address",
5355
+ "name": "spender",
5356
+ "type": "address"
5357
+ },
5358
+ {
5359
+ "internalType": "uint256",
5360
+ "name": "amount",
5361
+ "type": "uint256"
5362
+ }
5363
+ ],
5364
+ "name": "approve",
5365
+ "outputs": [
5366
+ {
5367
+ "internalType": "bool",
5368
+ "name": "",
5369
+ "type": "bool"
5370
+ }
5371
+ ],
5372
+ "stateMutability": "nonpayable",
5373
+ "type": "function"
5374
+ },
5375
+ {
5376
+ "inputs": [
5377
+ {
5378
+ "internalType": "address",
5379
+ "name": "account",
5380
+ "type": "address"
5381
+ }
5382
+ ],
5383
+ "name": "balanceOf",
5384
+ "outputs": [
5385
+ {
5386
+ "internalType": "uint256",
5387
+ "name": "",
5388
+ "type": "uint256"
5389
+ }
5390
+ ],
5391
+ "stateMutability": "view",
5392
+ "type": "function"
5393
+ },
5394
+ {
5395
+ "inputs": [],
5396
+ "name": "decimals",
5397
+ "outputs": [
5398
+ {
5399
+ "internalType": "uint8",
5400
+ "name": "",
5401
+ "type": "uint8"
5402
+ }
5403
+ ],
5404
+ "stateMutability": "view",
5405
+ "type": "function"
5406
+ },
5407
+ {
5408
+ "inputs": [
5409
+ {
5410
+ "internalType": "address",
5411
+ "name": "spender",
5412
+ "type": "address"
5413
+ },
5414
+ {
5415
+ "internalType": "uint256",
5416
+ "name": "subtractedValue",
5417
+ "type": "uint256"
5418
+ }
5419
+ ],
5420
+ "name": "decreaseAllowance",
5421
+ "outputs": [
5422
+ {
5423
+ "internalType": "bool",
5424
+ "name": "",
5425
+ "type": "bool"
5426
+ }
5427
+ ],
5428
+ "stateMutability": "nonpayable",
5429
+ "type": "function"
5430
+ },
5431
+ {
5432
+ "inputs": [
5433
+ {
5434
+ "internalType": "uint256",
5435
+ "name": "amount",
5436
+ "type": "uint256"
5437
+ }
5438
+ ],
5439
+ "name": "faucet",
5440
+ "outputs": [],
5441
+ "stateMutability": "nonpayable",
5442
+ "type": "function"
5443
+ },
5444
+ {
5445
+ "inputs": [
5446
+ {
5447
+ "internalType": "address",
5448
+ "name": "spender",
5449
+ "type": "address"
5450
+ },
5451
+ {
5452
+ "internalType": "uint256",
5453
+ "name": "addedValue",
5454
+ "type": "uint256"
5455
+ }
5456
+ ],
5457
+ "name": "increaseAllowance",
5458
+ "outputs": [
5459
+ {
5460
+ "internalType": "bool",
5461
+ "name": "",
5462
+ "type": "bool"
5463
+ }
5464
+ ],
5465
+ "stateMutability": "nonpayable",
5466
+ "type": "function"
5467
+ },
5468
+ {
5469
+ "inputs": [],
5470
+ "name": "name",
5471
+ "outputs": [
5472
+ {
5473
+ "internalType": "string",
5474
+ "name": "",
5475
+ "type": "string"
5476
+ }
5477
+ ],
5478
+ "stateMutability": "view",
5479
+ "type": "function"
5480
+ },
5481
+ {
5482
+ "inputs": [],
5483
+ "name": "symbol",
5484
+ "outputs": [
5485
+ {
5486
+ "internalType": "string",
5487
+ "name": "",
5488
+ "type": "string"
5489
+ }
5490
+ ],
5491
+ "stateMutability": "view",
5492
+ "type": "function"
5493
+ },
5494
+ {
5495
+ "inputs": [],
5496
+ "name": "totalSupply",
5497
+ "outputs": [
5498
+ {
5499
+ "internalType": "uint256",
5500
+ "name": "",
5501
+ "type": "uint256"
5502
+ }
5503
+ ],
5504
+ "stateMutability": "view",
5505
+ "type": "function"
5506
+ },
5507
+ {
5508
+ "inputs": [
5509
+ {
5510
+ "internalType": "address",
5511
+ "name": "to",
5512
+ "type": "address"
5513
+ },
5514
+ {
5515
+ "internalType": "uint256",
5516
+ "name": "amount",
5517
+ "type": "uint256"
5518
+ }
5519
+ ],
5520
+ "name": "transfer",
5521
+ "outputs": [
5522
+ {
5523
+ "internalType": "bool",
5524
+ "name": "",
5525
+ "type": "bool"
5526
+ }
5527
+ ],
5528
+ "stateMutability": "nonpayable",
5529
+ "type": "function"
5530
+ },
5531
+ {
5532
+ "inputs": [
5533
+ {
5534
+ "internalType": "address",
5535
+ "name": "from",
5536
+ "type": "address"
5537
+ },
5538
+ {
5539
+ "internalType": "address",
5540
+ "name": "to",
5541
+ "type": "address"
5542
+ },
5543
+ {
5544
+ "internalType": "uint256",
5545
+ "name": "amount",
5546
+ "type": "uint256"
5547
+ }
5548
+ ],
5549
+ "name": "transferFrom",
5550
+ "outputs": [
5551
+ {
5552
+ "internalType": "bool",
5553
+ "name": "",
5554
+ "type": "bool"
5555
+ }
5556
+ ],
5557
+ "stateMutability": "nonpayable",
5558
+ "type": "function"
5559
+ }
5560
+ ]
5561
+ },
5562
+ "MockcbBTC": {
5563
+ "address": "0x2979ef1676bb28192ac304173C717D7322b3b586",
4586
5564
  "abi": [
4587
5565
  {
4588
5566
  "inputs": [
@@ -4890,8 +5868,8 @@
4890
5868
  }
4891
5869
  ]
4892
5870
  },
4893
- "MockUSDT": {
4894
- "address": "0x7bc1b67fde923fd3667Fde59684c6c354C8EbFdA",
5871
+ "MockweETH": {
5872
+ "address": "0x3B3aCc90D848981E69052FD461123EA19dca6cAF",
4895
5873
  "abi": [
4896
5874
  {
4897
5875
  "inputs": [
@@ -5199,8 +6177,8 @@
5199
6177
  }
5200
6178
  ]
5201
6179
  },
5202
- "MockcbBTC": {
5203
- "address": "0x2979ef1676bb28192ac304173C717D7322b3b586",
6180
+ "MockwstETH": {
6181
+ "address": "0x114B3fD3dA17F8EDBc19a3AEE43aC168Ca5b03b4",
5204
6182
  "abi": [
5205
6183
  {
5206
6184
  "inputs": [
@@ -13800,6 +14778,154 @@
13800
14778
  "type": "receive"
13801
14779
  }
13802
14780
  ]
14781
+ },
14782
+ "VToken_vweETH_Core": {
14783
+ "address": "0xF46F0E1Fe165018EC778e0c61a71661f55aEa09B",
14784
+ "abi": [
14785
+ {
14786
+ "inputs": [
14787
+ {
14788
+ "internalType": "address",
14789
+ "name": "beacon",
14790
+ "type": "address"
14791
+ },
14792
+ {
14793
+ "internalType": "bytes",
14794
+ "name": "data",
14795
+ "type": "bytes"
14796
+ }
14797
+ ],
14798
+ "stateMutability": "payable",
14799
+ "type": "constructor"
14800
+ },
14801
+ {
14802
+ "anonymous": false,
14803
+ "inputs": [
14804
+ {
14805
+ "indexed": false,
14806
+ "internalType": "address",
14807
+ "name": "previousAdmin",
14808
+ "type": "address"
14809
+ },
14810
+ {
14811
+ "indexed": false,
14812
+ "internalType": "address",
14813
+ "name": "newAdmin",
14814
+ "type": "address"
14815
+ }
14816
+ ],
14817
+ "name": "AdminChanged",
14818
+ "type": "event"
14819
+ },
14820
+ {
14821
+ "anonymous": false,
14822
+ "inputs": [
14823
+ {
14824
+ "indexed": true,
14825
+ "internalType": "address",
14826
+ "name": "beacon",
14827
+ "type": "address"
14828
+ }
14829
+ ],
14830
+ "name": "BeaconUpgraded",
14831
+ "type": "event"
14832
+ },
14833
+ {
14834
+ "anonymous": false,
14835
+ "inputs": [
14836
+ {
14837
+ "indexed": true,
14838
+ "internalType": "address",
14839
+ "name": "implementation",
14840
+ "type": "address"
14841
+ }
14842
+ ],
14843
+ "name": "Upgraded",
14844
+ "type": "event"
14845
+ },
14846
+ {
14847
+ "stateMutability": "payable",
14848
+ "type": "fallback"
14849
+ },
14850
+ {
14851
+ "stateMutability": "payable",
14852
+ "type": "receive"
14853
+ }
14854
+ ]
14855
+ },
14856
+ "VToken_vwstETH_Core": {
14857
+ "address": "0xb24c9a851542B4599Eb6C1644ce2e245074c885f",
14858
+ "abi": [
14859
+ {
14860
+ "inputs": [
14861
+ {
14862
+ "internalType": "address",
14863
+ "name": "beacon",
14864
+ "type": "address"
14865
+ },
14866
+ {
14867
+ "internalType": "bytes",
14868
+ "name": "data",
14869
+ "type": "bytes"
14870
+ }
14871
+ ],
14872
+ "stateMutability": "payable",
14873
+ "type": "constructor"
14874
+ },
14875
+ {
14876
+ "anonymous": false,
14877
+ "inputs": [
14878
+ {
14879
+ "indexed": false,
14880
+ "internalType": "address",
14881
+ "name": "previousAdmin",
14882
+ "type": "address"
14883
+ },
14884
+ {
14885
+ "indexed": false,
14886
+ "internalType": "address",
14887
+ "name": "newAdmin",
14888
+ "type": "address"
14889
+ }
14890
+ ],
14891
+ "name": "AdminChanged",
14892
+ "type": "event"
14893
+ },
14894
+ {
14895
+ "anonymous": false,
14896
+ "inputs": [
14897
+ {
14898
+ "indexed": true,
14899
+ "internalType": "address",
14900
+ "name": "beacon",
14901
+ "type": "address"
14902
+ }
14903
+ ],
14904
+ "name": "BeaconUpgraded",
14905
+ "type": "event"
14906
+ },
14907
+ {
14908
+ "anonymous": false,
14909
+ "inputs": [
14910
+ {
14911
+ "indexed": true,
14912
+ "internalType": "address",
14913
+ "name": "implementation",
14914
+ "type": "address"
14915
+ }
14916
+ ],
14917
+ "name": "Upgraded",
14918
+ "type": "event"
14919
+ },
14920
+ {
14921
+ "stateMutability": "payable",
14922
+ "type": "fallback"
14923
+ },
14924
+ {
14925
+ "stateMutability": "payable",
14926
+ "type": "receive"
14927
+ }
14928
+ ]
13803
14929
  }
13804
14930
  }
13805
14931
  }