@venusprotocol/venus-protocol 9.0.0-dev.6 → 9.0.0-dev.7

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.
@@ -9568,6 +9568,257 @@
9568
9568
  }
9569
9569
  ]
9570
9570
  },
9571
+ "JumpRateModel_base0bps_slope1000bps_jump25000bps_kink8000bps": {
9572
+ "address": "0x62A8919C4C413fd4F9aef7348540Bc4B1b5CC805",
9573
+ "abi": [
9574
+ {
9575
+ "inputs": [
9576
+ {
9577
+ "internalType": "uint256",
9578
+ "name": "baseRatePerYear",
9579
+ "type": "uint256"
9580
+ },
9581
+ {
9582
+ "internalType": "uint256",
9583
+ "name": "multiplierPerYear",
9584
+ "type": "uint256"
9585
+ },
9586
+ {
9587
+ "internalType": "uint256",
9588
+ "name": "jumpMultiplierPerYear",
9589
+ "type": "uint256"
9590
+ },
9591
+ {
9592
+ "internalType": "uint256",
9593
+ "name": "kink_",
9594
+ "type": "uint256"
9595
+ }
9596
+ ],
9597
+ "payable": false,
9598
+ "stateMutability": "nonpayable",
9599
+ "type": "constructor"
9600
+ },
9601
+ {
9602
+ "anonymous": false,
9603
+ "inputs": [
9604
+ {
9605
+ "indexed": false,
9606
+ "internalType": "uint256",
9607
+ "name": "baseRatePerBlock",
9608
+ "type": "uint256"
9609
+ },
9610
+ {
9611
+ "indexed": false,
9612
+ "internalType": "uint256",
9613
+ "name": "multiplierPerBlock",
9614
+ "type": "uint256"
9615
+ },
9616
+ {
9617
+ "indexed": false,
9618
+ "internalType": "uint256",
9619
+ "name": "jumpMultiplierPerBlock",
9620
+ "type": "uint256"
9621
+ },
9622
+ {
9623
+ "indexed": false,
9624
+ "internalType": "uint256",
9625
+ "name": "kink",
9626
+ "type": "uint256"
9627
+ }
9628
+ ],
9629
+ "name": "NewInterestParams",
9630
+ "type": "event"
9631
+ },
9632
+ {
9633
+ "constant": true,
9634
+ "inputs": [],
9635
+ "name": "baseRatePerBlock",
9636
+ "outputs": [
9637
+ {
9638
+ "internalType": "uint256",
9639
+ "name": "",
9640
+ "type": "uint256"
9641
+ }
9642
+ ],
9643
+ "payable": false,
9644
+ "stateMutability": "view",
9645
+ "type": "function"
9646
+ },
9647
+ {
9648
+ "constant": true,
9649
+ "inputs": [],
9650
+ "name": "blocksPerYear",
9651
+ "outputs": [
9652
+ {
9653
+ "internalType": "uint256",
9654
+ "name": "",
9655
+ "type": "uint256"
9656
+ }
9657
+ ],
9658
+ "payable": false,
9659
+ "stateMutability": "view",
9660
+ "type": "function"
9661
+ },
9662
+ {
9663
+ "constant": true,
9664
+ "inputs": [
9665
+ {
9666
+ "internalType": "uint256",
9667
+ "name": "cash",
9668
+ "type": "uint256"
9669
+ },
9670
+ {
9671
+ "internalType": "uint256",
9672
+ "name": "borrows",
9673
+ "type": "uint256"
9674
+ },
9675
+ {
9676
+ "internalType": "uint256",
9677
+ "name": "reserves",
9678
+ "type": "uint256"
9679
+ }
9680
+ ],
9681
+ "name": "getBorrowRate",
9682
+ "outputs": [
9683
+ {
9684
+ "internalType": "uint256",
9685
+ "name": "",
9686
+ "type": "uint256"
9687
+ }
9688
+ ],
9689
+ "payable": false,
9690
+ "stateMutability": "view",
9691
+ "type": "function"
9692
+ },
9693
+ {
9694
+ "constant": true,
9695
+ "inputs": [
9696
+ {
9697
+ "internalType": "uint256",
9698
+ "name": "cash",
9699
+ "type": "uint256"
9700
+ },
9701
+ {
9702
+ "internalType": "uint256",
9703
+ "name": "borrows",
9704
+ "type": "uint256"
9705
+ },
9706
+ {
9707
+ "internalType": "uint256",
9708
+ "name": "reserves",
9709
+ "type": "uint256"
9710
+ },
9711
+ {
9712
+ "internalType": "uint256",
9713
+ "name": "reserveFactorMantissa",
9714
+ "type": "uint256"
9715
+ }
9716
+ ],
9717
+ "name": "getSupplyRate",
9718
+ "outputs": [
9719
+ {
9720
+ "internalType": "uint256",
9721
+ "name": "",
9722
+ "type": "uint256"
9723
+ }
9724
+ ],
9725
+ "payable": false,
9726
+ "stateMutability": "view",
9727
+ "type": "function"
9728
+ },
9729
+ {
9730
+ "constant": true,
9731
+ "inputs": [],
9732
+ "name": "isInterestRateModel",
9733
+ "outputs": [
9734
+ {
9735
+ "internalType": "bool",
9736
+ "name": "",
9737
+ "type": "bool"
9738
+ }
9739
+ ],
9740
+ "payable": false,
9741
+ "stateMutability": "view",
9742
+ "type": "function"
9743
+ },
9744
+ {
9745
+ "constant": true,
9746
+ "inputs": [],
9747
+ "name": "jumpMultiplierPerBlock",
9748
+ "outputs": [
9749
+ {
9750
+ "internalType": "uint256",
9751
+ "name": "",
9752
+ "type": "uint256"
9753
+ }
9754
+ ],
9755
+ "payable": false,
9756
+ "stateMutability": "view",
9757
+ "type": "function"
9758
+ },
9759
+ {
9760
+ "constant": true,
9761
+ "inputs": [],
9762
+ "name": "kink",
9763
+ "outputs": [
9764
+ {
9765
+ "internalType": "uint256",
9766
+ "name": "",
9767
+ "type": "uint256"
9768
+ }
9769
+ ],
9770
+ "payable": false,
9771
+ "stateMutability": "view",
9772
+ "type": "function"
9773
+ },
9774
+ {
9775
+ "constant": true,
9776
+ "inputs": [],
9777
+ "name": "multiplierPerBlock",
9778
+ "outputs": [
9779
+ {
9780
+ "internalType": "uint256",
9781
+ "name": "",
9782
+ "type": "uint256"
9783
+ }
9784
+ ],
9785
+ "payable": false,
9786
+ "stateMutability": "view",
9787
+ "type": "function"
9788
+ },
9789
+ {
9790
+ "constant": true,
9791
+ "inputs": [
9792
+ {
9793
+ "internalType": "uint256",
9794
+ "name": "cash",
9795
+ "type": "uint256"
9796
+ },
9797
+ {
9798
+ "internalType": "uint256",
9799
+ "name": "borrows",
9800
+ "type": "uint256"
9801
+ },
9802
+ {
9803
+ "internalType": "uint256",
9804
+ "name": "reserves",
9805
+ "type": "uint256"
9806
+ }
9807
+ ],
9808
+ "name": "utilizationRate",
9809
+ "outputs": [
9810
+ {
9811
+ "internalType": "uint256",
9812
+ "name": "",
9813
+ "type": "uint256"
9814
+ }
9815
+ ],
9816
+ "payable": false,
9817
+ "stateMutability": "pure",
9818
+ "type": "function"
9819
+ }
9820
+ ]
9821
+ },
9571
9822
  "JumpRateModel_base0bps_slope1250bps_jump25000bps_kink8000bps": {
9572
9823
  "address": "0x1485A27D95D3d2878a6641055dD3a643F296CCf6",
9573
9824
  "abi": [
@@ -10321,6 +10572,508 @@
10321
10572
  }
10322
10573
  ]
