@venusprotocol/venus-protocol 9.8.0-dev.21 → 9.8.0-dev.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/deployments/bscmainnet/JumpRateModel_base25bps_slope367bps_jump20000bps_kink7500bps_bpy42048000.json +394 -0
- package/deployments/bscmainnet/vWBNB.json +2382 -0
- package/deployments/bscmainnet.json +15835 -13895
- package/deployments/bscmainnet_addresses.json +2 -0
- package/dist/deployments/bscmainnet.json +15835 -13895
- package/dist/helpers/markets/bscmainnet.d.ts +26 -2
- package/dist/helpers/markets/bscmainnet.js +27 -2
- package/dist/helpers/tokens/bscmainnet.d.ts +7 -0
- package/dist/helpers/tokens/bscmainnet.js +7 -0
- package/dist/helpers/tokens/index.d.ts +21 -0
- package/package.json +1 -1
|
@@ -111,8 +111,8 @@ declare const _default: readonly [{
|
|
|
111
111
|
readonly asset: "BTCB";
|
|
112
112
|
readonly interestRateModel: {
|
|
113
113
|
readonly model: "jump";
|
|
114
|
-
readonly baseRatePerYear: "0";
|
|
115
|
-
readonly multiplierPerYear: "0.
|
|
114
|
+
readonly baseRatePerYear: "0.0025";
|
|
115
|
+
readonly multiplierPerYear: "0.0367";
|
|
116
116
|
readonly kink: "0.75";
|
|
117
117
|
readonly jumpMultiplierPerYear: "2";
|
|
118
118
|
};
|
|
@@ -712,5 +712,29 @@ declare const _default: readonly [{
|
|
|
712
712
|
readonly amount: "0.14";
|
|
713
713
|
readonly vTokenReceiver: "VTreasury";
|
|
714
714
|
};
|
|
715
|
+
}, {
|
|
716
|
+
readonly name: "Venus WBNB";
|
|
717
|
+
readonly symbol: "vWBNB";
|
|
718
|
+
readonly asset: "WBNB";
|
|
719
|
+
readonly interestRateModel: {
|
|
720
|
+
readonly model: "two-kinks";
|
|
721
|
+
readonly baseRatePerYear: "0";
|
|
722
|
+
readonly multiplierPerYear: "0.045";
|
|
723
|
+
readonly kink: "0.7";
|
|
724
|
+
readonly baseRatePerYear2: "0";
|
|
725
|
+
readonly multiplierPerYear2: "1.4";
|
|
726
|
+
readonly kink2: "0.8";
|
|
727
|
+
readonly jumpMultiplierPerYear: "3";
|
|
728
|
+
};
|
|
729
|
+
readonly riskParameters: {
|
|
730
|
+
readonly collateralFactor: "0.8";
|
|
731
|
+
readonly reserveFactor: "0.3";
|
|
732
|
+
readonly supplyCap: "2672000";
|
|
733
|
+
readonly borrowCap: "2008000";
|
|
734
|
+
};
|
|
735
|
+
readonly initialSupply: {
|
|
736
|
+
readonly amount: "1";
|
|
737
|
+
readonly vTokenReceiver: "VTreasury";
|
|
738
|
+
};
|
|
715
739
|
}];
|
|
716
740
|
export default _default;
|
|
@@ -120,8 +120,8 @@ exports.default = [
|
|
|
120
120
|
asset: "BTCB",
|
|
121
121
|
interestRateModel: {
|
|
122
122
|
model: "jump",
|
|
123
|
-
baseRatePerYear: "0",
|
|
124
|
-
multiplierPerYear: "0.
|
|
123
|
+
baseRatePerYear: "0.0025",
|
|
124
|
+
multiplierPerYear: "0.0367",
|
|
125
125
|
kink: "0.75",
|
|
126
126
|
jumpMultiplierPerYear: "2",
|
|
127
127
|
},
|
|
@@ -754,4 +754,29 @@ exports.default = [
|
|
|
754
754
|
vTokenReceiver: "VTreasury",
|
|
755
755
|
},
|
|
756
756
|
},
|
|
757
|
+
{
|
|
758
|
+
name: "Venus WBNB",
|
|
759
|
+
symbol: "vWBNB",
|
|
760
|
+
asset: "WBNB",
|
|
761
|
+
interestRateModel: {
|
|
762
|
+
model: "two-kinks",
|
|
763
|
+
baseRatePerYear: "0",
|
|
764
|
+
multiplierPerYear: "0.045",
|
|
765
|
+
kink: "0.7",
|
|
766
|
+
baseRatePerYear2: "0",
|
|
767
|
+
multiplierPerYear2: "1.4",
|
|
768
|
+
kink2: "0.8",
|
|
769
|
+
jumpMultiplierPerYear: "3",
|
|
770
|
+
},
|
|
771
|
+
riskParameters: {
|
|
772
|
+
collateralFactor: "0.8",
|
|
773
|
+
reserveFactor: "0.3",
|
|
774
|
+
supplyCap: "2672000",
|
|
775
|
+
borrowCap: "2008000",
|
|
776
|
+
},
|
|
777
|
+
initialSupply: {
|
|
778
|
+
amount: "1",
|
|
779
|
+
vTokenReceiver: "VTreasury",
|
|
780
|
+
},
|
|
781
|
+
},
|
|
757
782
|
];
|
|
@@ -270,5 +270,12 @@ declare const _default: {
|
|
|
270
270
|
readonly decimals: 18;
|
|
271
271
|
readonly tokenAddress: "0x77734e70b6E88b4d82fE632a168EDf6e700912b6";
|
|
272
272
|
};
|
|
273
|
+
WBNB: {
|
|
274
|
+
readonly isMock: false;
|
|
275
|
+
readonly name: "Wrapped BNB";
|
|
276
|
+
readonly symbol: "WBNB";
|
|
277
|
+
readonly decimals: 18;
|
|
278
|
+
readonly tokenAddress: "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c";
|
|
279
|
+
};
|
|
273
280
|
};
|
|
274
281
|
export default _default;
|
|
@@ -275,5 +275,12 @@ const tokens = [
|
|
|
275
275
|
decimals: 18,
|
|
276
276
|
tokenAddress: "0x77734e70b6E88b4d82fE632a168EDf6e700912b6",
|
|
277
277
|
},
|
|
278
|
+
{
|
|
279
|
+
isMock: false,
|
|
280
|
+
name: "Wrapped BNB",
|
|
281
|
+
symbol: "WBNB",
|
|
282
|
+
decimals: 18,
|
|
283
|
+
tokenAddress: "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c",
|
|
284
|
+
},
|
|
278
285
|
];
|
|
279
286
|
exports.default = (0, indexBySymbol_1.indexBySymbol)(tokens);
|
|
@@ -521,6 +521,13 @@ export declare const tokens: {
|
|
|
521
521
|
readonly decimals: 18;
|
|
522
522
|
readonly tokenAddress: "0x77734e70b6E88b4d82fE632a168EDf6e700912b6";
|
|
523
523
|
};
|
|
524
|
+
WBNB: {
|
|
525
|
+
readonly isMock: false;
|
|
526
|
+
readonly name: "Wrapped BNB";
|
|
527
|
+
readonly symbol: "WBNB";
|
|
528
|
+
readonly decimals: 18;
|
|
529
|
+
readonly tokenAddress: "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c";
|
|
530
|
+
};
|
|
524
531
|
};
|
|
525
532
|
readonly sepolia: {};
|
|
526
533
|
readonly ethereum: {};
|
|
@@ -1060,6 +1067,13 @@ export declare const getToken: <c extends "hardhat" | "bsctestnet" | "bscmainnet
|
|
|
1060
1067
|
readonly decimals: 18;
|
|
1061
1068
|
readonly tokenAddress: "0x77734e70b6E88b4d82fE632a168EDf6e700912b6";
|
|
1062
1069
|
};
|
|
1070
|
+
WBNB: {
|
|
1071
|
+
readonly isMock: false;
|
|
1072
|
+
readonly name: "Wrapped BNB";
|
|
1073
|
+
readonly symbol: "WBNB";
|
|
1074
|
+
readonly decimals: 18;
|
|
1075
|
+
readonly tokenAddress: "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c";
|
|
1076
|
+
};
|
|
1063
1077
|
};
|
|
1064
1078
|
readonly sepolia: {};
|
|
1065
1079
|
readonly ethereum: {};
|
|
@@ -1597,6 +1611,13 @@ export declare const parseTokens: <c extends "hardhat" | "bsctestnet" | "bscmain
|
|
|
1597
1611
|
readonly decimals: 18;
|
|
1598
1612
|
readonly tokenAddress: "0x77734e70b6E88b4d82fE632a168EDf6e700912b6";
|
|
1599
1613
|
};
|
|
1614
|
+
WBNB: {
|
|
1615
|
+
readonly isMock: false;
|
|
1616
|
+
readonly name: "Wrapped BNB";
|
|
1617
|
+
readonly symbol: "WBNB";
|
|
1618
|
+
readonly decimals: 18;
|
|
1619
|
+
readonly tokenAddress: "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c";
|
|
1620
|
+
};
|
|
1600
1621
|
};
|
|
1601
1622
|
readonly sepolia: {};
|
|
1602
1623
|
readonly ethereum: {};
|