|
@@ -598,7 +598,7 @@ function MyLPPageContent() {
|
|
|
title: 'LP Token',
|
|
title: 'LP Token',
|
|
|
dataIndex: 'lpToken',
|
|
dataIndex: 'lpToken',
|
|
|
key: 'lpToken',
|
|
key: 'lpToken',
|
|
|
- render: (text: string, record: RecordInfo) => (
|
|
|
|
|
|
|
+ render: (_text: string, record: RecordInfo) => (
|
|
|
<div className="flex items-center gap-2">
|
|
<div className="flex items-center gap-2">
|
|
|
<span className="inline-flex items-center">
|
|
<span className="inline-flex items-center">
|
|
|
<Image
|
|
<Image
|
|
@@ -616,9 +616,13 @@ function MyLPPageContent() {
|
|
|
style={{ borderRadius: '50%' }}
|
|
style={{ borderRadius: '50%' }}
|
|
|
/>
|
|
/>
|
|
|
</span>
|
|
</span>
|
|
|
- <span className="font-mono text-sm">
|
|
|
|
|
|
|
+ <Typography.Link
|
|
|
|
|
+ href={`https://www.dextools.io/app/solana/pair-explorer/${record.poolAddress}`}
|
|
|
|
|
+ target="_blank"
|
|
|
|
|
+ className="font-mono text-sm"
|
|
|
|
|
+ >
|
|
|
{getPoolInfo(record.poolAddress).lpToken}
|
|
{getPoolInfo(record.poolAddress).lpToken}
|
|
|
- </span>
|
|
|
|
|
|
|
+ </Typography.Link>
|
|
|
</div>
|
|
</div>
|
|
|
),
|
|
),
|
|
|
},
|
|
},
|
|
@@ -808,7 +812,7 @@ function MyLPPageContent() {
|
|
|
),
|
|
),
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
- title: 'PNL Percent',
|
|
|
|
|
|
|
+ title: 'PNL%',
|
|
|
dataIndex: 'pnlUsdPercent',
|
|
dataIndex: 'pnlUsdPercent',
|
|
|
key: 'pnlUsdPercent',
|
|
key: 'pnlUsdPercent',
|
|
|
render: (text: string) => (
|
|
render: (text: string) => (
|
|
@@ -844,7 +848,7 @@ function MyLPPageContent() {
|
|
|
key: 'price',
|
|
key: 'price',
|
|
|
render: (text: string, record: RecordInfo) => (
|
|
render: (text: string, record: RecordInfo) => (
|
|
|
<span className="font-mono text-sm">
|
|
<span className="font-mono text-sm">
|
|
|
- ${Number(getPoolInfo(record.poolAddress).price[0]).toFixed(6)}
|
|
|
|
|
|
|
+ ${Number(getPoolInfo(record.poolAddress).price[0]).toFixed(4)}
|
|
|
</span>
|
|
</span>
|
|
|
),
|
|
),
|
|
|
},
|
|
},
|