Skip to content

Commit 5df0686

Browse files
author
zlace0x
committed
feat: added price and stats
1 parent edae32f commit 5df0686

File tree

2 files changed

+50
-11
lines changed

2 files changed

+50
-11
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"react-dom": "^17.0.2",
1111
"react-scripts": "^4.0.3",
1212
"recharts": "^2.1.9",
13+
"typescript": "^4.6.4",
1314
"web-vitals": "^1.1.2",
1415
"websocket": "^1.0.34"
1516
},

src/App.js

+49-11
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,50 @@ import { useEffect, useState } from "react";
33
import { useLCDClient } from "@terra-money/wallet-provider";
44
import React from "react";
55
import { BarChart, Bar, Cell, YAxis, ReferenceLine, LabelList } from "recharts";
6+
import { computeSwap, coinAfterSpread } from "./lib/market";
7+
import { Coin } from "@terra-money/terra.js";
68

79
const colors = ["#0088FE", "#FFBB28"];
10+
const ust_swap_size = 10000;
811

912
function App() {
1013
const [data, setData] = useState([]);
14+
15+
const [swapRate, setSwapRate] = useState([]);
16+
const [basePool, setBasePool] = useState([]);
1117
const [scale, setScale] = useState([49000000, 51000000]);
1218
const lcd = useLCDClient();
1319

1420
useEffect(() => {
1521
const fetchPools = async () => {
1622
const delta = await lcd.market.poolDelta();
17-
const { base_pool } = await lcd.market.parameters();
23+
const luna_rates = await lcd.oracle.exchangeRates();
24+
const { base_pool, min_stability_spread } = await lcd.market.parameters();
1825
const microTerraSide = base_pool.plus(delta);
19-
const micraLunaSide = base_pool.pow(2).div(microTerraSide);
20-
21-
const terraSide = microTerraSide.times(0.000001).toNumber()
22-
const lunaSide = micraLunaSide.times(0.000001).toNumber()
26+
const microLunaSide = base_pool.pow(2).div(microTerraSide);
27+
28+
const terraSide = microTerraSide.times(0.000001).toNumber();
29+
const lunaSide = microLunaSide.times(0.000001).toNumber();
30+
31+
setBasePool(base_pool);
32+
const ustSwapRate = computeSwap(
33+
new Coin("uusd", ust_swap_size * 1e6),
34+
"uluna",
35+
luna_rates,
36+
base_pool,
37+
min_stability_spread,
38+
delta
39+
);
40+
41+
setSwapRate(ustSwapRate);
2342

2443
setData([
2544
{
26-
name: "Stablecoins",
45+
name: "Stablecoins (in sdr)",
2746
amt: terraSide,
2847
},
2948
{
30-
name: "LUNA",
49+
name: "LUNA (in sdr)",
3150
amt: lunaSide,
3251
},
3352
]);
@@ -46,20 +65,30 @@ function App() {
4665
};
4766
}, [lcd.market]);
4867

68+
if (!swapRate) {
69+
return "Loading...";
70+
}
71+
72+
const beforeSpreadFee = swapRate[0]?.amount.div(1e6);
73+
const afterSpreadFee = coinAfterSpread(swapRate[0], swapRate[1])?.amount.div(
74+
1e6
75+
);
4976
return (
5077
<div className="App">
5178
<center>
5279
<h1>Terra Virtual Liquidity Pools</h1>
5380
<BarChart width={800} height={400} data={data}>
5481
<Bar isAnimationActive={false} label={false} dataKey="amt">
55-
{data.map((entry, index) => <Cell key={`cell-${index}`} fill={colors[index % 20]} />)}
82+
{data.map((entry, index) => (
83+
<Cell key={`cell-${index}`} fill={colors[index % 20]} />
84+
))}
5685
<LabelList dataKey="name" position="top" />
57-
{/* <LabelList dataKey="amt" position="inside" fill="#000000" /> */}
86+
<LabelList dataKey="amt" position="inside" fill="#000000" />
5887
</Bar>
5988
<ReferenceLine
6089
isFront={false}
6190
label={{ position: "top", value: "BasePool" }}
62-
y={50000000}
91+
y={basePool.toNumber()}
6392
stroke="#000"
6493
/>
6594
<YAxis
@@ -71,8 +100,17 @@ function App() {
71100
domain={scale}
72101
/>
73102
</BarChart>
103+
104+
<div>
105+
Oracle Rate: {ust_swap_size} ust = {beforeSpreadFee.toFixed(2)} luna
106+
(${(ust_swap_size / beforeSpreadFee).toFixed(4)} per luna)
107+
</div>
108+
<div>
109+
With {swapRate[1]?.times(100).toFixed(2)} % spread fee:{" "}
110+
{ust_swap_size} ust = {afterSpreadFee.toFixed(2)} luna ($
111+
{(ust_swap_size / afterSpreadFee).toFixed(4)} per luna)
112+
</div>
74113
</center>
75-
<a style={{ position: 'fixed', right: 0, top: 0}} href="https://github.com/octalmage/terra-pools"><img loading="lazy" width="149" height="149" src="https://github.blog/wp-content/uploads/2008/12/forkme_right_darkblue_121621.png?resize=149%2C149" class="attachment-full size-full" alt="Fork me on GitHub" data-recalc-dims="1" /></a>
76114
</div>
77115
);
78116
}

0 commit comments

Comments
 (0)