Skip to content

Commit 55bca27

Browse files
authored
Merge pull request #251 from Gearbox-protocol/de-snake-patch-5
fix: reshuffle monad pools, add gmon strategy
2 parents 260e396 + e08eb79 commit 55bca27

File tree

4 files changed

+56
-23
lines changed

4 files changed

+56
-23
lines changed

public/tokens/gmon.svg

Lines changed: 27 additions & 0 deletions
Loading

src/core/strategy.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ export type TokenTypeStrategy =
55
| "stable"
66
| "wbnb"
77
| "wxtz"
8-
| "bfBTC";
8+
| "bfBTC"
9+
| "mon";
910

1011
export interface StrategyConfigPayload {
1112
name: string;

src/pools/index.ts

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,6 @@ export const POOLS_LIST: Array<PoolConfigPayload> = [
99
curator: "Edge UltraYield",
1010
poolType: ["stable"],
1111
},
12-
{
13-
name: "Tulipa MON",
14-
address: "0x34752948b0dc28969485df2066ffe86d5dc36689",
15-
chainId: 143,
16-
network: "Monad",
17-
curator: "Tulipa",
18-
poolType: ["mon"],
19-
},
2012
{
2113
name: "Edge UltraYield AUSD",
2214
address: "0xc4173359087CE643235420b7bC610d9B0CF2B82D",
@@ -26,12 +18,12 @@ export const POOLS_LIST: Array<PoolConfigPayload> = [
2618
poolType: ["stable"],
2719
},
2820
{
29-
name: "Edge UltraYield USDT0",
30-
address: "0x164a35f31e4e0f6c45d500962a6978d2cbd5a16b",
21+
name: "Tulipa MON",
22+
address: "0x09ca6b76276ec0682adb896418b99cb7e44a58a0",
3123
chainId: 143,
3224
network: "Monad",
33-
curator: "Edge UltraYield",
34-
poolType: ["stable"],
25+
curator: "Tulipa",
26+
poolType: ["mon"],
3527
},
3628
{
3729
name: "wstETH v3",

src/strategies/index.ts

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,22 @@ export const STRATEGIES_LIST: Array<StrategyConfigPayload> = [
2525
creditManagers: [
2626
"0xf6f044485ac54eecbddfd71586daf351c3ebda88",
2727
"0xeCa8b626B91fbf1191230C5d11D5f5ebC1ADbB04",
28+
"0x3626c30d386f5900a444b77464ae1b78f8281481",
29+
"0xe756919cc2e2b6e844a45dbbacf566b85cb928ab",
2830
],
2931
issuesOnClose: false,
3032
},
33+
{
34+
// apy: https://docs.hydrogenlabs.xyz/magma/developers/integrate-with-magma/historical-apy-indexing
35+
name: "Magma staked MON",
36+
id: "gMON",
37+
tokenOutAddress: "0x8498312A6B3CbD158bf0c93AbdCF29E6e4F55081",
38+
strategyType: ["mon"],
39+
chainId: 143,
40+
network: "Monad",
41+
creditManagers: ["0x2f7019f8c5f258952287fcc00c6582a29f759949"],
42+
issuesOnClose: true,
43+
},
3144
{
3245
// apy: https://api.upshift.finance/v1/tokenized_vaults/0xD793c04B87386A6bb84ee61D98e0065FdE7fdA5E -> historical_apy -> 7 (0.02 = 2%)
3346
name: "Savings AUSD",
@@ -42,16 +55,6 @@ export const STRATEGIES_LIST: Array<StrategyConfigPayload> = [
4255
],
4356
issuesOnClose: true,
4457
},
45-
{
46-
name: "mRe7YIELD",
47-
id: "mRe7YIELD",
48-
tokenOutAddress: "0x733d504435a49FC8C4e9759e756C2846c92f0160",
49-
strategyType: ["stable"],
50-
chainId: 42793,
51-
network: "Etherlink",
52-
creditManagers: ["0xF6f9bB0BE5128BF6d02De00bBa9c34b132c2c8Ee"],
53-
issuesOnClose: true,
54-
},
5558
{
5659
name: "Curve mRe7YIELD/USDC",
5760
id: "mRe7YIELDUSDC",
@@ -481,4 +484,14 @@ export const STRATEGIES_LIST: Array<StrategyConfigPayload> = [
481484
creditManagers: ["0xf95c586E3Ffb41991718f4c8c3ADF660D231650E"],
482485
issuesOnClose: true,
483486
},
487+
{
488+
name: "mRe7YIELD",
489+
id: "mRe7YIELD",
490+
tokenOutAddress: "0x733d504435a49FC8C4e9759e756C2846c92f0160",
491+
strategyType: ["stable"],
492+
chainId: 42793,
493+
network: "Etherlink",
494+
creditManagers: ["0xF6f9bB0BE5128BF6d02De00bBa9c34b132c2c8Ee"],
495+
issuesOnClose: true,
496+
},
484497
];

0 commit comments

Comments
 (0)