Skip to content

Commit 4c4a667

Browse files
authored
add mSOL/UXD pool (#131)
1 parent 7a762e4 commit 4c4a667

File tree

1 file changed

+33
-1
lines changed

1 file changed

+33
-1
lines changed

tools/sdk/lifinity/poolList.ts

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ export type PoolNames =
3737
| 'USDT-USDC'
3838
| 'UST-USDC'
3939
| 'SOL-UXD'
40-
| 'stSOL-UXD';
40+
| 'stSOL-UXD'
41+
| 'mSOL-UXD';
4142

4243
// Translation
4344
// pool coin = token A
@@ -343,4 +344,35 @@ export const PoolList: { [poolLabel in PoolNames]: IPoolInfo } = {
343344
decimals: 6,
344345
},
345346
},
347+
348+
'mSOL-UXD': {
349+
amm: new PublicKey('3UpSTFAuRgCzhnjmkm6rPvzRNLb8PXSAR5h7Qdi8kJkd'),
350+
feeAccount: new PublicKey('DyFsGNHaBZew2HNVqu6nDxoJVrT2MM4rPKVGRqEBLLKZ'),
351+
configAccount: new PublicKey(
352+
'5mVj5qg99sYaCMehDQYUYwKVDCWEeKv7WL4PoigWCw8y',
353+
),
354+
pythAccount: new PublicKey('H6ARHf6YXhGYeQfUzQNGk6rDNnLBQKrenN712K4AQJEG'),
355+
pythPcAccount: new PublicKey(
356+
'EqqEnFJPMhAVftpsFzbBa4ByMMJgXBNiRkJC89ZK6UFL',
357+
),
358+
pythBaseDecimal: 11,
359+
lpToken: {
360+
mint: new PublicKey('GDSANx8mvoeBgrx8hMoY8hGauCods6ARva2Vwtx6UjTR'),
361+
decimals: 9,
362+
},
363+
tokenA: {
364+
tokenAccount: new PublicKey(
365+
'2u4darckm8R24hZdYQEWDQwMRuQCh1x4zDtEZr74Kiue',
366+
),
367+
mint: new PublicKey('mSoLzYCxHdYgdzU16g5QSh3i5K3z3KZK7ytfqcJm7So'),
368+
decimals: 9,
369+
},
370+
tokenB: {
371+
tokenAccount: new PublicKey(
372+
'Ej6anT2VVx5MPSBdanfUSVELnssGJqfGSeitppMYh74R',
373+
),
374+
mint: new PublicKey('7kbnvuGBxxj8AG9qp8Scn56muWGaRaFqxg1FsRp3PaFT'),
375+
decimals: 6,
376+
},
377+
},
346378
};

0 commit comments

Comments
 (0)