Skip to content

Commit

Permalink
update usdc parameters
Browse files Browse the repository at this point in the history
Signed-off-by: Gregory Hill <[email protected]>
  • Loading branch information
gregdhill committed Feb 9, 2024
1 parent 2f12b6a commit 08112c4
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions scripts/register-asset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,37 +38,37 @@ const NEW_ASSET = {
pools: [
{
token1: { Token: "INTR" },
dexFees: 15,
dexFees: 100,
},
],
market: {
collateralFactor: 630000,
liquidationThreshold: 670000,
reserveFactor: 200000,
closeFactor: 500000,
liquidateIncentive: "1100000000000000000",
collateralFactor: 650000, // 65%
liquidationThreshold: 870000, // 87%
reserveFactor: 100000, // 10%
closeFactor: 500000, // 50%
liquidateIncentive: "1100000000000000000", // 110%
liquidateIncentiveReservedFactor: 25000,
rateModel: {
Jump: {
baseRate: 0,
jumpRate: "50000000000000000",
fullRate: "500000000000000000",
jumpUtilization: 900000
jumpRate: "100000000000000000", // 10%
fullRate: "500000000000000000", // 50%
jumpUtilization: 800000 // 80%
}
},
state: "Pending",
supplyCap: "10000000000",
borrowCap: "10000000000",
supplyCap: "2000000000000", // 2,000,000
borrowCap: "2000000000000", // 2,000,000
lendTokenId: { LendToken: 5 }, // NOTE: make sure this is free
supplyIncentivesPerBlock: 0
},
vaultParams: {
wrappedCurrency: { Token: "IBTC" },
liquidationCollateral: "1450000000000000000",
premiumRedeem: "1650000000000000000",
secureCollateral: "1800000000000000000",
minimumCollateral: "20000000000000",
systemCollateralCeiling: "38000000000000000",
liquidationCollateral: "1050000000000000000", // 105%
premiumRedeem: "1150000000000000000", // 115%
secureCollateral: "1550000000000000000", // 155%
minimumCollateral: "1550000000", // 1550 USDC
systemCollateralCeiling: "2000000000000", // 2,000,000 USDC
}
};

Expand Down

0 comments on commit 08112c4

Please sign in to comment.