Skip to content

Commit

Permalink
fix: coll
Browse files Browse the repository at this point in the history
  • Loading branch information
rhlsthrm committed Nov 21, 2024
1 parent 060e5d6 commit 63dabad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/chains/src/base/assets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ export const assets: SupportedAsset[] = [
feedBaseCurrency: ChainlinkFeedBaseCurrency.USD
},
extraDocs: defaultDocs("https://basescan.org", fBOMB),
initialCf: "0.30",
initialCf: "0.50",
initialSupplyCap: parseEther(String(20_000_000)).toString(),
initialBorrowCap: parseEther(String(15_000_000)).toString()
},
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/app/_components/markets/PoolRows.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ const PoolRows = ({
<span className="text-white/40 font-semibold text-[11px] text-center md:hidden ">
COLLATERAL FACTOR:
</span>
{collateralFactor}%
{Math.round(collateralFactor)}%
</h3>
<div
className={` col-span-4 mx-auto flex items-center justify-center h-full gap-2 text-xs md:text-[10px] font-semibold px-2 lg:px-10 w-full`}
Expand Down

0 comments on commit 63dabad

Please sign in to comment.