ltv doesnt work, show asset liab weights
This commit is contained in:
parent
a4d1fa797a
commit
7300b5eb4b
|
@ -66,13 +66,23 @@ const TokenList = () => {
|
||||||
</div>
|
</div>
|
||||||
</th>
|
</th>
|
||||||
<th className="">
|
<th className="">
|
||||||
<div className="flex items-center">
|
<div className="flex items-center justify-center">
|
||||||
<span>LTV</span>
|
<span>Asset Weight</span>
|
||||||
<InfoTooltip
|
{/* <InfoTooltip
|
||||||
content={
|
content={
|
||||||
'The loan-to-value (LTV) ratio is how much you can borrow against your deposits.'
|
'The loan-to-value (LTV) ratio is how much you can borrow against your deposits.'
|
||||||
}
|
}
|
||||||
/>
|
/> */}
|
||||||
|
</div>
|
||||||
|
</th>
|
||||||
|
<th className="">
|
||||||
|
<div className="flex items-center justify-center">
|
||||||
|
<span>Liability Weight</span>
|
||||||
|
{/* <InfoTooltip
|
||||||
|
content={
|
||||||
|
'The loan-to-value (LTV) ratio is how much you can borrow against your deposits.'
|
||||||
|
}
|
||||||
|
/> */}
|
||||||
</div>
|
</div>
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -151,10 +161,13 @@ const TokenList = () => {
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<div className="flex flex-col">
|
<div className="text-center">
|
||||||
<p>
|
<p>{bank.initAssetWeight.toFixed(2)}</p>
|
||||||
{(bank.initAssetWeight.toNumber() * 100).toFixed()}%
|
</div>
|
||||||
</p>
|
</td>
|
||||||
|
<td>
|
||||||
|
<div className="text-center">
|
||||||
|
<p>{bank.initLiabWeight.toFixed(2)}</p>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in New Issue