[bugfixes] change threshold to LTV (#370)
This commit is contained in:
parent
5e075ae69f
commit
4c18575b64
@ -34,6 +34,7 @@ export default function MarketDetails({ data, type }: Props) {
|
|||||||
|
|
||||||
const details: Detail[] = useMemo(() => {
|
const details: Detail[] = useMemo(() => {
|
||||||
const isDollar = displayCurrencySymbol === '$'
|
const isDollar = displayCurrencySymbol === '$'
|
||||||
|
|
||||||
function getLendingMarketDetails() {
|
function getLendingMarketDetails() {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
@ -53,7 +54,7 @@ export default function MarketDetails({ data, type }: Props) {
|
|||||||
{
|
{
|
||||||
amount: marketLiquidationThreshold * 100,
|
amount: marketLiquidationThreshold * 100,
|
||||||
options: { minDecimals: 2, maxDecimals: 2, suffix: '%' },
|
options: { minDecimals: 2, maxDecimals: 2, suffix: '%' },
|
||||||
title: 'Liquidation Threshold',
|
title: 'Liquidation LTV',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
amount: getConversionRate(asset.denom).toNumber(),
|
amount: getConversionRate(asset.denom).toNumber(),
|
||||||
|
Loading…
Reference in New Issue
Block a user