Rename capital collected and show initial hatch funds
This commit is contained in:
parent
ac451b34af
commit
dfeda20a04
22
src/App.tsx
22
src/App.tsx
|
|
@ -234,24 +234,24 @@ export default function App() {
|
|||
|
||||
const resultFields = [
|
||||
{
|
||||
label: `Average slippage (avg tx size ${Math.round(
|
||||
avgTxSize
|
||||
).toLocaleString()} DAI)`,
|
||||
value: +(100 * avgSlippage).toFixed(3) + "%"
|
||||
label: `Total reserve`,
|
||||
value: (+totalReserve.toPrecision(3)).toLocaleString() + " DAI"
|
||||
},
|
||||
{
|
||||
label: `Capital collected from withdraw fees (${withdrawCount} txs)`,
|
||||
label: `Funds generated from initial hatch`,
|
||||
value: Math.round(d0 * theta).toLocaleString() + " DAI"
|
||||
},
|
||||
{
|
||||
label: `Funds generated from withdraw fees (${withdrawCount} txs)`,
|
||||
value:
|
||||
(+getLast(withdrawFeeTimeseries).toPrecision(3)).toLocaleString() +
|
||||
" DAI"
|
||||
},
|
||||
{
|
||||
label: `Capital collected from initial hatch`,
|
||||
value: Math.round(d0 * theta).toLocaleString() + " DAI"
|
||||
},
|
||||
{
|
||||
label: `Total reserve`,
|
||||
value: (+totalReserve.toPrecision(3)).toLocaleString() + " DAI"
|
||||
label: `Average slippage (avg tx size ${Math.round(
|
||||
avgTxSize
|
||||
).toLocaleString()} DAI)`,
|
||||
value: +(100 * avgSlippage).toFixed(3) + "%"
|
||||
}
|
||||
];
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue