degate-cli 1.0.5 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/cli.js +14 -7
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -939,11 +939,16 @@ async function cmdPositions(options) {
939
939
  const quoteSymbol = p.token_b?.symbol || '?';
940
940
  const poolName = `${baseSymbol}/${quoteSymbol}`;
941
941
  const posAddr = (p.position || '').slice(0, 16) + '...';
942
- const range = `${p.tick_lower || '-'} - ${p.tick_upper || '-'}`;
943
- const totalYield = p.total_yields || p.total_yield_usd;
944
- const value = p.position_value ? `$${parseFloat(p.position_value).toFixed(2)}` : '-';
945
- const yield_ = totalYield ? `$${parseFloat(totalYield).toFixed(4)}` : '-';
946
- const apy = p.apy ? `${parseFloat(p.apy).toFixed(2)}%` : '-';
942
+ const lower = p.tick_lower != null ? parseFloat(p.tick_lower).toFixed(4) : '-';
943
+ const upper = p.tick_upper != null ? parseFloat(p.tick_upper).toFixed(4) : '-';
944
+ const range = `${lower} - ${upper}`;
945
+ const yieldUsd = parseFloat(p.total_yield_usd || 0);
946
+ const decimals = p.token_b?.decimals || 6;
947
+ const principal = parseFloat(p.init_principal || 0) / Math.pow(10, decimals);
948
+ const currentValue = principal + yieldUsd;
949
+ const value = currentValue > 0 ? `$${currentValue.toFixed(2)}` : '-';
950
+ const yield_ = p.total_yield_usd ? `$${yieldUsd.toFixed(4)}` : '-';
951
+ const apy = p.yesterday_apy ? `${parseFloat(p.yesterday_apy).toFixed(2)}%` : '-';
947
952
  table.push([i + 1, poolName, posAddr, range, value, yield_, apy, p.status]);
948
953
  });
949
954
 
@@ -999,8 +1004,10 @@ async function cmdWithdraw(options) {
999
1004
  choices: positions.map((p, i) => {
1000
1005
  const base = p.token_a?.symbol || '?';
1001
1006
  const quote = p.token_b?.symbol || '?';
1002
- const value = p.position_value ? `$${parseFloat(p.position_value).toFixed(2)}` : '-';
1003
- const apy = p.apy ? `${parseFloat(p.apy).toFixed(2)}%` : '-';
1007
+ const decimals = p.token_b?.decimals || 6;
1008
+ const currentValue = parseFloat(p.init_principal || 0) / Math.pow(10, decimals) + parseFloat(p.total_yield_usd || 0);
1009
+ const value = currentValue > 0 ? `$${currentValue.toFixed(2)}` : '-';
1010
+ const apy = p.yesterday_apy ? `${parseFloat(p.yesterday_apy).toFixed(2)}%` : '-';
1004
1011
  return {
1005
1012
  name: `[${i + 1}] ${base}/${quote} ${value} APY ${apy} ${p.position}`,
1006
1013
  value: p.position,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "degate-cli",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "DeGate Turbo Range CLI - deposit/withdraw LP positions across Solana & EVM chains",
5
5
  "main": "cli.js",
6
6
  "bin": {