Skip to content

Commit

Permalink
feat: add interest rate model deployments for Chaos recs
Browse files Browse the repository at this point in the history
  • Loading branch information
kkirka committed Aug 21, 2024
1 parent 66373f4 commit 6862ef4
Show file tree
Hide file tree
Showing 6 changed files with 2,654 additions and 8 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions helpers/deploymentConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1791,7 +1791,7 @@ export const globalConfig: NetworkConfig = {
symbol: "vUSDT_Stablecoins",
rateModel: InterestRateModels.JumpRate.toString(),
baseRatePerYear: "0",
multiplierPerYear: convertToUnit("0.1", 18),
multiplierPerYear: convertToUnit("0.0375", 18),
jumpMultiplierPerYear: convertToUnit("2.5", 18),
kink_: convertToUnit("0.8", 18),
collateralFactor: convertToUnit("0.8", 18),
Expand Down Expand Up @@ -1910,7 +1910,7 @@ export const globalConfig: NetworkConfig = {
symbol: "vUSDT_DeFi",
rateModel: InterestRateModels.JumpRate.toString(),
baseRatePerYear: convertToUnit("0.02", 18),
multiplierPerYear: convertToUnit("0.15", 18),
multiplierPerYear: convertToUnit("0.135", 18),
jumpMultiplierPerYear: convertToUnit("2.5", 18),
kink_: convertToUnit("0.8", 18),
collateralFactor: convertToUnit("0.8", 18),
Expand Down Expand Up @@ -2085,7 +2085,7 @@ export const globalConfig: NetworkConfig = {
symbol: "vUSDT_GameFi",
rateModel: InterestRateModels.JumpRate.toString(),
baseRatePerYear: convertToUnit("0.02", 18),
multiplierPerYear: convertToUnit("0.15", 18),
multiplierPerYear: convertToUnit("0.135", 18),
jumpMultiplierPerYear: convertToUnit("2.5", 18),
kink_: convertToUnit("0.8", 18),
collateralFactor: convertToUnit("0.8", 18),
Expand Down Expand Up @@ -3379,7 +3379,7 @@ export const globalConfig: NetworkConfig = {
symbol: "vcrvUSD_Core",
rateModel: InterestRateModels.JumpRate.toString(),
baseRatePerYear: "0",
multiplierPerYear: convertToUnit("0.0875", 18),
multiplierPerYear: convertToUnit("0.15", 18),
jumpMultiplierPerYear: convertToUnit("2.5", 18),
kink_: convertToUnit("0.8", 18),
collateralFactor: convertToUnit("0.78", 18),
Expand All @@ -3397,7 +3397,7 @@ export const globalConfig: NetworkConfig = {
symbol: "vDAI_Core",
rateModel: InterestRateModels.JumpRate.toString(),
baseRatePerYear: "0",
multiplierPerYear: convertToUnit("0.15", 18),
multiplierPerYear: convertToUnit("0.0875", 18),
jumpMultiplierPerYear: convertToUnit("2.5", 18),
kink_: convertToUnit("0.8", 18),
collateralFactor: convertToUnit("0.75", 18),
Expand All @@ -3415,7 +3415,7 @@ export const globalConfig: NetworkConfig = {
symbol: "vTUSD_Core",
rateModel: InterestRateModels.JumpRate.toString(),
baseRatePerYear: "0",
multiplierPerYear: convertToUnit("0.15", 18),
multiplierPerYear: convertToUnit("0.0875", 18),
jumpMultiplierPerYear: convertToUnit("2.5", 18),
kink_: convertToUnit("0.8", 18),
collateralFactor: convertToUnit("0.75", 18),
Expand Down Expand Up @@ -4295,7 +4295,7 @@ export const globalConfig: NetworkConfig = {
symbol: "vUSDC_Core",
rateModel: InterestRateModels.JumpRate.toString(),
baseRatePerYear: "0",
multiplierPerYear: convertToUnit("0.0875", 18),
multiplierPerYear: convertToUnit("0.08", 18),
jumpMultiplierPerYear: convertToUnit("2.5", 18),
kink_: convertToUnit("0.8", 18),
collateralFactor: convertToUnit("0.78", 18),
Expand All @@ -4313,7 +4313,7 @@ export const globalConfig: NetworkConfig = {
symbol: "vUSDT_Core",
rateModel: InterestRateModels.JumpRate.toString(),
baseRatePerYear: "0",
multiplierPerYear: convertToUnit("0.0875", 18),
multiplierPerYear: convertToUnit("0.08", 18),
jumpMultiplierPerYear: convertToUnit("2.5", 18),
kink_: convertToUnit("0.8", 18),
collateralFactor: convertToUnit("0.78", 18),
Expand Down

0 comments on commit 6862ef4

Please sign in to comment.