10323
10574
  },
10575
+ "JumpRateModel_base0bps_slope875bps_jump25000bps_kink8000bps": {
10576
+ "address": "0xBe4609d972FdEBAa9DC870F4A957F40C301bEb1D",
10577
+ "abi": [
10578
+ {
10579
+ "inputs": [
10580
+ {
10581
+ "internalType": "uint256",
10582
+ "name": "baseRatePerYear",
10583
+ "type": "uint256"
10584
+ },
10585
+ {
10586
+ "internalType": "uint256",
10587
+ "name": "multiplierPerYear",
10588
+ "type": "uint256"
10589
+ },
10590
+ {
10591
+ "internalType": "uint256",
10592
+ "name": "jumpMultiplierPerYear",
10593
+ "type": "uint256"
10594
+ },
10595
+ {
10596
+ "internalType": "uint256",
10597
+ "name": "kink_",
10598
+ "type": "uint256"
10599
+ }
10600
+ ],
10601
+ "payable": false,
10602
+ "stateMutability": "nonpayable",
10603
+ "type": "constructor"
10604
+ },
10605
+ {
10606
+ "anonymous": false,
10607
+ "inputs": [
10608
+ {
10609
+ "indexed": false,
10610
+ "internalType": "uint256",
10611
+ "name": "baseRatePerBlock",
10612
+ "type": "uint256"
10613
+ },
10614
+ {
10615
+ "indexed": false,
10616
+ "internalType": "uint256",
10617
+ "name": "multiplierPerBlock",
10618
+ "type": "uint256"
10619
+ },
10620
+ {
10621
+ "indexed": false,
10622
+ "internalType": "uint256",
10623
+ "name": "jumpMultiplierPerBlock",
10624
+ "type": "uint256"
10625
+ },
10626
+ {
10627
+ "indexed": false,
10628
+ "internalType": "uint256",
10629
+ "name": "kink",
10630
+ "type": "uint256"
10631
+ }
10632
+ ],
10633
+ "name": "NewInterestParams",
10634
+ "type": "event"
10635
+ },
10636
+ {
10637
+ "constant": true,
10638
+ "inputs": [],
10639
+ "name": "baseRatePerBlock",
10640
+ "outputs": [
10641
+ {
10642
+ "internalType": "uint256",
10643
+ "name": "",
10644
+ "type": "uint256"
10645
+ }
10646
+ ],
10647
+ "payable": false,
10648
+ "stateMutability": "view",
10649
+ "type": "function"
10650
+ },
10651
+ {
10652
+ "constant": true,
10653
+ "inputs": [],
10654
+ "name": "blocksPerYear",
10655
+ "outputs": [
10656
+ {
10657
+ "internalType": "uint256",
10658
+ "name": "",
10659
+ "type": "uint256"
10660
+ }
10661
+ ],
10662
+ "payable": false,
10663
+ "stateMutability": "view",
10664
+ "type": "function"
10665
+ },
10666
+ {
10667
+ "constant": true,
10668
+ "inputs": [
10669
+ {
10670
+ "internalType": "uint256",
10671
+ "name": "cash",
10672
+ "type": "uint256"
10673
+ },
10674
+ {
10675
+ "internalType": "uint256",
10676
+ "name": "borrows",
10677
+ "type": "uint256"
10678
+ },
10679
+ {
10680
+ "internalType": "uint256",
10681
+ "name": "reserves",
10682
+ "type": "uint256"
10683
+ }
10684
+ ],
10685
+ "name": "getBorrowRate",
10686
+ "outputs": [
10687
+ {
10688
+ "internalType": "uint256",
10689
+ "name": "",
10690
+ "type": "uint256"
10691
+ }
10692
+ ],
10693
+ "payable": false,
10694
+ "stateMutability": "view",
10695
+ "type": "function"
10696
+ },
10697
+ {
10698
+ "constant": true,
10699
+ "inputs": [
10700
+ {
10701
+ "internalType": "uint256",
10702
+ "name": "cash",
10703
+ "type": "uint256"
10704
+ },
10705
+ {
10706
+ "internalType": "uint256",
10707
+ "name": "borrows",
10708
+ "type": "uint256"
10709
+ },
10710
+ {
10711
+ "internalType": "uint256",
10712
+ "name": "reserves",
10713
+ "type": "uint256"
10714
+ },
10715
+ {
10716
+ "internalType": "uint256",
10717
+ "name": "reserveFactorMantissa",
10718
+ "type": "uint256"
10719
+ }
10720
+ ],
10721
+ "name": "getSupplyRate",
10722
+ "outputs": [
10723
+ {
10724
+ "internalType": "uint256",
10725
+ "name": "",
10726
+ "type": "uint256"
10727
+ }
10728
+ ],
10729
+ "payable": false,
10730
+ "stateMutability": "view",
10731
+ "type": "function"
10732
+ },
10733
+ {
10734
+ "constant": true,
10735
+ "inputs": [],
10736
+ "name": "isInterestRateModel",
10737
+ "outputs": [
10738
+ {
10739
+ "internalType": "bool",
10740
+ "name": "",
10741
+ "type": "bool"
10742
+ }
10743
+ ],
10744
+ "payable": false,
10745
+ "stateMutability": "view",
10746
+ "type": "function"
10747
+ },
10748
+ {
10749
+ "constant": true,
10750
+ "inputs": [],
10751
+ "name": "jumpMultiplierPerBlock",
10752
+ "outputs": [
10753
+ {
10754
+ "internalType": "uint256",
10755
+ "name": "",
10756
+ "type": "uint256"
10757
+ }
10758
+ ],
10759
+ "payable": false,
10760
+ "stateMutability": "view",
10761
+ "type": "function"
10762
+ },
10763
+ {
10764
+ "constant": true,
10765
+ "inputs": [],
10766
+ "name": "kink",
10767
+ "outputs": [
10768
+ {
10769
+ "internalType": "uint256",
10770
+ "name": "",
10771
+ "type": "uint256"
10772
+ }
10773
+ ],
10774
+ "payable": false,
10775
+ "stateMutability": "view",
10776
+ "type": "function"
10777
+ },
10778
+ {
10779
+ "constant": true,
10780
+ "inputs": [],
10781
+ "name": "multiplierPerBlock",
10782
+ "outputs": [
10783
+ {
10784
+ "internalType": "uint256",
10785
+ "name": "",
10786
+ "type": "uint256"
10787
+ }
10788
+ ],
10789
+ "payable": false,
10790
+ "stateMutability": "view",
10791
+ "type": "function"
10792
+ },
10793
+ {
10794
+ "constant": true,
10795
+ "inputs": [
10796
+ {
10797
+ "internalType": "uint256",
10798
+ "name": "cash",
10799
+ "type": "uint256"
10800
+ },
10801
+ {
10802
+ "internalType": "uint256",
10803
+ "name": "borrows",
10804
+ "type": "uint256"
10805
+ },
10806
+ {
10807
+ "internalType": "uint256",
10808
+ "name": "reserves",
10809
+ "type": "uint256"
10810
+ }
10811
+ ],
10812
+ "name": "utilizationRate",
10813
+ "outputs": [
10814
+ {
10815
+ "internalType": "uint256",
10816
+ "name": "",
10817
+ "type": "uint256"
10818
+ }
10819
+ ],
10820
+ "payable": false,
10821
+ "stateMutability": "pure",
10822
+ "type": "function"
10823
+ }
10824
+ ]
10825
+ },
10826
+ "JumpRateModel_base0bps_slope875bps_jump50000bps_kink8000bps": {
10827
+ "address": "0xE19C14171C2aC6CA63E008133e4B0D8571164BA3",
10828
+ "abi": [
10829
+ {
10830
+ "inputs": [
10831
+ {
10832
+ "internalType": "uint256",
10833
+ "name": "baseRatePerYear",
10834
+ "type": "uint256"
10835
+ },
10836
+ {
10837
+ "internalType": "uint256",
10838
+ "name": "multiplierPerYear",
10839
+ "type": "uint256"
10840
+ },
10841
+ {
10842
+ "internalType": "uint256",
10843
+ "name": "jumpMultiplierPerYear",
10844
+ "type": "uint256"
10845
+ },
10846
+ {
10847
+ "internalType": "uint256",
10848
+ "name": "kink_",
10849
+ "type": "uint256"
10850
+ }
10851
+ ],
10852
+ "payable": false,
10853
+ "stateMutability": "nonpayable",
10854
+ "type": "constructor"
10855
+ },
10856
+ {
10857
+ "anonymous": false,
10858
+ "inputs": [
10859
+ {
10860
+ "indexed": false,
10861
+ "internalType": "uint256",
10862
+ "name": "baseRatePerBlock",
10863
+ "type": "uint256"
10864
+ },
10865
+ {
10866
+ "indexed": false,
10867
+ "internalType": "uint256",
10868
+ "name": "multiplierPerBlock",
10869
+ "type": "uint256"
10870
+ },
10871
+ {
10872
+ "indexed": false,
10873
+ "internalType": "uint256",
10874
+ "name": "jumpMultiplierPerBlock",
10875
+ "type": "uint256"
10876
+ },
10877
+ {
10878
+ "indexed": false,
10879
+ "internalType": "uint256",
10880
+ "name": "kink",
10881
+ "type": "uint256"
10882
+ }
10883
+ ],
10884
+ "name": "NewInterestParams",
10885
+ "type": "event"
10886
+ },
10887
+ {
10888
+ "constant": true,
10889
+ "inputs": [],
10890
+ "name": "baseRatePerBlock",
10891
+ "outputs": [
10892
+ {
10893
+ "internalType": "uint256",
10894
+ "name": "",
10895
+ "type": "uint256"
10896
+ }
10897
+ ],
10898
+ "payable": false,
10899
+ "stateMutability": "view",
10900
+ "type": "function"
10901
+ },
10902
+ {
10903
+ "constant": true,
10904
+ "inputs": [],
10905
+ "name": "blocksPerYear",
10906
+ "outputs": [
10907
+ {
10908
+ "internalType": "uint256",
10909
+ "name": "",
10910
+ "type": "uint256"
10911
+ }
10912
+ ],
10913
+ "payable": false,
10914
+ "stateMutability": "view",
10915
+ "type": "function"
10916
+ },
10917
+ {
10918
+ "constant": true,
10919
+ "inputs": [
10920
+ {
10921
+ "internalType": "uint256",
10922
+ "name": "cash",
10923
+ "type": "uint256"
10924
+ },
10925
+ {
10926
+ "internalType": "uint256",
10927
+ "name": "borrows",
10928
+ "type": "uint256"
10929
+ },
10930
+ {
10931
+ "internalType": "uint256",
10932
+ "name": "reserves",
10933
+ "type": "uint256"
10934
+ }
10935
+ ],
10936
+ "name": "getBorrowRate",
10937
+ "outputs": [
10938
+ {
10939
+ "internalType": "uint256",
10940
+ "name": "",
10941
+ "type": "uint256"
10942
+ }
10943
+ ],
10944
+ "payable": false,
10945
+ "stateMutability": "view",
10946
+ "type": "function"
10947
+ },
10948
+ {
10949
+ "constant": true,
10950
+ "inputs": [
10951
+ {
10952
+ "internalType": "uint256",
10953
+ "name": "cash",
10954
+ "type": "uint256"
10955
+ },
10956
+ {
10957
+ "internalType": "uint256",
10958
+ "name": "borrows",
10959
+ "type": "uint256"
10960
+ },
10961
+ {
10962
+ "internalType": "uint256",
10963
+ "name": "reserves",
10964
+ "type": "uint256"
10965
+ },
10966
+ {
10967
+ "internalType": "uint256",
10968
+ "name": "reserveFactorMantissa",
10969
+ "type": "uint256"
10970
+ }
10971
+ ],
10972
+ "name": "getSupplyRate",
10973
+ "outputs": [
10974
+ {
10975
+ "internalType": "uint256",
10976
+ "name": "",
10977
+ "type": "uint256"
10978
+ }
10979
+ ],
10980
+ "payable": false,
10981
+ "stateMutability": "view",
10982
+ "type": "function"
10983
+ },
10984
+ {
10985
+ "constant": true,
10986
+ "inputs": [],
10987
+ "name": "isInterestRateModel",
10988
+ "outputs": [
10989
+ {
10990
+ "internalType": "bool",
10991
+ "name": "",
10992
+ "type": "bool"
10993
+ }
10994
+ ],
10995
+ "payable": false,
10996
+ "stateMutability": "view",
10997
+ "type": "function"
10998
+ },
10999
+ {
11000
+ "constant": true,
11001
+ "inputs": [],
11002
+ "name": "jumpMultiplierPerBlock",
11003
+ "outputs": [
11004
+ {
11005
+ "internalType": "uint256",
11006
+ "name": "",
11007
+ "type": "uint256"
11008
+ }
11009
+ ],
11010
+ "payable": false,
11011
+ "stateMutability": "view",
11012
+ "type": "function"
11013
+ },
11014
+ {
11015
+ "constant": true,
11016
+ "inputs": [],
11017
+ "name": "kink",
11018
+ "outputs": [
11019
+ {
11020
+ "internalType": "uint256",
11021
+ "name": "",
11022
+ "type": "uint256"
11023
+ }
11024
+ ],
11025
+ "payable": false,
11026
+ "stateMutability": "view",
11027
+ "type": "function"
11028
+ },
11029
+ {
11030
+ "constant": true,
11031
+ "inputs": [],
11032
+ "name": "multiplierPerBlock",
11033
+ "outputs": [
11034
+ {
11035
+ "internalType": "uint256",
11036
+ "name": "",
11037
+ "type": "uint256"
11038
+ }
11039
+ ],
11040
+ "payable": false,
11041
+ "stateMutability": "view",
11042
+ "type": "function"
11043
+ },
11044
+ {
11045
+ "constant": true,
11046
+ "inputs": [
11047
+ {
11048
+ "internalType": "uint256",
11049
+ "name": "cash",
11050
+ "type": "uint256"
11051
+ },
11052
+ {
11053
+ "internalType": "uint256",
11054
+ "name": "borrows",
11055
+ "type": "uint256"
11056
+ },
11057
+ {
11058
+ "internalType": "uint256",
11059
+ "name": "reserves",
11060
+ "type": "uint256"
11061
+ }
11062
+ ],
11063
+ "name": "utilizationRate",
11064
+ "outputs": [
11065
+ {
11066
+ "internalType": "uint256",
11067
+ "name": "",
11068
+ "type": "uint256"
11069
+ }
11070
+ ],
11071
+ "payable": false,
11072
+ "stateMutability": "pure",
11073
+ "type": "function"
11074
+ }
11075
+ ]
11076
+ },
10324
11077
  "LINK": {
10325
11078
  "address": "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD",
10326
11079
  "abi": [