@venusprotocol/isolated-pools 2.5.1-dev.1 → 2.6.0-dev.1

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 (44) hide show
  1. package/deployments/ethereum/Comptroller_Liquid Staked ETH.json +176 -0
  2. package/deployments/ethereum/JumpRateModelV2_base0bps_slope350bps_jump8000bps_kink8000bps.json +519 -0
  3. package/deployments/ethereum/JumpRateModelV2_base0bps_slope900bps_jump7500bps_kink4500bps.json +519 -0
  4. package/deployments/ethereum/VToken_vWETH_LiquidStakedETH.json +246 -0
  5. package/deployments/ethereum/VToken_vwstETH_LiquidStakedETH.json +246 -0
  6. package/deployments/ethereum/solcInputs/5481066630697b5a7fe53c5ed5007495.json +351 -0
  7. package/deployments/ethereum.json +913 -53
  8. package/deployments/ethereum_addresses.json +6 -1
  9. package/deployments/opbnbmainnet/.chainId +1 -0
  10. package/deployments/opbnbmainnet/ComptrollerBeacon.json +206 -0
  11. package/deployments/opbnbmainnet/ComptrollerImpl.json +3112 -0
  12. package/deployments/opbnbmainnet/Comptroller_Core.json +176 -0
  13. package/deployments/opbnbmainnet/DefaultProxyAdmin.json +257 -0
  14. package/deployments/opbnbmainnet/JumpRateModelV2_base0bps_slope1500bps_jump3000000bps_kink6000bps.json +519 -0
  15. package/deployments/opbnbmainnet/JumpRateModelV2_base0bps_slope750bps_jump25000bps_kink8000bps.json +519 -0
  16. package/deployments/opbnbmainnet/JumpRateModelV2_base0bps_slope900bps_jump30000bps_kink4500bps.json +519 -0
  17. package/deployments/opbnbmainnet/PoolLens.json +1274 -0
  18. package/deployments/opbnbmainnet/PoolRegistry.json +945 -0
  19. package/deployments/opbnbmainnet/PoolRegistry_Implementation.json +1189 -0
  20. package/deployments/opbnbmainnet/PoolRegistry_Proxy.json +267 -0
  21. package/deployments/opbnbmainnet/VTokenBeacon.json +206 -0
  22. package/deployments/opbnbmainnet/VTokenImpl.json +3021 -0
  23. package/deployments/opbnbmainnet/VToken_vBTCB_Core.json +246 -0
  24. package/deployments/opbnbmainnet/VToken_vETH_Core.json +246 -0
  25. package/deployments/opbnbmainnet/VToken_vFDUSD_Core.json +246 -0
  26. package/deployments/opbnbmainnet/VToken_vUSDT_Core.json +246 -0
  27. package/deployments/opbnbmainnet/VToken_vWBNB_Core.json +246 -0
  28. package/deployments/opbnbmainnet/solcInputs/0e89febeebc7444140de8e67c9067d2c.json +78 -0
  29. package/deployments/opbnbmainnet/solcInputs/6af6ae24ffbcdb9e50e419cc4f15213b.json +366 -0
  30. package/deployments/opbnbmainnet.json +8404 -1
  31. package/deployments/opbnbmainnet_addresses.json +20 -1
  32. package/deployments/sepolia/Comptroller_Liquid Staked ETH.json +176 -0
  33. package/deployments/sepolia/JumpRateModelV2_base0bps_slope350bps_jump8000bps_kink8000bps.json +519 -0
  34. package/deployments/sepolia/JumpRateModelV2_base0bps_slope900bps_jump7500bps_kink4500bps.json +519 -0
  35. package/deployments/sepolia/VToken_vWETH_LiquidStakedETH.json +246 -0
  36. package/deployments/sepolia/VToken_vwstETH_LiquidStakedETH.json +246 -0
  37. package/deployments/sepolia/solcInputs/5481066630697b5a7fe53c5ed5007495.json +351 -0
  38. package/deployments/sepolia.json +675 -124
  39. package/deployments/sepolia_addresses.json +6 -2
  40. package/dist/hardhat.config.js +1 -0
  41. package/dist/helpers/deploymentConfig.d.ts +9 -0
  42. package/dist/helpers/deploymentConfig.js +276 -3
  43. package/package.json +2 -2
  44. package/deployments/sepolia/MockWETH.json +0 -450
@@ -2217,6 +2217,80 @@
2217
2217
  }
2218
2218
  ]
2219
2219
  },
