Skip to content

Commit 34ff62e

Browse files
authored
Merge pull request #236 from Gearbox-protocol/de-snake-patch-5
feat: add monad markets
2 parents 3183f62 + c2dbe22 commit 34ff62e

File tree

2 files changed

+50
-36
lines changed

2 files changed

+50
-36
lines changed

src/core/pools.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
export type TokenTypePool = "eth" | "stable" | "btc" | "wbnb" | "s" | "hemiBTC";
1+
export type TokenTypePool =
2+
| "eth"
3+
| "stable"
4+
| "btc"
5+
| "wbnb"
6+
| "s"
7+
| "hemiBTC"
8+
| "mon";
29

310
export interface PoolConfigPayload {
411
// is used to recognize pool in the list; maybe show this name instead of version + underlying symbol?

src/pools/index.ts

Lines changed: 42 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -18,36 +18,36 @@ export const POOLS_LIST: Array<PoolConfigPayload> = [
1818
poolType: ["eth"],
1919
},
2020
{
21-
name: "Invariant USDT0",
22-
address: "0x76309a9a56309104518847bba321c261b7b4a43f",
23-
chainId: 9745,
24-
network: "Plasma",
25-
curator: "Invariant Group",
21+
name: "Re7 USDC",
22+
address: "0x653e62a9ef0e869f91dc3d627b479592aa02ea75",
23+
chainId: 42793,
24+
network: "Etherlink",
25+
curator: "Re7",
2626
poolType: ["stable"],
2727
},
2828
{
29-
name: "Edge UltraYield USDT0",
30-
address: "0x53e4e9b8766969c43895839cc9c673bb6bc8ac97",
31-
chainId: 9745,
32-
network: "Plasma",
33-
curator: "Edge UltraYield",
29+
name: "Tulipa USDC",
30+
address: "0xf0795c47fa58d00f5f77f4d5c01f31ee891e21b4",
31+
chainId: 1,
32+
network: "Mainnet",
33+
curator: "Tulipa",
3434
poolType: ["stable"],
3535
},
3636
{
37-
name: "Hyperithm USDT0",
38-
address: "0xb74760fd26400030620027dd29d19d74d514700e",
39-
chainId: 9745,
40-
network: "Plasma",
41-
curator: "Hyperithm",
37+
name: "Edge UltraYield USDC",
38+
address: "0x6b343f7b797f1488aa48c49d540690f2b2c89751",
39+
chainId: 143,
40+
network: "Monad",
41+
curator: "Edge UltraYield",
4242
poolType: ["stable"],
4343
},
4444
{
45-
name: "Re7 USDC",
46-
address: "0x653e62a9ef0e869f91dc3d627b479592aa02ea75",
47-
chainId: 42793,
48-
network: "Etherlink",
49-
curator: "Re7",
50-
poolType: ["stable"],
45+
name: "Tulipa MON",
46+
address: "0x34752948b0dc28969485df2066ffe86d5dc36689",
47+
chainId: 143,
48+
network: "Monad",
49+
curator: "Tulipa",
50+
poolType: ["mon"],
5151
},
5252
{
5353
name: "Edge UltraYield USDC",
@@ -57,6 +57,22 @@ export const POOLS_LIST: Array<PoolConfigPayload> = [
5757
curator: "Edge UltraYield",
5858
poolType: ["stable"],
5959
},
60+
{
61+
name: "Edge UltraYield USDT0",
62+
address: "0x53e4e9b8766969c43895839cc9c673bb6bc8ac97",
63+
chainId: 9745,
64+
network: "Plasma",
65+
curator: "Edge UltraYield",
66+
poolType: ["stable"],
67+
},
68+
{
69+
name: "Hyperithm USDT0",
70+
address: "0xb74760fd26400030620027dd29d19d74d514700e",
71+
chainId: 9745,
72+
network: "Plasma",
73+
curator: "Hyperithm",
74+
poolType: ["stable"],
75+
},
6076
{
6177
name: "USDC",
6278
address: "0xc155444481854c60e7a29f4150373f479988f32d",
@@ -73,14 +89,6 @@ export const POOLS_LIST: Array<PoolConfigPayload> = [
7389
curator: "Chaos Labs",
7490
poolType: ["eth"],
7591
},
76-
{
77-
name: "Tulipa USDC",
78-
address: "0xf0795c47fa58d00f5f77f4d5c01f31ee891e21b4",
79-
chainId: 1,
80-
network: "Mainnet",
81-
curator: "Tulipa",
82-
poolType: ["stable"],
83-
},
8492
{
8593
name: "Gearbox WETH v3",
8694
address: "0xf00b548f1b69cb5ee559d891e03a196fb5101d4a",
@@ -322,12 +330,11 @@ export const POOLS_LIST: Array<PoolConfigPayload> = [
322330
isLowInterest: true,
323331
},
324332
{
325-
name: "Invariant USDe",
326-
address: "0x4273eea5fff61d8ee0c397cccfcc8cf4b518221f",
327-
chainId: 9745,
328-
network: "Plasma",
329-
curator: "Invariant Group",
333+
name: "Edge UltraYield USDT0",
334+
address: "0x164a35f31e4e0f6c45d500962a6978d2cbd5a16b",
335+
chainId: 143,
336+
network: "Monad",
337+
curator: "Edge UltraYield",
330338
poolType: ["stable"],
331-
isLowInterest: true,
332339
},
333340
];

0 commit comments

Comments
 (0)