2220
+ "Comptroller_Liquid Staked ETH": {
2221
+ "address": "0xF522cd0360EF8c2FF48B648d53EA1717Ec0F3Ac3",
2222
+ "abi": [
2223
+ {
2224
+ "inputs": [
2225
+ {
2226
+ "internalType": "address",
2227
+ "name": "beacon",
2228
+ "type": "address"
2229
+ },
2230
+ {
2231
+ "internalType": "bytes",
2232
+ "name": "data",
2233
+ "type": "bytes"
2234
+ }
2235
+ ],
2236
+ "stateMutability": "payable",
2237
+ "type": "constructor"
2238
+ },
2239
+ {
2240
+ "anonymous": false,
2241
+ "inputs": [
2242
+ {
2243
+ "indexed": false,
2244
+ "internalType": "address",
2245
+ "name": "previousAdmin",
2246
+ "type": "address"
2247
+ },
2248
+ {
2249
+ "indexed": false,
2250
+ "internalType": "address",
2251
+ "name": "newAdmin",
2252
+ "type": "address"
2253
+ }
2254
+ ],
2255
+ "name": "AdminChanged",
2256
+ "type": "event"
2257
+ },
2258
+ {
2259
+ "anonymous": false,
2260
+ "inputs": [
2261
+ {
2262
+ "indexed": true,
2263
+ "internalType": "address",
2264
+ "name": "beacon",
2265
+ "type": "address"
2266
+ }
2267
+ ],
2268
+ "name": "BeaconUpgraded",
2269
+ "type": "event"
2270
+ },
2271
+ {
2272
+ "anonymous": false,
2273
+ "inputs": [
2274
+ {
2275
+ "indexed": true,
2276
+ "internalType": "address",
2277
+ "name": "implementation",
2278
+ "type": "address"
2279
+ }
2280
+ ],
2281
+ "name": "Upgraded",
2282
+ "type": "event"
2283
+ },
2284
+ {
2285
+ "stateMutability": "payable",
2286
+ "type": "fallback"
2287
+ },
2288
+ {
2289
+ "stateMutability": "payable",
2290
+ "type": "receive"
2291
+ }
2292
+ ]
2293
+ },
2220
2294
  "DefaultProxyAdmin": {
2221
2295
  "address": "0x567e4cc5e085d09f66f836fa8279f38b4e5866b9",
2222
2296
  "abi": [
@@ -2288,19 +2362,643 @@
2288
2362
  "type": "function"
2289
2363
  },
2290
2364
  {
2291
- "inputs": [
2292
- {
2293
- "internalType": "contract TransparentUpgradeableProxy",
2294
- "name": "proxy",
2295
- "type": "address"
2296
- }
2297
- ],
2298
- "name": "getProxyImplementation",
2365
+ "inputs": [
2366
+ {
2367
+ "internalType": "contract TransparentUpgradeableProxy",
2368
+ "name": "proxy",
2369
+ "type": "address"
2370
+ }
2371
+ ],
2372
+ "name": "getProxyImplementation",
2373
+ "outputs": [
2374
+ {
2375
+ "internalType": "address",
2376
+ "name": "",
2377
+ "type": "address"
2378
+ }
2379
+ ],
2380
+ "stateMutability": "view",
2381
+ "type": "function"
2382
+ },
2383
+ {
2384
+ "inputs": [],
2385
+ "name": "owner",
2386
+ "outputs": [
2387
+ {
2388
+ "internalType": "address",
2389
+ "name": "",
2390
+ "type": "address"
2391
+ }
2392
+ ],
2393
+ "stateMutability": "view",
2394
+ "type": "function"
2395
+ },
2396
+ {
2397
+ "inputs": [],
2398
+ "name": "renounceOwnership",
2399
+ "outputs": [],
2400
+ "stateMutability": "nonpayable",
2401
+ "type": "function"
2402
+ },
2403
+ {
2404
+ "inputs": [
2405
+ {
2406
+ "internalType": "address",
2407
+ "name": "newOwner",
2408
+ "type": "address"
2409
+ }
2410
+ ],
2411
+ "name": "transferOwnership",
2412
+ "outputs": [],
2413
+ "stateMutability": "nonpayable",
2414
+ "type": "function"
2415
+ },
2416
+ {
2417
+ "inputs": [
2418
+ {
2419
+ "internalType": "contract TransparentUpgradeableProxy",
2420
+ "name": "proxy",
2421
+ "type": "address"
2422
+ },
2423
+ {
2424
+ "internalType": "address",
2425
+ "name": "implementation",
2426
+ "type": "address"
2427
+ }
2428
+ ],
2429
+ "name": "upgrade",
2430
+ "outputs": [],
2431
+ "stateMutability": "nonpayable",
2432
+ "type": "function"
2433
+ },
2434
+ {
2435
+ "inputs": [
2436
+ {
2437
+ "internalType": "contract TransparentUpgradeableProxy",
2438
+ "name": "proxy",
2439
+ "type": "address"
2440
+ },
2441
+ {
2442
+ "internalType": "address",
2443
+ "name": "implementation",
2444
+ "type": "address"
2445
+ },
2446
+ {
2447
+ "internalType": "bytes",
2448
+ "name": "data",
2449
+ "type": "bytes"
2450
+ }
2451
+ ],
2452
+ "name": "upgradeAndCall",
2453
+ "outputs": [],
2454
+ "stateMutability": "payable",
2455
+ "type": "function"
2456
+ }
2457
+ ]
2458
+ },
2459
+ "JumpRateModelV2_base0bps_slope350bps_jump8000bps_kink8000bps": {
2460
+ "address": "0x01E002C218D70dD374566cc40D9fCA1429AB7E65",
2461
+ "abi": [
2462
+ {
2463
+ "inputs": [
2464
+ {
2465
+ "internalType": "uint256",
2466
+ "name": "blocksPerYear_",
2467
+ "type": "uint256"
2468
+ },
2469
+ {
2470
+ "internalType": "uint256",
2471
+ "name": "baseRatePerYear",
2472
+ "type": "uint256"
2473
+ },
2474
+ {
2475
+ "internalType": "uint256",
2476
+ "name": "multiplierPerYear",
2477
+ "type": "uint256"
2478
+ },
2479
+ {
2480
+ "internalType": "uint256",
2481
+ "name": "jumpMultiplierPerYear",
2482
+ "type": "uint256"
2483
+ },
2484
+ {
2485
+ "internalType": "uint256",
2486
+ "name": "kink_",
2487
+ "type": "uint256"
2488
+ },
2489
+ {
2490
+ "internalType": "contract IAccessControlManagerV8",
2491
+ "name": "accessControlManager_",
2492
+ "type": "address"
2493
+ }
2494
+ ],
2495
+ "stateMutability": "nonpayable",
2496
+ "type": "constructor"
2497
+ },
2498
+ {
2499
+ "inputs": [
2500
+ {
2501
+ "internalType": "address",
2502
+ "name": "sender",
2503
+ "type": "address"
2504
+ },
2505
+ {
2506
+ "internalType": "address",
2507
+ "name": "calledContract",
2508
+ "type": "address"
2509
+ },
2510
+ {
2511
+ "internalType": "string",
2512
+ "name": "methodSignature",
2513
+ "type": "string"
2514
+ }
2515
+ ],
2516
+ "name": "Unauthorized",
2517
+ "type": "error"
2518
+ },
2519
+ {
2520
+ "anonymous": false,
2521
+ "inputs": [
2522
+ {
2523
+ "indexed": false,
2524
+ "internalType": "uint256",
2525
+ "name": "baseRatePerBlock",
2526
+ "type": "uint256"
2527
+ },
2528
+ {
2529
+ "indexed": false,
2530
+ "internalType": "uint256",
2531
+ "name": "multiplierPerBlock",
2532
+ "type": "uint256"
2533
+ },
2534
+ {
2535
+ "indexed": false,
2536
+ "internalType": "uint256",
2537
+ "name": "jumpMultiplierPerBlock",
2538
+ "type": "uint256"
2539
+ },
2540
+ {
2541
+ "indexed": false,
2542
+ "internalType": "uint256",
2543
+ "name": "kink",
2544
+ "type": "uint256"
2545
+ }
2546
+ ],
2547
+ "name": "NewInterestParams",
2548
+ "type": "event"
2549
+ },
2550
+ {
2551
+ "inputs": [],
2552
+ "name": "accessControlManager",
2553
+ "outputs": [
2554
+ {
2555
+ "internalType": "contract IAccessControlManagerV8",
2556
+ "name": "",
2557
+ "type": "address"
2558
+ }
2559
+ ],
2560
+ "stateMutability": "view",
2561
+ "type": "function"
2562
+ },
2563
+ {
2564
+ "inputs": [],
2565
+ "name": "baseRatePerBlock",
2566
+ "outputs": [
2567
+ {
2568
+ "internalType": "uint256",
2569
+ "name": "",
2570
+ "type": "uint256"
2571
+ }
2572
+ ],
2573
+ "stateMutability": "view",
2574
+ "type": "function"
2575
+ },
2576
+ {
2577
+ "inputs": [],
2578
+ "name": "blocksPerYear",
2579
+ "outputs": [
2580
+ {
2581
+ "internalType": "uint256",
2582
+ "name": "",
2583
+ "type": "uint256"
2584
+ }
2585
+ ],
2586
+ "stateMutability": "view",
2587
+ "type": "function"
2588
+ },
2589
+ {
2590
+ "inputs": [
2591
+ {
2592
+ "internalType": "uint256",
2593
+ "name": "cash",
2594
+ "type": "uint256"
2595
+ },
2596
+ {
2597
+ "internalType": "uint256",
2598
+ "name": "borrows",
2599
+ "type": "uint256"
2600
+ },
2601
+ {
2602
+ "internalType": "uint256",
2603
+ "name": "reserves",
2604
+ "type": "uint256"
2605
+ },
2606
+ {
2607
+ "internalType": "uint256",
2608
+ "name": "badDebt",
2609
+ "type": "uint256"
2610
+ }
2611
+ ],
2612
+ "name": "getBorrowRate",
2613
+ "outputs": [
2614
+ {
2615
+ "internalType": "uint256",
2616
+ "name": "",
2617
+ "type": "uint256"
2618
+ }
2619
+ ],
2620
+ "stateMutability": "view",
2621
+ "type": "function"
2622
+ },
2623
+ {
2624
+ "inputs": [
2625
+ {
2626
+ "internalType": "uint256",
2627
+ "name": "cash",
2628
+ "type": "uint256"
2629
+ },
2630
+ {
2631
+ "internalType": "uint256",
2632
+ "name": "borrows",
2633
+ "type": "uint256"
2634
+ },
2635
+ {
2636
+ "internalType": "uint256",
2637
+ "name": "reserves",
2638
+ "type": "uint256"
2639
+ },
2640
+ {
2641
+ "internalType": "uint256",
2642
+ "name": "reserveFactorMantissa",
2643
+ "type": "uint256"
2644
+ },
2645
+ {
2646
+ "internalType": "uint256",
2647
+ "name": "badDebt",
2648
+ "type": "uint256"
2649
+ }
2650
+ ],
2651
+ "name": "getSupplyRate",
2652
+ "outputs": [
2653
+ {
2654
+ "internalType": "uint256",
2655
+ "name": "",
2656
+ "type": "uint256"
2657
+ }
2658
+ ],
2659
+ "stateMutability": "view",
2660
+ "type": "function"
2661
+ },
2662
+ {
2663
+ "inputs": [],
2664
+ "name": "isInterestRateModel",
2665
+ "outputs": [
2666
+ {
2667
+ "internalType": "bool",
2668
+ "name": "",
2669
+ "type": "bool"
2670
+ }
2671
+ ],
2672
+ "stateMutability": "pure",
2673
+ "type": "function"
2674
+ },
2675
+ {
2676
+ "inputs": [],
2677
+ "name": "jumpMultiplierPerBlock",
2678
+ "outputs": [
2679
+ {
2680
+ "internalType": "uint256",
2681
+ "name": "",
2682
+ "type": "uint256"
2683
+ }
2684
+ ],
2685
+ "stateMutability": "view",
2686
+ "type": "function"
2687
+ },
2688
+ {
2689
+ "inputs": [],
2690
+ "name": "kink",
2691
+ "outputs": [
2692
+ {
2693
+ "internalType": "uint256",
2694
+ "name": "",
2695
+ "type": "uint256"
2696
+ }
2697
+ ],
2698
+ "stateMutability": "view",
2699
+ "type": "function"
2700
+ },
2701
+ {
2702
+ "inputs": [],
2703
+ "name": "multiplierPerBlock",
2704
+ "outputs": [
2705
+ {
2706
+ "internalType": "uint256",
2707
+ "name": "",
2708
+ "type": "uint256"
2709
+ }
2710
+ ],
2711
+ "stateMutability": "view",
2712
+ "type": "function"
2713
+ },
2714
+ {
2715
+ "inputs": [
2716
+ {
2717
+ "internalType": "uint256",
2718
+ "name": "baseRatePerYear",
2719
+ "type": "uint256"
2720
+ },
2721
+ {
2722
+ "internalType": "uint256",
2723
+ "name": "multiplierPerYear",
2724
+ "type": "uint256"
2725
+ },
2726
+ {
2727
+ "internalType": "uint256",
2728
+ "name": "jumpMultiplierPerYear",
2729
+ "type": "uint256"
2730
+ },
2731
+ {
2732
+ "internalType": "uint256",
2733
+ "name": "kink_",
2734
+ "type": "uint256"
2735
+ }
2736
+ ],
2737
+ "name": "updateJumpRateModel",
2738
+ "outputs": [],
2739
+ "stateMutability": "nonpayable",
2740
+ "type": "function"
2741
+ },
2742
+ {
2743
+ "inputs": [
2744
+ {
2745
+ "internalType": "uint256",
2746
+ "name": "cash",
2747
+ "type": "uint256"
2748
+ },
2749
+ {
2750
+ "internalType": "uint256",
2751
+ "name": "borrows",
2752
+ "type": "uint256"
2753
+ },
2754
+ {
2755
+ "internalType": "uint256",
2756
+ "name": "reserves",
2757
+ "type": "uint256"
2758
+ },
2759
+ {
2760
+ "internalType": "uint256",
2761
+ "name": "badDebt",
2762
+ "type": "uint256"
2763
+ }
2764
+ ],
2765
+ "name": "utilizationRate",
2766
+ "outputs": [
2767
+ {
2768
+ "internalType": "uint256",
2769
+ "name": "",
2770
+ "type": "uint256"
2771
+ }
2772
+ ],
2773
+ "stateMutability": "pure",
2774
+ "type": "function"
2775
+ }
2776
+ ]
2777
+ },
2778
+ "JumpRateModelV2_base0bps_slope450bps_jump8000bps_kink8000bps": {
2779
+ "address": "0xFCaBF5b76968e010b8BC310486bE418b9d16fEb2",
2780
+ "abi": [
2781
+ {
2782
+ "inputs": [
2783
+ {
2784
+ "internalType": "uint256",
2785
+ "name": "blocksPerYear_",
2786
+ "type": "uint256"
2787
+ },
2788
+ {
2789
+ "internalType": "uint256",
2790
+ "name": "baseRatePerYear",
2791
+ "type": "uint256"
2792
+ },
2793
+ {
2794
+ "internalType": "uint256",
2795
+ "name": "multiplierPerYear",
2796
+ "type": "uint256"
2797
+ },
2798
+ {
2799
+ "internalType": "uint256",
2800
+ "name": "jumpMultiplierPerYear",
2801
+ "type": "uint256"
2802
+ },
2803
+ {
2804
+ "internalType": "uint256",
2805
+ "name": "kink_",
2806
+ "type": "uint256"
2807
+ },
2808
+ {
2809
+ "internalType": "contract IAccessControlManagerV8",
2810
+ "name": "accessControlManager_",
2811
+ "type": "address"
2812
+ }
2813
+ ],
2814
+ "stateMutability": "nonpayable",
2815
+ "type": "constructor"
2816
+ },
2817
+ {
2818
+ "inputs": [
2819
+ {
2820
+ "internalType": "address",
2821
+ "name": "sender",
2822
+ "type": "address"
2823
+ },
2824
+ {
2825
+ "internalType": "address",
2826
+ "name": "calledContract",
2827
+ "type": "address"
2828
+ },
2829
+ {
2830
+ "internalType": "string",
2831
+ "name": "methodSignature",
2832
+ "type": "string"
2833
+ }
2834
+ ],
2835
+ "name": "Unauthorized",
2836
+ "type": "error"
2837
+ },
2838
+ {
2839
+ "anonymous": false,
2840
+ "inputs": [
2841
+ {
2842
+ "indexed": false,
2843
+ "internalType": "uint256",
2844
+ "name": "baseRatePerBlock",
2845
+ "type": "uint256"
2846
+ },
2847
+ {
2848
+ "indexed": false,
2849
+ "internalType": "uint256",
2850
+ "name": "multiplierPerBlock",
2851
+ "type": "uint256"
2852
+ },
2853
+ {
2854
+ "indexed": false,
2855
+ "internalType": "uint256",
2856
+ "name": "jumpMultiplierPerBlock",
2857
+ "type": "uint256"
2858
+ },
2859
+ {
2860
+ "indexed": false,
2861
+ "internalType": "uint256",
2862
+ "name": "kink",
2863
+ "type": "uint256"
2864
+ }
2865
+ ],
2866
+ "name": "NewInterestParams",
2867
+ "type": "event"
2868
+ },
2869
+ {
2870
+ "inputs": [],
2871
+ "name": "accessControlManager",
2872
+ "outputs": [
2873
+ {
2874
+ "internalType": "contract IAccessControlManagerV8",
2875
+ "name": "",
2876
+ "type": "address"
2877
+ }
2878
+ ],
2879
+ "stateMutability": "view",
2880
+ "type": "function"
2881
+ },
2882
+ {
2883
+ "inputs": [],
2884
+ "name": "baseRatePerBlock",
2885
+ "outputs": [
2886
+ {
2887
+ "internalType": "uint256",
2888
+ "name": "",
2889
+ "type": "uint256"
2890
+ }
2891
+ ],
2892
+ "stateMutability": "view",
2893
+ "type": "function"
2894
+ },
2895
+ {
2896
+ "inputs": [],
2897
+ "name": "blocksPerYear",
2898
+ "outputs": [
2899
+ {
2900
+ "internalType": "uint256",
2901
+ "name": "",
2902
+ "type": "uint256"
2903
+ }
2904
+ ],
2905
+ "stateMutability": "view",
2906
+ "type": "function"
2907
+ },
2908
+ {
2909
+ "inputs": [
2910
+ {
2911
+ "internalType": "uint256",
2912
+ "name": "cash",
2913
+ "type": "uint256"
2914
+ },
2915
+ {
2916
+ "internalType": "uint256",
2917
+ "name": "borrows",
2918
+ "type": "uint256"
2919
+ },
2920
+ {
2921
+ "internalType": "uint256",
2922
+ "name": "reserves",
2923
+ "type": "uint256"
2924
+ },
2925
+ {
2926
+ "internalType": "uint256",
2927
+ "name": "badDebt",
2928
+ "type": "uint256"
2929
+ }
2930
+ ],
2931
+ "name": "getBorrowRate",
2932
+ "outputs": [
2933
+ {
2934
+ "internalType": "uint256",
2935
+ "name": "",
2936
+ "type": "uint256"
2937
+ }
2938
+ ],
2939
+ "stateMutability": "view",
2940
+ "type": "function"
2941
+ },
2942
+ {
2943
+ "inputs": [
2944
+ {
2945
+ "internalType": "uint256",
2946
+ "name": "cash",
2947
+ "type": "uint256"
2948
+ },
2949
+ {
2950
+ "internalType": "uint256",
2951
+ "name": "borrows",
2952
+ "type": "uint256"
2953
+ },
2954
+ {
2955
+ "internalType": "uint256",
2956
+ "name": "reserves",
2957
+ "type": "uint256"
2958
+ },
2959
+ {
2960
+ "internalType": "uint256",
2961
+ "name": "reserveFactorMantissa",
2962
+ "type": "uint256"
2963
+ },
2964
+ {
2965
+ "internalType": "uint256",
2966
+ "name": "badDebt",
2967
+ "type": "uint256"
2968
+ }
2969
+ ],
2970
+ "name": "getSupplyRate",
2971
+ "outputs": [
2972
+ {
2973
+ "internalType": "uint256",
2974
+ "name": "",
2975
+ "type": "uint256"
2976
+ }
2977
+ ],
2978
+ "stateMutability": "view",
2979
+ "type": "function"
2980
+ },
2981
+ {
2982
+ "inputs": [],
2983
+ "name": "isInterestRateModel",
2984
+ "outputs": [
2985
+ {
2986
+ "internalType": "bool",
2987
+ "name": "",
2988
+ "type": "bool"
2989
+ }
2990
+ ],
2991
+ "stateMutability": "pure",
2992
+ "type": "function"
2993
+ },
2994
+ {
2995
+ "inputs": [],
2996
+ "name": "jumpMultiplierPerBlock",
2299
2997
  "outputs": [
2300
2998
  {
2301
- "internalType": "address",
2999
+ "internalType": "uint256",
2302
3000
  "name": "",
2303
- "type": "address"
3001
+ "type": "uint256"
2304
3002
  }
2305
3003
  ],
2306
3004
  "stateMutability": "view",
@@ -2308,12 +3006,12 @@
2308
3006
  },
2309
3007
  {
2310
3008
  "inputs": [],
2311
- "name": "owner",
3009
+ "name": "kink",
2312
3010
  "outputs": [
2313
3011
  {
2314
- "internalType": "address",
3012
+ "internalType": "uint256",
2315
3013
  "name": "",
2316
- "type": "address"
3014
+ "type": "uint256"
2317
3015
  }
2318
3016
  ],
2319
3017
  "stateMutability": "view",
@@ -2321,38 +3019,41 @@
2321
3019
  },
2322
3020
  {
2323
3021
  "inputs": [],
2324
- "name": "renounceOwnership",
2325
- "outputs": [],
2326
- "stateMutability": "nonpayable",
2327
- "type": "function"
2328
- },
2329
- {
2330
- "inputs": [
3022
+ "name": "multiplierPerBlock",
3023
+ "outputs": [
2331
3024
  {
2332
- "internalType": "address",
2333
- "name": "newOwner",
2334
- "type": "address"
3025
+ "internalType": "uint256",
3026
+ "name": "",
3027
+ "type": "uint256"
2335
3028
  }
2336
3029
  ],
2337
- "name": "transferOwnership",
2338
- "outputs": [],
2339
- "stateMutability": "nonpayable",
3030
+ "stateMutability": "view",
2340
3031
  "type": "function"
2341
3032
  },
2342
3033
  {
2343
3034
  "inputs": [
2344
3035
  {
2345
- "internalType": "contract TransparentUpgradeableProxy",
2346
- "name": "proxy",
2347
- "type": "address"
3036
+ "internalType": "uint256",
3037
+ "name": "baseRatePerYear",
3038
+ "type": "uint256"
2348
3039
  },
2349
3040
  {
2350
- "internalType": "address",
2351
- "name": "implementation",
2352
- "type": "address"
3041
+ "internalType": "uint256",
3042
+ "name": "multiplierPerYear",
3043
+ "type": "uint256"
3044
+ },
3045
+ {
3046
+ "internalType": "uint256",
3047
+ "name": "jumpMultiplierPerYear",
3048
+ "type": "uint256"
3049
+ },
3050
+ {
3051
+ "internalType": "uint256",
3052
+ "name": "kink_",
3053
+ "type": "uint256"
2353
3054
  }
2354
3055
  ],
2355
- "name": "upgrade",
3056
+ "name": "updateJumpRateModel",
2356
3057
  "outputs": [],
2357
3058
  "stateMutability": "nonpayable",
2358
3059
  "type": "function"
@@ -2360,30 +3061,41 @@
2360
3061
  {
2361
3062
  "inputs": [
2362
3063
  {
2363
- "internalType": "contract TransparentUpgradeableProxy",
2364
- "name": "proxy",
2365
- "type": "address"
3064
+ "internalType": "uint256",
3065
+ "name": "cash",
3066
+ "type": "uint256"
2366
3067
  },
2367
3068
  {
2368
- "internalType": "address",
2369
- "name": "implementation",
2370
- "type": "address"
3069
+ "internalType": "uint256",
3070
+ "name": "borrows",
3071
+ "type": "uint256"
2371
3072
  },
2372
3073
  {
2373
- "internalType": "bytes",
2374
- "name": "data",
2375
- "type": "bytes"
3074
+ "internalType": "uint256",
3075
+ "name": "reserves",
3076
+ "type": "uint256"
3077
+ },
3078
+ {
3079
+ "internalType": "uint256",
3080
+ "name": "badDebt",
3081
+ "type": "uint256"
2376
3082
  }
2377
3083
  ],
2378
- "name": "upgradeAndCall",
2379
- "outputs": [],
2380
- "stateMutability": "payable",
3084
+ "name": "utilizationRate",
3085
+ "outputs": [
3086
+ {
3087
+ "internalType": "uint256",
3088
+ "name": "",
3089
+ "type": "uint256"
3090
+ }
3091
+ ],
3092
+ "stateMutability": "pure",
2381
3093
  "type": "function"
2382
3094
  }
2383
3095
  ]
2384
3096
  },
2385
- "JumpRateModelV2_base0bps_slope450bps_jump8000bps_kink8000bps": {
2386
- "address": "0xFCaBF5b76968e010b8BC310486bE418b9d16fEb2",
3097
+ "JumpRateModelV2_base0bps_slope500bps_jump8000bps_kink7500bps": {
3098
+ "address": "0x07a912CD58CbB5736d015608F424c43B2CAd0B5e",
2387
3099
  "abi": [
2388
3100
  {
2389
3101
  "inputs": [
@@ -2701,8 +3413,8 @@
2701
3413
  }
2702
3414
  ]
2703
3415
  },
2704
- "JumpRateModelV2_base0bps_slope500bps_jump8000bps_kink7500bps": {
2705
- "address": "0x07a912CD58CbB5736d015608F424c43B2CAd0B5e",
3416
+ "JumpRateModelV2_base0bps_slope700bps_jump8000bps_kink8000bps": {
3417
+ "address": "0x0F84aF9A902dbb5a0986e5D5003189cF2B80A760",
2706
3418
  "abi": [
2707
3419
  {
2708
3420
  "inputs": [
@@ -3020,8 +3732,8 @@
3020
3732
  }
3021
3733
  ]
3022
3734
  },
3023
- "JumpRateModelV2_base0bps_slope700bps_jump8000bps_kink8000bps": {
3024
- "address": "0x0F84aF9A902dbb5a0986e5D5003189cF2B80A760",
3735
+ "JumpRateModelV2_base0bps_slope750bps_jump8000bps_kink8000bps": {
3736
+ "address": "0x1C243a1aCe202424fa79F71de36225DF93B9e5C5",
3025
3737
  "abi": [
3026
3738
  {
3027
3739
  "inputs": [
@@ -3339,8 +4051,8 @@
3339
4051
  }
3340
4052
  ]
3341
4053
  },
3342
- "JumpRateModelV2_base0bps_slope750bps_jump8000bps_kink8000bps": {
3343
- "address": "0x1C243a1aCe202424fa79F71de36225DF93B9e5C5",
4054
+ "JumpRateModelV2_base0bps_slope900bps_jump7500bps_kink4500bps": {
4055
+ "address": "0xae838dEB13Ff67681704AA69e31Da304918Ee43D",
3344
4056
  "abi": [
3345
4057
  {
3346
4058
  "inputs": [
@@ -10392,6 +11104,80 @@
10392
11104
  }
10393
11105
  ]
10394
11106
  },
11107
+ "VToken_vWETH_LiquidStakedETH": {
11108
+ "address": "0xc82780Db1257C788F262FBbDA960B3706Dfdcaf2",
11109
+ "abi": [
11110
+ {
11111
+ "inputs": [
11112
+ {
11113
+ "internalType": "address",
11114
+ "name": "beacon",
11115
+ "type": "address"
11116
+ },
11117
+ {
11118
+ "internalType": "bytes",
11119
+ "name": "data",
11120
+ "type": "bytes"
11121
+ }
11122
+ ],
11123
+ "stateMutability": "payable",
11124
+ "type": "constructor"
11125
+ },
11126
+ {
11127
+ "anonymous": false,
11128
+ "inputs": [
11129
+ {
11130
+ "indexed": false,
11131
+ "internalType": "address",
11132
+ "name": "previousAdmin",
11133
+ "type": "address"
11134
+ },
11135
+ {
11136
+ "indexed": false,
11137
+ "internalType": "address",
11138
+ "name": "newAdmin",
11139
+ "type": "address"
11140
+ }
11141
+ ],
11142
+ "name": "AdminChanged",
11143
+ "type": "event"
11144
+ },
11145
+ {
11146
+ "anonymous": false,
11147
+ "inputs": [
11148
+ {
11149
+ "indexed": true,
11150
+ "internalType": "address",
11151
+ "name": "beacon",
11152
+ "type": "address"
11153
+ }
11154
+ ],
11155
+ "name": "BeaconUpgraded",
11156
+ "type": "event"
11157
+ },
11158
+ {
11159
+ "anonymous": false,
11160
+ "inputs": [
11161
+ {
11162
+ "indexed": true,
11163
+ "internalType": "address",
11164
+ "name": "implementation",
11165
+ "type": "address"
11166
+ }
11167
+ ],
11168
+ "name": "Upgraded",
11169
+ "type": "event"
11170
+ },
11171
+ {
11172
+ "stateMutability": "payable",
11173
+ "type": "fallback"
11174
+ },
11175
+ {
11176
+ "stateMutability": "payable",
11177
+ "type": "receive"
11178
+ }
11179
+ ]
11180
+ },
10395
11181
  "VToken_vcrvUSD_Core": {
10396
11182
  "address": "0x672208C10aaAA2F9A6719F449C4C8227bc0BC202",
10397
11183
  "abi": [
@@ -10539,6 +11325,80 @@
10539
11325
  "type": "receive"
10540
11326
  }
10541
11327
  ]
11328
+ },
11329
+ "VToken_vwstETH_LiquidStakedETH": {
11330
+ "address": "0x4a240F0ee138697726C8a3E43eFE6Ac3593432CB",
11331
+ "abi": [
11332
+ {
11333
+ "inputs": [
11334
+ {
11335
+ "internalType": "address",
11336
+ "name": "beacon",
11337
+ "type": "address"
11338
+ },
11339
+ {
11340
+ "internalType": "bytes",
11341
+ "name": "data",
11342
+ "type": "bytes"
11343
+ }
11344
+ ],
11345
+ "stateMutability": "payable",
11346
+ "type": "constructor"
11347
+ },
11348
+ {
11349
+ "anonymous": false,
11350
+ "inputs": [
11351
+ {
11352
+ "indexed": false,
11353
+ "internalType": "address",
11354
+ "name": "previousAdmin",
11355
+ "type": "address"
11356
+ },
11357
+ {
11358
+ "indexed": false,
11359
+ "internalType": "address",
11360
+ "name": "newAdmin",
11361
+ "type": "address"
11362
+ }
11363
+ ],
11364
+ "name": "AdminChanged",
11365
+ "type": "event"
11366
+ },
11367
+ {
11368
+ "anonymous": false,
11369
+ "inputs": [
11370
+ {
11371
+ "indexed": true,
11372
+ "internalType": "address",
11373
+ "name": "beacon",
11374
+ "type": "address"
11375
+ }
11376
+ ],
11377
+ "name": "BeaconUpgraded",
11378
+ "type": "event"
11379
+ },
11380
+ {
11381
+ "anonymous": false,
11382
+ "inputs": [
11383
+ {
11384
+ "indexed": true,
11385
+ "internalType": "address",
11386
+ "name": "implementation",
11387
+ "type": "address"
11388
+ }
11389
+ ],
11390
+ "name": "Upgraded",
11391
+ "type": "event"
11392
+ },
11393
+ {
11394
+ "stateMutability": "payable",
11395
+ "type": "fallback"
11396
+ },
11397
+ {
11398
+ "stateMutability": "payable",
11399
+ "type": "receive"
11400
+ }
11401
+ ]
10542
11402
  }
10543
11403
  }
10544
11404
  }