@chainstream-io/sdk 0.2.6 → 0.2.8
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.
- package/dist/{chainstream-BD-x5_ck.d.cts → chainstream-KjjsTvPO.d.cts} +1053 -144
- package/dist/{chainstream-BD-x5_ck.d.ts → chainstream-KjjsTvPO.d.ts} +1053 -144
- package/dist/chainstream.cjs +180 -22
- package/dist/chainstream.cjs.map +1 -1
- package/dist/chainstream.d.cts +1 -1
- package/dist/chainstream.d.ts +1 -1
- package/dist/chainstream.mjs +180 -22
- package/dist/chainstream.mjs.map +1 -1
- package/dist/index.cjs +385 -28
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +343 -26
- package/dist/index.mjs.map +1 -1
- package/dist/stream/index.cjs +74 -14
- package/dist/stream/index.cjs.map +1 -1
- package/dist/stream/index.d.cts +1 -1
- package/dist/stream/index.d.ts +1 -1
- package/dist/stream/index.mjs +74 -14
- package/dist/stream/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -605,6 +605,38 @@ interface TopTradersPage {
|
|
|
605
605
|
/** DTO.TRADE.TOP_TRADERS.PAGE.DATA */
|
|
606
606
|
data: TopTradersDTO[];
|
|
607
607
|
}
|
|
608
|
+
type TraderPnlResolution = (typeof TraderPnlResolution)[keyof typeof TraderPnlResolution];
|
|
609
|
+
declare const TraderPnlResolution: {
|
|
610
|
+
readonly "1d": "1d";
|
|
611
|
+
readonly "7d": "7d";
|
|
612
|
+
readonly "30d": "30d";
|
|
613
|
+
};
|
|
614
|
+
interface TraderGainersLosersItemDTO {
|
|
615
|
+
/** GLOBAL.CHAIN.DESCRIPTION */
|
|
616
|
+
chain: ChainSymbol;
|
|
617
|
+
/** DTO.TRADER.GAINERS_LOSERS.ITEM.ADDRESS */
|
|
618
|
+
address: string;
|
|
619
|
+
/** DTO.TRADER.GAINERS_LOSERS.ITEM.PNL */
|
|
620
|
+
pnl: string;
|
|
621
|
+
/** DTO.TRADER.GAINERS_LOSERS.ITEM.TRADE_COUNT */
|
|
622
|
+
tradeCount: string;
|
|
623
|
+
/** DTO.TRADER.GAINERS_LOSERS.ITEM.VOLUME */
|
|
624
|
+
volume: string;
|
|
625
|
+
}
|
|
626
|
+
interface TraderGainersLosersPage {
|
|
627
|
+
/** DTO.PAGE.HAS_NEXT */
|
|
628
|
+
hasNext?: boolean;
|
|
629
|
+
/** DTO.PAGE.HAS_PREV */
|
|
630
|
+
hasPrev?: boolean;
|
|
631
|
+
/** DTO.PAGE.START_CURSOR */
|
|
632
|
+
startCursor?: string;
|
|
633
|
+
/** DTO.PAGE.END_CURSOR */
|
|
634
|
+
endCursor?: string;
|
|
635
|
+
/** DTO.PAGE.TOTAL */
|
|
636
|
+
total?: number;
|
|
637
|
+
/** DTO.TRADE.GAINERS_LOSERS.PAGE.DATA */
|
|
638
|
+
data: TraderGainersLosersItemDTO[];
|
|
639
|
+
}
|
|
608
640
|
interface TokenCreatorsDTO {
|
|
609
641
|
/** DTO.TOKEN.CREATORS.ADDRESS */
|
|
610
642
|
address?: string;
|
|
@@ -945,7 +977,7 @@ interface DexPoolTokenLiquidity {
|
|
|
945
977
|
/** DTO.DEXPOOL.TOKEN_ADDRESS */
|
|
946
978
|
tokenAddress: string;
|
|
947
979
|
/** DTO.DEXPOOL.TOKEN_DECIMALS */
|
|
948
|
-
|
|
980
|
+
decimals: number;
|
|
949
981
|
/** DTO.DEXPOOL.VAULT_AMOUNT */
|
|
950
982
|
vaultAmount: string;
|
|
951
983
|
/** DTO.DEXPOOL.AMOUNT_IN_USD */
|
|
@@ -1325,12 +1357,25 @@ declare const Resolution: {
|
|
|
1325
1357
|
readonly "15s": "15s";
|
|
1326
1358
|
readonly "30s": "30s";
|
|
1327
1359
|
readonly "1m": "1m";
|
|
1360
|
+
readonly "3m": "3m";
|
|
1328
1361
|
readonly "5m": "5m";
|
|
1329
1362
|
readonly "15m": "15m";
|
|
1363
|
+
readonly "30m": "30m";
|
|
1330
1364
|
readonly "1h": "1h";
|
|
1365
|
+
readonly "2h": "2h";
|
|
1331
1366
|
readonly "4h": "4h";
|
|
1367
|
+
readonly "6h": "6h";
|
|
1368
|
+
readonly "8h": "8h";
|
|
1332
1369
|
readonly "12h": "12h";
|
|
1333
1370
|
readonly "1d": "1d";
|
|
1371
|
+
readonly "3d": "3d";
|
|
1372
|
+
readonly "1w": "1w";
|
|
1373
|
+
readonly "1M": "1M";
|
|
1374
|
+
};
|
|
1375
|
+
type PriceType = (typeof PriceType)[keyof typeof PriceType];
|
|
1376
|
+
declare const PriceType: {
|
|
1377
|
+
readonly usd: "usd";
|
|
1378
|
+
readonly native: "native";
|
|
1334
1379
|
};
|
|
1335
1380
|
interface Candle {
|
|
1336
1381
|
/** DTO.CANDLE.OPEN */
|
|
@@ -1343,10 +1388,14 @@ interface Candle {
|
|
|
1343
1388
|
low: string;
|
|
1344
1389
|
/** DTO.CANDLE.VOLUME */
|
|
1345
1390
|
volume: string;
|
|
1391
|
+
/** DTO.CANDLE.TRADES */
|
|
1392
|
+
trades: number;
|
|
1346
1393
|
/** DTO.CANDLE.RESOLUTION */
|
|
1347
1394
|
resolution: Resolution;
|
|
1348
1395
|
/** DTO.CANDLE.TIME */
|
|
1349
1396
|
time: number;
|
|
1397
|
+
/** DTO.CANDLE.UPDATED_AT */
|
|
1398
|
+
updatedAt: number;
|
|
1350
1399
|
}
|
|
1351
1400
|
interface TokenPriceDTO {
|
|
1352
1401
|
/** DTO.TOKEN.PRICE.TOKEN_ADDRESS */
|
|
@@ -1446,6 +1495,7 @@ declare const TokenTraderTag: {
|
|
|
1446
1495
|
readonly insider: "insider";
|
|
1447
1496
|
readonly kol: "kol";
|
|
1448
1497
|
readonly bluechip: "bluechip";
|
|
1498
|
+
readonly smart: "smart";
|
|
1449
1499
|
};
|
|
1450
1500
|
/**
|
|
1451
1501
|
* DTO.TOKEN_TRADER.ONCHAIN_CREATED_AT
|
|
@@ -1515,11 +1565,73 @@ interface TokenLiquiditySnapshotPage {
|
|
|
1515
1565
|
/** DTO.PAGE.HAS_PREV */
|
|
1516
1566
|
hasPrev: boolean;
|
|
1517
1567
|
}
|
|
1568
|
+
/**
|
|
1569
|
+
* DTO.TOKEN.TRANSFER.FLOW
|
|
1570
|
+
*/
|
|
1571
|
+
type TokenTransferItemDTOFlow = (typeof TokenTransferItemDTOFlow)[keyof typeof TokenTransferItemDTOFlow];
|
|
1572
|
+
declare const TokenTransferItemDTOFlow: {
|
|
1573
|
+
readonly in: "in";
|
|
1574
|
+
readonly out: "out";
|
|
1575
|
+
};
|
|
1576
|
+
interface TokenTransferItemDTO {
|
|
1577
|
+
/** DTO.TOKEN.TRANSFER.TX_HASH */
|
|
1578
|
+
txHash: string;
|
|
1579
|
+
/** DTO.TOKEN.TRANSFER.BLOCK_NUMBER */
|
|
1580
|
+
blockNumber: number;
|
|
1581
|
+
/** DTO.TOKEN.TRANSFER.BLOCK_TIME */
|
|
1582
|
+
blockTime: number;
|
|
1583
|
+
/** DTO.TOKEN.TRANSFER.TOKEN_ADDRESS */
|
|
1584
|
+
tokenAddress: string;
|
|
1585
|
+
/** DTO.TOKEN.TRANSFER.FROM_ADDRESS */
|
|
1586
|
+
fromAddress: string;
|
|
1587
|
+
/** DTO.TOKEN.TRANSFER.TO_ADDRESS */
|
|
1588
|
+
toAddress: string;
|
|
1589
|
+
/** DTO.TOKEN.TRANSFER.FROM_TOKEN_ACCOUNT */
|
|
1590
|
+
fromTokenAccount: string;
|
|
1591
|
+
/** DTO.TOKEN.TRANSFER.TO_TOKEN_ACCOUNT */
|
|
1592
|
+
toTokenAccount: string;
|
|
1593
|
+
/** DTO.TOKEN.TRANSFER.AMOUNT */
|
|
1594
|
+
amount: string;
|
|
1595
|
+
/** DTO.TOKEN.TRANSFER.PRICE */
|
|
1596
|
+
price: string;
|
|
1597
|
+
/** DTO.TOKEN.TRANSFER.VALUE */
|
|
1598
|
+
value: string;
|
|
1599
|
+
/** DTO.TOKEN.TRANSFER.FLOW */
|
|
1600
|
+
flow: TokenTransferItemDTOFlow;
|
|
1601
|
+
/** DTO.TOKEN.TRANSFER.ACTION */
|
|
1602
|
+
action: string;
|
|
1603
|
+
/** DTO.TOKEN.TRANSFER.SYMBOL */
|
|
1604
|
+
symbol: string;
|
|
1605
|
+
/** DTO.TOKEN.TRANSFER.NAME */
|
|
1606
|
+
name: string;
|
|
1607
|
+
/** DTO.TOKEN.TRANSFER.DECIMALS */
|
|
1608
|
+
decimals: number;
|
|
1609
|
+
/** DTO.TOKEN.TRANSFER.LOGO_URI */
|
|
1610
|
+
logoUri?: string;
|
|
1611
|
+
}
|
|
1612
|
+
interface TokenTransferPage {
|
|
1613
|
+
/** DTO.PAGE.HAS_NEXT */
|
|
1614
|
+
hasNext?: boolean;
|
|
1615
|
+
/** DTO.PAGE.HAS_PREV */
|
|
1616
|
+
hasPrev?: boolean;
|
|
1617
|
+
/** DTO.PAGE.START_CURSOR */
|
|
1618
|
+
startCursor?: string;
|
|
1619
|
+
/** DTO.PAGE.END_CURSOR */
|
|
1620
|
+
endCursor?: string;
|
|
1621
|
+
/** DTO.PAGE.TOTAL */
|
|
1622
|
+
total?: number;
|
|
1623
|
+
/** DTO.PAGE.DATA */
|
|
1624
|
+
data: TokenTransferItemDTO[];
|
|
1625
|
+
}
|
|
1626
|
+
interface TokenTransferTotalDTO {
|
|
1627
|
+
/** DTO.TOKEN.TRANSFER.TOTAL */
|
|
1628
|
+
total: number;
|
|
1629
|
+
}
|
|
1518
1630
|
interface DexPoolTokenSnapshotDTO {
|
|
1519
1631
|
/** DTO.DEXPOOL.TOKEN_ADDRESS */
|
|
1520
1632
|
tokenAddress: string;
|
|
1521
1633
|
/** DTO.DEXPOOL.TOKEN_DECIMALS */
|
|
1522
|
-
|
|
1634
|
+
decimals: number;
|
|
1523
1635
|
/** DTO.DEXPOOL.VAULT_AMOUNT */
|
|
1524
1636
|
vaultAmount: string;
|
|
1525
1637
|
/** DTO.DEXPOOL.AMOUNT_IN_USD */
|
|
@@ -1563,113 +1675,129 @@ interface DexPoolSnapshotPage {
|
|
|
1563
1675
|
/** DTO.PAGE.HAS_PREV */
|
|
1564
1676
|
hasPrev: boolean;
|
|
1565
1677
|
}
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
/** DTO.WALLET.
|
|
1574
|
-
|
|
1575
|
-
/** DTO.WALLET.
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
/** DTO.WALLET.
|
|
1580
|
-
|
|
1581
|
-
/** DTO.WALLET.
|
|
1582
|
-
lastTime: number;
|
|
1583
|
-
/** DTO.WALLET.PNL.BALANCE */
|
|
1584
|
-
balance: string;
|
|
1585
|
-
/** DTO.WALLET.PNL.BUY_AMOUNT */
|
|
1586
|
-
buyAmount: string;
|
|
1587
|
-
/** DTO.WALLET.PNL.BUY_AMOUNT_USD */
|
|
1588
|
-
buyAmountInUsd: string;
|
|
1589
|
-
/** DTO.WALLET.PNL.BUYS */
|
|
1678
|
+
/**
|
|
1679
|
+
* DTO.WALLET.NET_WORTH_SUMMARY.WALLETS
|
|
1680
|
+
*/
|
|
1681
|
+
type WalletNetWorthSummaryDTOWallets = {
|
|
1682
|
+
[key: string]: unknown;
|
|
1683
|
+
};
|
|
1684
|
+
interface WalletNetWorthSummaryDTO {
|
|
1685
|
+
/** DTO.WALLET.NET_WORTH_SUMMARY.CURRENT_TIMESTAMP */
|
|
1686
|
+
currentTimestamp: string;
|
|
1687
|
+
/** DTO.WALLET.NET_WORTH_SUMMARY.WALLETS */
|
|
1688
|
+
wallets: WalletNetWorthSummaryDTOWallets;
|
|
1689
|
+
}
|
|
1690
|
+
interface PnlDetailSummaryDTO {
|
|
1691
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY.TOKENS */
|
|
1692
|
+
tokens: string;
|
|
1693
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY.BUYS */
|
|
1590
1694
|
buys: string;
|
|
1591
|
-
/** DTO.WALLET.
|
|
1592
|
-
sellAmount: string;
|
|
1593
|
-
/** DTO.WALLET.PNL.SELL_AMOUNT_USD */
|
|
1594
|
-
sellAmountInUsd: string;
|
|
1595
|
-
/** DTO.WALLET.PNL.SELLS */
|
|
1695
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY.SELLS */
|
|
1596
1696
|
sells: string;
|
|
1597
|
-
/** DTO.WALLET.
|
|
1598
|
-
|
|
1599
|
-
/** DTO.WALLET.
|
|
1600
|
-
|
|
1601
|
-
/** DTO.WALLET.
|
|
1602
|
-
|
|
1603
|
-
/** DTO.WALLET.
|
|
1604
|
-
|
|
1605
|
-
/** DTO.WALLET.
|
|
1697
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY.TOTAL_TRADES */
|
|
1698
|
+
totalTrades: string;
|
|
1699
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY.WINS */
|
|
1700
|
+
wins: string;
|
|
1701
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY.LOSSES */
|
|
1702
|
+
losses: string;
|
|
1703
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY.WIN_RATE */
|
|
1704
|
+
winRate: string;
|
|
1705
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY.BUY_AMOUNT_IN_USD */
|
|
1706
|
+
buyAmountInUsd: string;
|
|
1707
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY.SELL_AMOUNT_IN_USD */
|
|
1708
|
+
sellAmountInUsd: string;
|
|
1709
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY.TOTAL_COST_IN_USD */
|
|
1710
|
+
totalCostInUsd: string;
|
|
1711
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY.CURRENT_VALUE */
|
|
1712
|
+
currentValue: string;
|
|
1713
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY.REALIZED_PROFIT_IN_USD */
|
|
1606
1714
|
realizedProfitInUsd: string;
|
|
1607
|
-
/** DTO.WALLET.
|
|
1715
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY.REALIZED_PROFIT_RATIO */
|
|
1608
1716
|
realizedProfitRatio: string;
|
|
1609
|
-
/** DTO.WALLET.
|
|
1610
|
-
|
|
1611
|
-
/** DTO.WALLET.
|
|
1612
|
-
|
|
1717
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY.UNREALIZED_PROFIT_IN_USD */
|
|
1718
|
+
unrealizedProfitInUsd: string;
|
|
1719
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY.TOTAL_PROFIT_IN_USD */
|
|
1720
|
+
totalProfitInUsd: string;
|
|
1721
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY.AVG_PROFIT_PER_TRADE_IN_USD */
|
|
1722
|
+
avgProfitPerTradeInUsd: string;
|
|
1613
1723
|
}
|
|
1614
|
-
interface
|
|
1615
|
-
/** DTO.WALLET.
|
|
1724
|
+
interface PnlDetailItemDTO {
|
|
1725
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.TOKEN_ADDRESS */
|
|
1616
1726
|
tokenAddress: string;
|
|
1617
|
-
/** DTO.WALLET.
|
|
1618
|
-
amount: string;
|
|
1619
|
-
/** DTO.WALLET.BALANCE.AMOUNT_IN_USD */
|
|
1620
|
-
valueInUsd: string;
|
|
1621
|
-
/** DTO.WALLET.BALANCE.TOKEN_NAME */
|
|
1622
|
-
name: string;
|
|
1623
|
-
/** DTO.WALLET.BALANCE.TOKEN_SYMBOL */
|
|
1727
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.SYMBOL */
|
|
1624
1728
|
symbol: string;
|
|
1625
|
-
/** DTO.WALLET.
|
|
1626
|
-
|
|
1627
|
-
/** DTO.WALLET.
|
|
1628
|
-
|
|
1629
|
-
/** DTO.WALLET.
|
|
1729
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.NAME */
|
|
1730
|
+
name: string;
|
|
1731
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.DECIMALS */
|
|
1732
|
+
decimals: number;
|
|
1733
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.LOGO_URI */
|
|
1734
|
+
logoUri?: string;
|
|
1735
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.WALLET_ADDRESS */
|
|
1736
|
+
walletAddress: string;
|
|
1737
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.BALANCE */
|
|
1738
|
+
balance: string;
|
|
1739
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.PRICE_IN_USD */
|
|
1630
1740
|
priceInUsd: string;
|
|
1631
|
-
/** DTO.WALLET.
|
|
1632
|
-
|
|
1633
|
-
/** DTO.WALLET.
|
|
1634
|
-
unrealizedProfitInUsd: string;
|
|
1635
|
-
/** DTO.WALLET.BALANCE.UNREALIZED_PROFIT_RATIO */
|
|
1636
|
-
unrealizedProfitRatio: string;
|
|
1637
|
-
/** DTO.WALLET.BALANCE.OPEN_TIME */
|
|
1638
|
-
openTime: number;
|
|
1639
|
-
/** DTO.WALLET.BALANCE.CLOSE_TIME */
|
|
1640
|
-
closeTime: number;
|
|
1641
|
-
/** DTO.WALLET.BALANCE.BUYS */
|
|
1741
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.CURRENT_VALUE */
|
|
1742
|
+
currentValue: string;
|
|
1743
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.BUYS */
|
|
1642
1744
|
buys: string;
|
|
1643
|
-
/** DTO.WALLET.
|
|
1644
|
-
buyAmount: string;
|
|
1645
|
-
/** DTO.WALLET.BALANCE.BUY_AMOUNT_USD */
|
|
1646
|
-
buyAmountInUsd: string;
|
|
1647
|
-
/** DTO.WALLET.BALANCE.SELLS */
|
|
1745
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.SELLS */
|
|
1648
1746
|
sells: string;
|
|
1649
|
-
/** DTO.WALLET.
|
|
1747
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.TOTAL_TRADES */
|
|
1748
|
+
totalTrades: string;
|
|
1749
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.BUY_AMOUNT */
|
|
1750
|
+
buyAmount: string;
|
|
1751
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.SELL_AMOUNT */
|
|
1650
1752
|
sellAmount: string;
|
|
1651
|
-
/** DTO.WALLET.
|
|
1753
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.BUY_AMOUNT_IN_USD */
|
|
1754
|
+
buyAmountInUsd: string;
|
|
1755
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.SELL_AMOUNT_IN_USD */
|
|
1652
1756
|
sellAmountInUsd: string;
|
|
1653
|
-
/** DTO.WALLET.
|
|
1654
|
-
|
|
1655
|
-
/** DTO.WALLET.
|
|
1656
|
-
|
|
1657
|
-
/** DTO.WALLET.
|
|
1757
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.AVG_BUY_PRICE_IN_USD */
|
|
1758
|
+
avgBuyPriceInUsd: string;
|
|
1759
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.AVG_SELL_PRICE_IN_USD */
|
|
1760
|
+
avgSellPriceInUsd: string;
|
|
1761
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.REALIZED_PROFIT_IN_USD */
|
|
1658
1762
|
realizedProfitInUsd: string;
|
|
1659
|
-
/** DTO.WALLET.
|
|
1763
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.REALIZED_PROFIT_RATIO */
|
|
1660
1764
|
realizedProfitRatio: string;
|
|
1661
|
-
/** DTO.WALLET.
|
|
1662
|
-
|
|
1663
|
-
/** DTO.WALLET.
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
interface WalletBalancesDTO {
|
|
1667
|
-
/** DTO.WALLET.BALANCES.TOTAL_BALANCES_IN_USD */
|
|
1668
|
-
totalBalancesInUsd: string;
|
|
1669
|
-
/** DTO.WALLET.BALANCES.TOTAL_PROFIT_IN_USD */
|
|
1765
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.UNREALIZED_PROFIT_IN_USD */
|
|
1766
|
+
unrealizedProfitInUsd: string;
|
|
1767
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.UNREALIZED_PROFIT_RATIO */
|
|
1768
|
+
unrealizedProfitRatio: string;
|
|
1769
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.TOTAL_PROFIT_IN_USD */
|
|
1670
1770
|
totalProfitInUsd: string;
|
|
1671
|
-
/** DTO.WALLET.
|
|
1672
|
-
|
|
1771
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.TOTAL_PROFIT_RATIO */
|
|
1772
|
+
totalProfitRatio: string;
|
|
1773
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.AVG_PROFIT_PER_TRADE_IN_USD */
|
|
1774
|
+
avgProfitPerTradeInUsd: string;
|
|
1775
|
+
}
|
|
1776
|
+
interface PnlDetailsPage {
|
|
1777
|
+
/** DTO.PAGE.HAS_NEXT */
|
|
1778
|
+
hasNext?: boolean;
|
|
1779
|
+
/** DTO.PAGE.HAS_PREV */
|
|
1780
|
+
hasPrev?: boolean;
|
|
1781
|
+
/** DTO.PAGE.START_CURSOR */
|
|
1782
|
+
startCursor?: string;
|
|
1783
|
+
/** DTO.PAGE.END_CURSOR */
|
|
1784
|
+
endCursor?: string;
|
|
1785
|
+
/** DTO.PAGE.TOTAL */
|
|
1786
|
+
total?: number;
|
|
1787
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY */
|
|
1788
|
+
summary: PnlDetailSummaryDTO;
|
|
1789
|
+
/** DTO.PAGE.DATA */
|
|
1790
|
+
data: PnlDetailItemDTO[];
|
|
1791
|
+
}
|
|
1792
|
+
/**
|
|
1793
|
+
* DTO.WALLET.FIRST_TX.TX_HASH
|
|
1794
|
+
*/
|
|
1795
|
+
type WalletFirstTxDTOWallets = {
|
|
1796
|
+
[key: string]: unknown;
|
|
1797
|
+
};
|
|
1798
|
+
interface WalletFirstTxDTO {
|
|
1799
|
+
/** DTO.WALLET.FIRST_TX.TX_HASH */
|
|
1800
|
+
wallets: WalletFirstTxDTOWallets;
|
|
1673
1801
|
}
|
|
1674
1802
|
interface CalculatePnlInput {
|
|
1675
1803
|
/** DTO.WALLET.CALCULATE_PNL.INPUT.TOKEN_ADDRESSES */
|
|
@@ -1679,6 +1807,244 @@ interface BooleanResultDTO {
|
|
|
1679
1807
|
/** DTO.BOOLEAN_RESULT.SUCCESS */
|
|
1680
1808
|
success: boolean;
|
|
1681
1809
|
}
|
|
1810
|
+
interface WalletNetWorthItemDTO {
|
|
1811
|
+
/** DTO.WALLET.NET_WORTH.ITEM.TOKEN_ADDRESS */
|
|
1812
|
+
tokenAddress: string;
|
|
1813
|
+
/** DTO.WALLET.NET_WORTH.ITEM.DECIMALS */
|
|
1814
|
+
decimals: number;
|
|
1815
|
+
/** DTO.WALLET.NET_WORTH.ITEM.PRICE_IN_USD */
|
|
1816
|
+
priceInUsd: string;
|
|
1817
|
+
/** DTO.WALLET.NET_WORTH.ITEM.PRICE_IN_NATIVE */
|
|
1818
|
+
priceInNative: string;
|
|
1819
|
+
/** DTO.WALLET.NET_WORTH.ITEM.AMOUNT */
|
|
1820
|
+
amount: string;
|
|
1821
|
+
/** DTO.WALLET.NET_WORTH.ITEM.VALUE_IN_USD */
|
|
1822
|
+
valueInUsd: string;
|
|
1823
|
+
/** DTO.WALLET.NET_WORTH.ITEM.VALUE_IN_NATIVE */
|
|
1824
|
+
valueInNative: string;
|
|
1825
|
+
/** GLOBAL.CHAIN.DESCRIPTION */
|
|
1826
|
+
chain: string;
|
|
1827
|
+
/** DTO.WALLET.NET_WORTH.ITEM.NAME */
|
|
1828
|
+
name: string;
|
|
1829
|
+
/** DTO.WALLET.NET_WORTH.ITEM.SYMBOL */
|
|
1830
|
+
symbol: string;
|
|
1831
|
+
/** DTO.WALLET.NET_WORTH.ITEM.LOGO_URI */
|
|
1832
|
+
logoUri?: string;
|
|
1833
|
+
}
|
|
1834
|
+
interface WalletNetWorthPage {
|
|
1835
|
+
/** DTO.PAGE.HAS_NEXT */
|
|
1836
|
+
hasNext?: boolean;
|
|
1837
|
+
/** DTO.PAGE.HAS_PREV */
|
|
1838
|
+
hasPrev?: boolean;
|
|
1839
|
+
/** DTO.PAGE.START_CURSOR */
|
|
1840
|
+
startCursor?: string;
|
|
1841
|
+
/** DTO.PAGE.END_CURSOR */
|
|
1842
|
+
endCursor?: string;
|
|
1843
|
+
/** DTO.PAGE.TOTAL */
|
|
1844
|
+
total?: number;
|
|
1845
|
+
/** DTO.WALLET.NET_WORTH.WALLET_ADDRESS */
|
|
1846
|
+
walletAddress: string;
|
|
1847
|
+
/** DTO.WALLET.NET_WORTH.TOTAL_VALUE_IN_USD */
|
|
1848
|
+
totalValueInUsd: string;
|
|
1849
|
+
/** DTO.WALLET.NET_WORTH.TOTAL_VALUE_IN_NATIVE */
|
|
1850
|
+
totalValueInNative: string;
|
|
1851
|
+
/** DTO.WALLET.NET_WORTH.CURRENT_TIMESTAMP */
|
|
1852
|
+
currentTimestamp: string;
|
|
1853
|
+
/** DTO.PAGE.DATA */
|
|
1854
|
+
data: WalletNetWorthItemDTO[];
|
|
1855
|
+
}
|
|
1856
|
+
interface TokensBalancePage {
|
|
1857
|
+
/** DTO.PAGE.HAS_NEXT */
|
|
1858
|
+
hasNext?: boolean;
|
|
1859
|
+
/** DTO.PAGE.HAS_PREV */
|
|
1860
|
+
hasPrev?: boolean;
|
|
1861
|
+
/** DTO.PAGE.START_CURSOR */
|
|
1862
|
+
startCursor?: string;
|
|
1863
|
+
/** DTO.PAGE.END_CURSOR */
|
|
1864
|
+
endCursor?: string;
|
|
1865
|
+
/** DTO.PAGE.TOTAL */
|
|
1866
|
+
total?: number;
|
|
1867
|
+
/** DTO.PAGE.DATA */
|
|
1868
|
+
data: WalletNetWorthItemDTO[];
|
|
1869
|
+
}
|
|
1870
|
+
interface WalletNetWorthHistoryItemDTO {
|
|
1871
|
+
/** DTO.WALLET.NET_WORTH_CHART.ITEM.TIMESTAMP */
|
|
1872
|
+
timestamp: string;
|
|
1873
|
+
/** DTO.WALLET.NET_WORTH_CHART.ITEM.NET_WORTH */
|
|
1874
|
+
netWorth: string;
|
|
1875
|
+
/** DTO.WALLET.NET_WORTH_CHART.ITEM.NET_WORTH_CHANGE */
|
|
1876
|
+
netWorthChange: string;
|
|
1877
|
+
/** DTO.WALLET.NET_WORTH_CHART.ITEM.NET_WORTH_CHANGE_PERCENT */
|
|
1878
|
+
netWorthChangePercent: string;
|
|
1879
|
+
}
|
|
1880
|
+
interface WalletNetWorthChartDTO {
|
|
1881
|
+
/** DTO.WALLET.NET_WORTH_CHART.WALLET_ADDRESS */
|
|
1882
|
+
walletAddress: string;
|
|
1883
|
+
/** DTO.WALLET.NET_WORTH_CHART.CURRENT_TIMESTAMP */
|
|
1884
|
+
currentTimestamp: string;
|
|
1885
|
+
/** DTO.WALLET.NET_WORTH_CHART.PAST_TIMESTAMP */
|
|
1886
|
+
pastTimestamp: string;
|
|
1887
|
+
/** DTO.WALLET.NET_WORTH_CHART.HISTORY */
|
|
1888
|
+
history: WalletNetWorthHistoryItemDTO[];
|
|
1889
|
+
}
|
|
1890
|
+
interface WalletNetWorthDetailsPage {
|
|
1891
|
+
/** DTO.PAGE.HAS_NEXT */
|
|
1892
|
+
hasNext?: boolean;
|
|
1893
|
+
/** DTO.PAGE.HAS_PREV */
|
|
1894
|
+
hasPrev?: boolean;
|
|
1895
|
+
/** DTO.PAGE.START_CURSOR */
|
|
1896
|
+
startCursor?: string;
|
|
1897
|
+
/** DTO.PAGE.END_CURSOR */
|
|
1898
|
+
endCursor?: string;
|
|
1899
|
+
/** DTO.PAGE.TOTAL */
|
|
1900
|
+
total?: number;
|
|
1901
|
+
/** DTO.WALLET.NET_WORTH_DETAILS.WALLET_ADDRESS */
|
|
1902
|
+
walletAddress: string;
|
|
1903
|
+
/** DTO.WALLET.NET_WORTH_DETAILS.NET_WORTH */
|
|
1904
|
+
netWorth: string;
|
|
1905
|
+
/** DTO.WALLET.NET_WORTH_DETAILS.REQUESTED_TIMESTAMP */
|
|
1906
|
+
requestedTimestamp: string;
|
|
1907
|
+
/** DTO.WALLET.NET_WORTH_DETAILS.RESOLVED_TIMESTAMP */
|
|
1908
|
+
resolvedTimestamp: string;
|
|
1909
|
+
/** DTO.PAGE.DATA */
|
|
1910
|
+
data: WalletNetWorthItemDTO[];
|
|
1911
|
+
}
|
|
1912
|
+
type PnlResolution = (typeof PnlResolution)[keyof typeof PnlResolution];
|
|
1913
|
+
declare const PnlResolution: {
|
|
1914
|
+
readonly "1d": "1d";
|
|
1915
|
+
readonly "7d": "7d";
|
|
1916
|
+
readonly "30d": "30d";
|
|
1917
|
+
readonly all: "all";
|
|
1918
|
+
};
|
|
1919
|
+
/**
|
|
1920
|
+
* DTO.WALLET.PNL_SUMMARY.RESOLUTION
|
|
1921
|
+
*/
|
|
1922
|
+
type WalletPnlSummaryDTOResolution = (typeof WalletPnlSummaryDTOResolution)[keyof typeof WalletPnlSummaryDTOResolution];
|
|
1923
|
+
declare const WalletPnlSummaryDTOResolution: {
|
|
1924
|
+
readonly "1d": "1d";
|
|
1925
|
+
readonly "7d": "7d";
|
|
1926
|
+
readonly "30d": "30d";
|
|
1927
|
+
readonly all: "all";
|
|
1928
|
+
};
|
|
1929
|
+
interface WalletPnlSummaryDTO {
|
|
1930
|
+
/** DTO.WALLET.PNL_SUMMARY.WALLET_ADDRESS */
|
|
1931
|
+
walletAddress: string;
|
|
1932
|
+
/** DTO.WALLET.PNL_SUMMARY.RESOLUTION */
|
|
1933
|
+
resolution: WalletPnlSummaryDTOResolution;
|
|
1934
|
+
/** DTO.WALLET.PNL_SUMMARY.TOKENS */
|
|
1935
|
+
tokens: string;
|
|
1936
|
+
/** DTO.WALLET.PNL_SUMMARY.BUYS */
|
|
1937
|
+
buys: string;
|
|
1938
|
+
/** DTO.WALLET.PNL_SUMMARY.SELLS */
|
|
1939
|
+
sells: string;
|
|
1940
|
+
/** DTO.WALLET.PNL_SUMMARY.TOTAL_TRADES */
|
|
1941
|
+
totalTrades: string;
|
|
1942
|
+
/** DTO.WALLET.PNL_SUMMARY.WINS */
|
|
1943
|
+
wins: string;
|
|
1944
|
+
/** DTO.WALLET.PNL_SUMMARY.LOSSES */
|
|
1945
|
+
losses: string;
|
|
1946
|
+
/** DTO.WALLET.PNL_SUMMARY.WIN_RATE */
|
|
1947
|
+
winRate: string;
|
|
1948
|
+
/** DTO.WALLET.PNL_SUMMARY.BUY_AMOUNT_IN_USD */
|
|
1949
|
+
buyAmountInUsd: string;
|
|
1950
|
+
/** DTO.WALLET.PNL_SUMMARY.SELL_AMOUNT_IN_USD */
|
|
1951
|
+
sellAmountInUsd: string;
|
|
1952
|
+
/** DTO.WALLET.PNL_SUMMARY.TOTAL_COST_IN_USD */
|
|
1953
|
+
totalCostInUsd: string;
|
|
1954
|
+
/** DTO.WALLET.PNL_SUMMARY.REALIZED_PROFIT_IN_USD */
|
|
1955
|
+
realizedProfitInUsd: string;
|
|
1956
|
+
/** DTO.WALLET.PNL_SUMMARY.REALIZED_PROFIT_RATIO */
|
|
1957
|
+
realizedProfitRatio: string;
|
|
1958
|
+
/** DTO.WALLET.PNL_SUMMARY.UNREALIZED_PROFIT_IN_USD */
|
|
1959
|
+
unrealizedProfitInUsd: string;
|
|
1960
|
+
/** DTO.WALLET.PNL_SUMMARY.UNREALIZED_PROFIT_RATIO */
|
|
1961
|
+
unrealizedProfitRatio: string;
|
|
1962
|
+
/** DTO.WALLET.PNL_SUMMARY.TOTAL_PROFIT_IN_USD */
|
|
1963
|
+
totalProfitInUsd: string;
|
|
1964
|
+
/** DTO.WALLET.PNL_SUMMARY.TOTAL_PROFIT_RATIO */
|
|
1965
|
+
totalProfitRatio: string;
|
|
1966
|
+
/** DTO.WALLET.PNL_SUMMARY.AVG_PROFIT_PER_TRADE_IN_USD */
|
|
1967
|
+
avgProfitPerTradeInUsd: string;
|
|
1968
|
+
/** DTO.WALLET.PNL_SUMMARY.UPDATED_AT */
|
|
1969
|
+
updatedAt?: string;
|
|
1970
|
+
}
|
|
1971
|
+
/**
|
|
1972
|
+
* DTO.WALLET.TX_HISTORY.STATUS
|
|
1973
|
+
*/
|
|
1974
|
+
type TransactionHistoryItemDTOStatus = (typeof TransactionHistoryItemDTOStatus)[keyof typeof TransactionHistoryItemDTOStatus];
|
|
1975
|
+
declare const TransactionHistoryItemDTOStatus: {
|
|
1976
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
1977
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
1978
|
+
readonly FAILED: "FAILED";
|
|
1979
|
+
};
|
|
1980
|
+
/**
|
|
1981
|
+
* DTO.WALLET.TX_HISTORY.MAIN_ACTION
|
|
1982
|
+
*/
|
|
1983
|
+
type TransactionHistoryItemDTOMainAction = (typeof TransactionHistoryItemDTOMainAction)[keyof typeof TransactionHistoryItemDTOMainAction];
|
|
1984
|
+
declare const TransactionHistoryItemDTOMainAction: {
|
|
1985
|
+
readonly send: "send";
|
|
1986
|
+
readonly receive: "receive";
|
|
1987
|
+
};
|
|
1988
|
+
interface TransactionHistoryItemDTO {
|
|
1989
|
+
/** DTO.WALLET.TX_HISTORY.TX_HASH */
|
|
1990
|
+
txHash: string;
|
|
1991
|
+
/** DTO.WALLET.TX_HISTORY.BLOCK_NUMBER */
|
|
1992
|
+
blockNumber: number;
|
|
1993
|
+
/** DTO.WALLET.TX_HISTORY.BLOCK_TIME */
|
|
1994
|
+
blockTime: number;
|
|
1995
|
+
/** DTO.WALLET.TX_HISTORY.STATUS */
|
|
1996
|
+
status: TransactionHistoryItemDTOStatus;
|
|
1997
|
+
/** DTO.WALLET.TX_HISTORY.FROM */
|
|
1998
|
+
from: string;
|
|
1999
|
+
/** DTO.WALLET.TX_HISTORY.TO */
|
|
2000
|
+
to: string;
|
|
2001
|
+
/** DTO.WALLET.TX_HISTORY.FEE */
|
|
2002
|
+
fee: string;
|
|
2003
|
+
/** DTO.WALLET.TX_HISTORY.MAIN_ACTION */
|
|
2004
|
+
mainAction: TransactionHistoryItemDTOMainAction;
|
|
2005
|
+
/** DTO.WALLET.TX_HISTORY.TOKEN_ADDRESS */
|
|
2006
|
+
tokenAddress: string;
|
|
2007
|
+
/** DTO.WALLET.TX_HISTORY.TOKEN_AMOUNT */
|
|
2008
|
+
tokenAmount: string;
|
|
2009
|
+
/** DTO.WALLET.TX_HISTORY.TOKEN_AMOUNT_IN_USD */
|
|
2010
|
+
tokenAmountInUsd: string;
|
|
2011
|
+
/** DTO.WALLET.TX_HISTORY.TOKEN_PRICE_IN_USD */
|
|
2012
|
+
tokenPriceInUsd: string;
|
|
2013
|
+
/** DTO.WALLET.TX_HISTORY.SYMBOL */
|
|
2014
|
+
symbol: string;
|
|
2015
|
+
/** DTO.WALLET.TX_HISTORY.NAME */
|
|
2016
|
+
name: string;
|
|
2017
|
+
/** DTO.WALLET.TX_HISTORY.DECIMALS */
|
|
2018
|
+
decimals: number;
|
|
2019
|
+
/** DTO.WALLET.TX_HISTORY.LOGO_URI */
|
|
2020
|
+
logoUri?: string;
|
|
2021
|
+
/** DTO.WALLET.TX_HISTORY.FROM_TOKEN_ACCOUNT */
|
|
2022
|
+
fromTokenAccount: string;
|
|
2023
|
+
/** DTO.WALLET.TX_HISTORY.TO_TOKEN_ACCOUNT */
|
|
2024
|
+
toTokenAccount: string;
|
|
2025
|
+
/** DTO.WALLET.TX_HISTORY.FROM_USER_ACCOUNT */
|
|
2026
|
+
fromUserAccount: string;
|
|
2027
|
+
/** DTO.WALLET.TX_HISTORY.TO_USER_ACCOUNT */
|
|
2028
|
+
toUserAccount: string;
|
|
2029
|
+
/** DTO.WALLET.TX_HISTORY.OUTER_DAPP_PROGRAM */
|
|
2030
|
+
outerDappProgram: string;
|
|
2031
|
+
/** DTO.WALLET.TX_HISTORY.DAPP_PROGRAM */
|
|
2032
|
+
dappProgram: string;
|
|
2033
|
+
}
|
|
2034
|
+
interface TransactionHistoryPage {
|
|
2035
|
+
/** DTO.PAGE.HAS_NEXT */
|
|
2036
|
+
hasNext?: boolean;
|
|
2037
|
+
/** DTO.PAGE.HAS_PREV */
|
|
2038
|
+
hasPrev?: boolean;
|
|
2039
|
+
/** DTO.PAGE.START_CURSOR */
|
|
2040
|
+
startCursor?: string;
|
|
2041
|
+
/** DTO.PAGE.END_CURSOR */
|
|
2042
|
+
endCursor?: string;
|
|
2043
|
+
/** DTO.PAGE.TOTAL */
|
|
2044
|
+
total?: number;
|
|
2045
|
+
/** DTO.PAGE.DATA */
|
|
2046
|
+
data: TransactionHistoryItemDTO[];
|
|
2047
|
+
}
|
|
1682
2048
|
type BalanceTokenType = (typeof BalanceTokenType)[keyof typeof BalanceTokenType];
|
|
1683
2049
|
declare const BalanceTokenType: {
|
|
1684
2050
|
readonly SOL: "SOL";
|
|
@@ -2183,6 +2549,11 @@ interface AddressRiskResponseDTO {
|
|
|
2183
2549
|
/** DTO.KYT.ADDRESS_RISK_RESPONSE.STATUS */
|
|
2184
2550
|
status: string;
|
|
2185
2551
|
}
|
|
2552
|
+
type EndpointResponseChannelsItem = (typeof EndpointResponseChannelsItem)[keyof typeof EndpointResponseChannelsItem];
|
|
2553
|
+
declare const EndpointResponseChannelsItem: {
|
|
2554
|
+
readonly soltokenmigrated: "sol.token.migrated";
|
|
2555
|
+
readonly soltokencreated: "sol.token.created";
|
|
2556
|
+
};
|
|
2186
2557
|
/**
|
|
2187
2558
|
* DTO.ENDPOINT.METADATA
|
|
2188
2559
|
*/
|
|
@@ -2199,7 +2570,7 @@ interface EndpointResponse {
|
|
|
2199
2570
|
/** DTO.ENDPOINT.FILTER_TYPES */
|
|
2200
2571
|
filterTypes?: string[];
|
|
2201
2572
|
/** DTO.ENDPOINT.CHANNELS */
|
|
2202
|
-
channels?:
|
|
2573
|
+
channels?: EndpointResponseChannelsItem[];
|
|
2203
2574
|
/** DTO.ENDPOINT.DISABLED */
|
|
2204
2575
|
disabled?: boolean;
|
|
2205
2576
|
/** DTO.ENDPOINT.METADATA */
|
|
@@ -2231,6 +2602,11 @@ interface EndpointOperationResponse {
|
|
|
2231
2602
|
/** DTO.ENDPOINT.SUCCESS */
|
|
2232
2603
|
success?: boolean;
|
|
2233
2604
|
}
|
|
2605
|
+
type CreateEndpointInputChannelsItem = (typeof CreateEndpointInputChannelsItem)[keyof typeof CreateEndpointInputChannelsItem];
|
|
2606
|
+
declare const CreateEndpointInputChannelsItem: {
|
|
2607
|
+
readonly soltokenmigrated: "sol.token.migrated";
|
|
2608
|
+
readonly soltokencreated: "sol.token.created";
|
|
2609
|
+
};
|
|
2234
2610
|
/**
|
|
2235
2611
|
* DTO.ENDPOINT.METADATA
|
|
2236
2612
|
*/
|
|
@@ -2239,7 +2615,7 @@ type CreateEndpointInputMetadata = {
|
|
|
2239
2615
|
};
|
|
2240
2616
|
interface CreateEndpointInput {
|
|
2241
2617
|
/** DTO.ENDPOINT.CHANNELS */
|
|
2242
|
-
channels?:
|
|
2618
|
+
channels?: CreateEndpointInputChannelsItem[];
|
|
2243
2619
|
/** DTO.ENDPOINT.DESCRIPTION */
|
|
2244
2620
|
description?: string;
|
|
2245
2621
|
/** DTO.ENDPOINT.DISABLED */
|
|
@@ -2255,6 +2631,11 @@ interface CreateEndpointInput {
|
|
|
2255
2631
|
/** DTO.ENDPOINT.FILTER */
|
|
2256
2632
|
filter?: string;
|
|
2257
2633
|
}
|
|
2634
|
+
type UpdateEndpointInputChannelsItem = (typeof UpdateEndpointInputChannelsItem)[keyof typeof UpdateEndpointInputChannelsItem];
|
|
2635
|
+
declare const UpdateEndpointInputChannelsItem: {
|
|
2636
|
+
readonly soltokenmigrated: "sol.token.migrated";
|
|
2637
|
+
readonly soltokencreated: "sol.token.created";
|
|
2638
|
+
};
|
|
2258
2639
|
/**
|
|
2259
2640
|
* DTO.ENDPOINT.METADATA
|
|
2260
2641
|
*/
|
|
@@ -2265,7 +2646,7 @@ interface UpdateEndpointInput {
|
|
|
2265
2646
|
/** DTO.ENDPOINT.ENDPOINT_ID */
|
|
2266
2647
|
endpointId?: string;
|
|
2267
2648
|
/** DTO.ENDPOINT.CHANNELS */
|
|
2268
|
-
channels?:
|
|
2649
|
+
channels?: UpdateEndpointInputChannelsItem[];
|
|
2269
2650
|
/** DTO.ENDPOINT.DESCRIPTION */
|
|
2270
2651
|
description?: string;
|
|
2271
2652
|
/** DTO.ENDPOINT.DISABLED */
|
|
@@ -2545,7 +2926,51 @@ declare const GetTopTradersSortBy: {
|
|
|
2545
2926
|
readonly tradeAmount: "tradeAmount";
|
|
2546
2927
|
readonly tradeCount: "tradeCount";
|
|
2547
2928
|
};
|
|
2929
|
+
type GetTraderGainersLosersParams = {
|
|
2930
|
+
/**
|
|
2931
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
2932
|
+
*/
|
|
2933
|
+
cursor?: string;
|
|
2934
|
+
/**
|
|
2935
|
+
* DTO.PAGE.LIMIT
|
|
2936
|
+
*/
|
|
2937
|
+
limit?: number;
|
|
2938
|
+
/**
|
|
2939
|
+
* DTO.PAGE.DIRECTION
|
|
2940
|
+
*/
|
|
2941
|
+
direction?: GetTraderGainersLosersDirection;
|
|
2942
|
+
/**
|
|
2943
|
+
* DTO.TRADER.GAINERS_LOSERS.QUERY.RESOLUTION
|
|
2944
|
+
*/
|
|
2945
|
+
resolution?: TraderPnlResolution;
|
|
2946
|
+
/**
|
|
2947
|
+
* DTO.TRADER.GAINERS_LOSERS.QUERY.SORT_TYPE
|
|
2948
|
+
*/
|
|
2949
|
+
sortType?: GetTraderGainersLosersSortType;
|
|
2950
|
+
};
|
|
2951
|
+
type GetTraderGainersLosersDirection = (typeof GetTraderGainersLosersDirection)[keyof typeof GetTraderGainersLosersDirection];
|
|
2952
|
+
declare const GetTraderGainersLosersDirection: {
|
|
2953
|
+
readonly next: "next";
|
|
2954
|
+
readonly prev: "prev";
|
|
2955
|
+
};
|
|
2956
|
+
type GetTraderGainersLosersSortType = (typeof GetTraderGainersLosersSortType)[keyof typeof GetTraderGainersLosersSortType];
|
|
2957
|
+
declare const GetTraderGainersLosersSortType: {
|
|
2958
|
+
readonly desc: "desc";
|
|
2959
|
+
readonly asc: "asc";
|
|
2960
|
+
};
|
|
2548
2961
|
type SearchParams = {
|
|
2962
|
+
/**
|
|
2963
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
2964
|
+
*/
|
|
2965
|
+
cursor?: string;
|
|
2966
|
+
/**
|
|
2967
|
+
* DTO.PAGE.LIMIT
|
|
2968
|
+
*/
|
|
2969
|
+
limit?: number;
|
|
2970
|
+
/**
|
|
2971
|
+
* DTO.PAGE.DIRECTION
|
|
2972
|
+
*/
|
|
2973
|
+
direction?: SearchDirection;
|
|
2549
2974
|
/**
|
|
2550
2975
|
* DTO.TOKEN.SEARCH.CHAINS
|
|
2551
2976
|
*/
|
|
@@ -2554,10 +2979,6 @@ type SearchParams = {
|
|
|
2554
2979
|
* DTO.TOKEN.SEARCH.QUERY
|
|
2555
2980
|
*/
|
|
2556
2981
|
q?: string;
|
|
2557
|
-
/**
|
|
2558
|
-
* DTO.TOKEN.SEARCH.LIMIT
|
|
2559
|
-
*/
|
|
2560
|
-
limit?: number;
|
|
2561
2982
|
/**
|
|
2562
2983
|
* DTO.TOKEN.SEARCH.SORT_DIRECTION
|
|
2563
2984
|
*/
|
|
@@ -2566,15 +2987,16 @@ type SearchParams = {
|
|
|
2566
2987
|
* DTO.TOKEN.SEARCH.PROTOCOLS
|
|
2567
2988
|
*/
|
|
2568
2989
|
protocols?: string[];
|
|
2569
|
-
/**
|
|
2570
|
-
* DTO.PAGE.CURSOR
|
|
2571
|
-
*/
|
|
2572
|
-
cursor?: string;
|
|
2573
2990
|
/**
|
|
2574
2991
|
* DTO.TOKEN.SEARCH.SORT_BY
|
|
2575
2992
|
*/
|
|
2576
2993
|
sortBy?: SearchSortBy;
|
|
2577
2994
|
};
|
|
2995
|
+
type SearchDirection = (typeof SearchDirection)[keyof typeof SearchDirection];
|
|
2996
|
+
declare const SearchDirection: {
|
|
2997
|
+
readonly next: "next";
|
|
2998
|
+
readonly prev: "prev";
|
|
2999
|
+
};
|
|
2578
3000
|
type SearchSort = (typeof SearchSort)[keyof typeof SearchSort];
|
|
2579
3001
|
declare const SearchSort: {
|
|
2580
3002
|
readonly asc: "asc";
|
|
@@ -2763,6 +3185,10 @@ type GetCandlesParams = {
|
|
|
2763
3185
|
* DTO.CANDLE.RESOLUTION
|
|
2764
3186
|
*/
|
|
2765
3187
|
resolution: Resolution;
|
|
3188
|
+
/**
|
|
3189
|
+
* DTO.CANDLE.PRICE_TYPE
|
|
3190
|
+
*/
|
|
3191
|
+
priceType?: PriceType;
|
|
2766
3192
|
/**
|
|
2767
3193
|
* DTO.CANDLE.FROM
|
|
2768
3194
|
*/
|
|
@@ -2776,7 +3202,51 @@ type GetCandlesParams = {
|
|
|
2776
3202
|
*/
|
|
2777
3203
|
limit?: number;
|
|
2778
3204
|
};
|
|
2779
|
-
type
|
|
3205
|
+
type GetPoolCandlesParams = {
|
|
3206
|
+
/**
|
|
3207
|
+
* DTO.CANDLE.RESOLUTION
|
|
3208
|
+
*/
|
|
3209
|
+
resolution: Resolution;
|
|
3210
|
+
/**
|
|
3211
|
+
* DTO.CANDLE.PRICE_TYPE
|
|
3212
|
+
*/
|
|
3213
|
+
priceType?: PriceType;
|
|
3214
|
+
/**
|
|
3215
|
+
* DTO.CANDLE.FROM
|
|
3216
|
+
*/
|
|
3217
|
+
from?: number;
|
|
3218
|
+
/**
|
|
3219
|
+
* DTO.CANDLE.TO
|
|
3220
|
+
*/
|
|
3221
|
+
to?: number;
|
|
3222
|
+
/**
|
|
3223
|
+
* DTO.CANDLE.LIMIT
|
|
3224
|
+
*/
|
|
3225
|
+
limit?: number;
|
|
3226
|
+
};
|
|
3227
|
+
type GetPairCandlesParams = {
|
|
3228
|
+
/**
|
|
3229
|
+
* DTO.CANDLE.RESOLUTION
|
|
3230
|
+
*/
|
|
3231
|
+
resolution: Resolution;
|
|
3232
|
+
/**
|
|
3233
|
+
* DTO.CANDLE.PRICE_TYPE
|
|
3234
|
+
*/
|
|
3235
|
+
priceType?: PriceType;
|
|
3236
|
+
/**
|
|
3237
|
+
* DTO.CANDLE.FROM
|
|
3238
|
+
*/
|
|
3239
|
+
from?: number;
|
|
3240
|
+
/**
|
|
3241
|
+
* DTO.CANDLE.TO
|
|
3242
|
+
*/
|
|
3243
|
+
to?: number;
|
|
3244
|
+
/**
|
|
3245
|
+
* DTO.CANDLE.LIMIT
|
|
3246
|
+
*/
|
|
3247
|
+
limit?: number;
|
|
3248
|
+
};
|
|
3249
|
+
type GetMarketDataMultiParams = {
|
|
2780
3250
|
/**
|
|
2781
3251
|
* GLOBAL.TOKENADDRESSES.DESCRIPTION
|
|
2782
3252
|
*/
|
|
@@ -3445,32 +3915,104 @@ type GetSecurity200 = {
|
|
|
3445
3915
|
[key: string]: unknown;
|
|
3446
3916
|
};
|
|
3447
3917
|
type GetTokenLiquiditySnapshotsParams = {
|
|
3918
|
+
/**
|
|
3919
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
3920
|
+
*/
|
|
3921
|
+
cursor?: string;
|
|
3922
|
+
/**
|
|
3923
|
+
* DTO.PAGE.LIMIT
|
|
3924
|
+
*/
|
|
3925
|
+
limit?: number;
|
|
3926
|
+
/**
|
|
3927
|
+
* DTO.PAGE.DIRECTION
|
|
3928
|
+
*/
|
|
3929
|
+
direction?: GetTokenLiquiditySnapshotsDirection;
|
|
3448
3930
|
/**
|
|
3449
3931
|
* DTO.TOKEN.LIQUIDITY_SNAPSHOT.TIME
|
|
3450
3932
|
*/
|
|
3451
3933
|
time?: number;
|
|
3934
|
+
};
|
|
3935
|
+
type GetTokenLiquiditySnapshotsDirection = (typeof GetTokenLiquiditySnapshotsDirection)[keyof typeof GetTokenLiquiditySnapshotsDirection];
|
|
3936
|
+
declare const GetTokenLiquiditySnapshotsDirection: {
|
|
3937
|
+
readonly next: "next";
|
|
3938
|
+
readonly prev: "prev";
|
|
3939
|
+
};
|
|
3940
|
+
type GetTokenTransfersParams = {
|
|
3452
3941
|
/**
|
|
3453
|
-
* DTO.PAGE.CURSOR
|
|
3942
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
3454
3943
|
*/
|
|
3455
3944
|
cursor?: string;
|
|
3456
3945
|
/**
|
|
3457
3946
|
* DTO.PAGE.LIMIT
|
|
3458
3947
|
*/
|
|
3459
3948
|
limit?: number;
|
|
3949
|
+
/**
|
|
3950
|
+
* DTO.PAGE.DIRECTION
|
|
3951
|
+
*/
|
|
3952
|
+
direction?: GetTokenTransfersDirection;
|
|
3953
|
+
/**
|
|
3954
|
+
* DTO.TOKEN.TRANSFER.QUERY.BEFORE_TIMESTAMP
|
|
3955
|
+
*/
|
|
3956
|
+
beforeTimestamp?: number;
|
|
3957
|
+
/**
|
|
3958
|
+
* DTO.TOKEN.TRANSFER.QUERY.AFTER_TIMESTAMP
|
|
3959
|
+
*/
|
|
3960
|
+
afterTimestamp?: number;
|
|
3460
3961
|
};
|
|
3461
|
-
type
|
|
3962
|
+
type GetTokenTransfersDirection = (typeof GetTokenTransfersDirection)[keyof typeof GetTokenTransfersDirection];
|
|
3963
|
+
declare const GetTokenTransfersDirection: {
|
|
3964
|
+
readonly next: "next";
|
|
3965
|
+
readonly prev: "prev";
|
|
3966
|
+
};
|
|
3967
|
+
type GetTokenTransferTotalParams = {
|
|
3462
3968
|
/**
|
|
3463
|
-
* DTO.
|
|
3969
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
3464
3970
|
*/
|
|
3465
|
-
|
|
3971
|
+
cursor?: string;
|
|
3972
|
+
/**
|
|
3973
|
+
* DTO.PAGE.LIMIT
|
|
3974
|
+
*/
|
|
3975
|
+
limit?: number;
|
|
3976
|
+
/**
|
|
3977
|
+
* DTO.PAGE.DIRECTION
|
|
3978
|
+
*/
|
|
3979
|
+
direction?: GetTokenTransferTotalDirection;
|
|
3980
|
+
/**
|
|
3981
|
+
* DTO.TOKEN.TRANSFER.QUERY.BEFORE_TIMESTAMP
|
|
3982
|
+
*/
|
|
3983
|
+
beforeTimestamp?: number;
|
|
3984
|
+
/**
|
|
3985
|
+
* DTO.TOKEN.TRANSFER.QUERY.AFTER_TIMESTAMP
|
|
3986
|
+
*/
|
|
3987
|
+
afterTimestamp?: number;
|
|
3988
|
+
};
|
|
3989
|
+
type GetTokenTransferTotalDirection = (typeof GetTokenTransferTotalDirection)[keyof typeof GetTokenTransferTotalDirection];
|
|
3990
|
+
declare const GetTokenTransferTotalDirection: {
|
|
3991
|
+
readonly next: "next";
|
|
3992
|
+
readonly prev: "prev";
|
|
3993
|
+
};
|
|
3994
|
+
type GetDexpoolSnapshotsParams = {
|
|
3466
3995
|
/**
|
|
3467
|
-
* DTO.PAGE.CURSOR
|
|
3996
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
3468
3997
|
*/
|
|
3469
3998
|
cursor?: string;
|
|
3470
3999
|
/**
|
|
3471
4000
|
* DTO.PAGE.LIMIT
|
|
3472
4001
|
*/
|
|
3473
4002
|
limit?: number;
|
|
4003
|
+
/**
|
|
4004
|
+
* DTO.PAGE.DIRECTION
|
|
4005
|
+
*/
|
|
4006
|
+
direction?: GetDexpoolSnapshotsDirection;
|
|
4007
|
+
/**
|
|
4008
|
+
* DTO.DEXPOOL.SNAPSHOT.TIME
|
|
4009
|
+
*/
|
|
4010
|
+
time?: number;
|
|
4011
|
+
};
|
|
4012
|
+
type GetDexpoolSnapshotsDirection = (typeof GetDexpoolSnapshotsDirection)[keyof typeof GetDexpoolSnapshotsDirection];
|
|
4013
|
+
declare const GetDexpoolSnapshotsDirection: {
|
|
4014
|
+
readonly next: "next";
|
|
4015
|
+
readonly prev: "prev";
|
|
3474
4016
|
};
|
|
3475
4017
|
type GetHotTokensParams = {
|
|
3476
4018
|
/**
|
|
@@ -3952,19 +4494,235 @@ declare const GetMigratedTokensTag: {
|
|
|
3952
4494
|
readonly bonk_fun: "bonk_fun";
|
|
3953
4495
|
readonly moonit_fun: "moonit_fun";
|
|
3954
4496
|
};
|
|
4497
|
+
type GetNetWorthSummaryParams = {
|
|
4498
|
+
/**
|
|
4499
|
+
* GLOBAL.WALLETADDRESSES.DESCRIPTION
|
|
4500
|
+
*/
|
|
4501
|
+
walletAddresses: string;
|
|
4502
|
+
};
|
|
4503
|
+
type GetPnlByWalletParams = {
|
|
4504
|
+
/**
|
|
4505
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
4506
|
+
*/
|
|
4507
|
+
cursor?: string;
|
|
4508
|
+
/**
|
|
4509
|
+
* DTO.PAGE.LIMIT
|
|
4510
|
+
*/
|
|
4511
|
+
limit?: number;
|
|
4512
|
+
/**
|
|
4513
|
+
* DTO.PAGE.DIRECTION
|
|
4514
|
+
*/
|
|
4515
|
+
direction?: GetPnlByWalletDirection;
|
|
4516
|
+
/**
|
|
4517
|
+
* GLOBAL.WALLETADDRESSES.DESCRIPTION
|
|
4518
|
+
*/
|
|
4519
|
+
walletAddresses: string;
|
|
4520
|
+
/**
|
|
4521
|
+
* GLOBAL.TOKENADDRESS.DESCRIPTION
|
|
4522
|
+
*/
|
|
4523
|
+
tokenAddress: string;
|
|
4524
|
+
};
|
|
4525
|
+
type GetPnlByWalletDirection = (typeof GetPnlByWalletDirection)[keyof typeof GetPnlByWalletDirection];
|
|
4526
|
+
declare const GetPnlByWalletDirection: {
|
|
4527
|
+
readonly next: "next";
|
|
4528
|
+
readonly prev: "prev";
|
|
4529
|
+
};
|
|
4530
|
+
type GetWalletFirstTxParams = {
|
|
4531
|
+
/**
|
|
4532
|
+
* GLOBAL.WALLETADDRESSES.DESCRIPTION
|
|
4533
|
+
*/
|
|
4534
|
+
walletAddresses: string;
|
|
4535
|
+
};
|
|
4536
|
+
type GetNetWorthParams = {
|
|
4537
|
+
/**
|
|
4538
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
4539
|
+
*/
|
|
4540
|
+
cursor?: string;
|
|
4541
|
+
/**
|
|
4542
|
+
* DTO.PAGE.LIMIT
|
|
4543
|
+
*/
|
|
4544
|
+
limit?: number;
|
|
4545
|
+
/**
|
|
4546
|
+
* DTO.PAGE.DIRECTION
|
|
4547
|
+
*/
|
|
4548
|
+
direction?: GetNetWorthDirection;
|
|
4549
|
+
};
|
|
4550
|
+
type GetNetWorthDirection = (typeof GetNetWorthDirection)[keyof typeof GetNetWorthDirection];
|
|
4551
|
+
declare const GetNetWorthDirection: {
|
|
4552
|
+
readonly next: "next";
|
|
4553
|
+
readonly prev: "prev";
|
|
4554
|
+
};
|
|
4555
|
+
type GetTokensBalanceParams = {
|
|
4556
|
+
/**
|
|
4557
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
4558
|
+
*/
|
|
4559
|
+
cursor?: string;
|
|
4560
|
+
/**
|
|
4561
|
+
* DTO.PAGE.LIMIT
|
|
4562
|
+
*/
|
|
4563
|
+
limit?: number;
|
|
4564
|
+
/**
|
|
4565
|
+
* DTO.PAGE.DIRECTION
|
|
4566
|
+
*/
|
|
4567
|
+
direction?: GetTokensBalanceDirection;
|
|
4568
|
+
};
|
|
4569
|
+
type GetTokensBalanceDirection = (typeof GetTokensBalanceDirection)[keyof typeof GetTokensBalanceDirection];
|
|
4570
|
+
declare const GetTokensBalanceDirection: {
|
|
4571
|
+
readonly next: "next";
|
|
4572
|
+
readonly prev: "prev";
|
|
4573
|
+
};
|
|
4574
|
+
type GetNetWorthChartParams = {
|
|
4575
|
+
/**
|
|
4576
|
+
* DTO.WALLET.NET_WORTH_CHART.QUERY.HOURS
|
|
4577
|
+
*/
|
|
4578
|
+
hours?: number;
|
|
4579
|
+
};
|
|
4580
|
+
type GetNetWorthDetailsParams = {
|
|
4581
|
+
/**
|
|
4582
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
4583
|
+
*/
|
|
4584
|
+
cursor?: string;
|
|
4585
|
+
/**
|
|
4586
|
+
* DTO.PAGE.LIMIT
|
|
4587
|
+
*/
|
|
4588
|
+
limit?: number;
|
|
4589
|
+
/**
|
|
4590
|
+
* DTO.PAGE.DIRECTION
|
|
4591
|
+
*/
|
|
4592
|
+
direction?: GetNetWorthDetailsDirection;
|
|
4593
|
+
/**
|
|
4594
|
+
* DTO.WALLET.NET_WORTH_DETAILS.QUERY.HOURS
|
|
4595
|
+
*/
|
|
4596
|
+
hours?: number;
|
|
4597
|
+
};
|
|
4598
|
+
type GetNetWorthDetailsDirection = (typeof GetNetWorthDetailsDirection)[keyof typeof GetNetWorthDetailsDirection];
|
|
4599
|
+
declare const GetNetWorthDetailsDirection: {
|
|
4600
|
+
readonly next: "next";
|
|
4601
|
+
readonly prev: "prev";
|
|
4602
|
+
};
|
|
3955
4603
|
type GetPnlParams = {
|
|
4604
|
+
/**
|
|
4605
|
+
* DTO.WALLET.PNL_SUMMARY.QUERY.RESOLUTION
|
|
4606
|
+
*/
|
|
4607
|
+
resolution?: PnlResolution;
|
|
4608
|
+
};
|
|
4609
|
+
type GetPnlDetailsParams = {
|
|
4610
|
+
/**
|
|
4611
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
4612
|
+
*/
|
|
4613
|
+
cursor?: string;
|
|
4614
|
+
/**
|
|
4615
|
+
* DTO.PAGE.LIMIT
|
|
4616
|
+
*/
|
|
4617
|
+
limit?: number;
|
|
4618
|
+
/**
|
|
4619
|
+
* DTO.PAGE.DIRECTION
|
|
4620
|
+
*/
|
|
4621
|
+
direction?: GetPnlDetailsDirection;
|
|
4622
|
+
};
|
|
4623
|
+
type GetPnlDetailsDirection = (typeof GetPnlDetailsDirection)[keyof typeof GetPnlDetailsDirection];
|
|
4624
|
+
declare const GetPnlDetailsDirection: {
|
|
4625
|
+
readonly next: "next";
|
|
4626
|
+
readonly prev: "prev";
|
|
4627
|
+
};
|
|
4628
|
+
type GetPnlByTokenParams = {
|
|
4629
|
+
/**
|
|
4630
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
4631
|
+
*/
|
|
4632
|
+
cursor?: string;
|
|
4633
|
+
/**
|
|
4634
|
+
* DTO.PAGE.LIMIT
|
|
4635
|
+
*/
|
|
4636
|
+
limit?: number;
|
|
4637
|
+
/**
|
|
4638
|
+
* DTO.PAGE.DIRECTION
|
|
4639
|
+
*/
|
|
4640
|
+
direction?: GetPnlByTokenDirection;
|
|
4641
|
+
/**
|
|
4642
|
+
* GLOBAL.TOKENADDRESSES.DESCRIPTION
|
|
4643
|
+
*/
|
|
4644
|
+
tokenAddresses: string;
|
|
4645
|
+
};
|
|
4646
|
+
type GetPnlByTokenDirection = (typeof GetPnlByTokenDirection)[keyof typeof GetPnlByTokenDirection];
|
|
4647
|
+
declare const GetPnlByTokenDirection: {
|
|
4648
|
+
readonly next: "next";
|
|
4649
|
+
readonly prev: "prev";
|
|
4650
|
+
};
|
|
4651
|
+
type GetWalletTransfersParams = {
|
|
4652
|
+
/**
|
|
4653
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
4654
|
+
*/
|
|
4655
|
+
cursor?: string;
|
|
4656
|
+
/**
|
|
4657
|
+
* DTO.PAGE.LIMIT
|
|
4658
|
+
*/
|
|
4659
|
+
limit?: number;
|
|
4660
|
+
/**
|
|
4661
|
+
* DTO.PAGE.DIRECTION
|
|
4662
|
+
*/
|
|
4663
|
+
direction?: GetWalletTransfersDirection;
|
|
3956
4664
|
/**
|
|
3957
4665
|
* GLOBAL.TOKENADDRESS.DESCRIPTION
|
|
3958
4666
|
*/
|
|
3959
4667
|
tokenAddress?: string;
|
|
4668
|
+
/**
|
|
4669
|
+
* DTO.TOKEN.TRANSFER.QUERY.BEFORE_TIMESTAMP
|
|
4670
|
+
*/
|
|
4671
|
+
beforeTimestamp?: number;
|
|
4672
|
+
/**
|
|
4673
|
+
* DTO.TOKEN.TRANSFER.QUERY.AFTER_TIMESTAMP
|
|
4674
|
+
*/
|
|
4675
|
+
afterTimestamp?: number;
|
|
4676
|
+
};
|
|
4677
|
+
type GetWalletTransfersDirection = (typeof GetWalletTransfersDirection)[keyof typeof GetWalletTransfersDirection];
|
|
4678
|
+
declare const GetWalletTransfersDirection: {
|
|
4679
|
+
readonly next: "next";
|
|
4680
|
+
readonly prev: "prev";
|
|
3960
4681
|
};
|
|
3961
|
-
type
|
|
4682
|
+
type GetWalletTransferTotalParams = {
|
|
4683
|
+
/**
|
|
4684
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
4685
|
+
*/
|
|
4686
|
+
cursor?: string;
|
|
3962
4687
|
/**
|
|
3963
|
-
* DTO.
|
|
4688
|
+
* DTO.PAGE.LIMIT
|
|
4689
|
+
*/
|
|
4690
|
+
limit?: number;
|
|
4691
|
+
/**
|
|
4692
|
+
* DTO.PAGE.DIRECTION
|
|
4693
|
+
*/
|
|
4694
|
+
direction?: GetWalletTransferTotalDirection;
|
|
4695
|
+
/**
|
|
4696
|
+
* GLOBAL.TOKENADDRESS.DESCRIPTION
|
|
3964
4697
|
*/
|
|
3965
4698
|
tokenAddress?: string;
|
|
4699
|
+
/**
|
|
4700
|
+
* DTO.TOKEN.TRANSFER.QUERY.BEFORE_TIMESTAMP
|
|
4701
|
+
*/
|
|
4702
|
+
beforeTimestamp?: number;
|
|
4703
|
+
/**
|
|
4704
|
+
* DTO.TOKEN.TRANSFER.QUERY.AFTER_TIMESTAMP
|
|
4705
|
+
*/
|
|
4706
|
+
afterTimestamp?: number;
|
|
4707
|
+
};
|
|
4708
|
+
type GetWalletTransferTotalDirection = (typeof GetWalletTransferTotalDirection)[keyof typeof GetWalletTransferTotalDirection];
|
|
4709
|
+
declare const GetWalletTransferTotalDirection: {
|
|
4710
|
+
readonly next: "next";
|
|
4711
|
+
readonly prev: "prev";
|
|
3966
4712
|
};
|
|
3967
4713
|
type GetBalanceUpdatesParams = {
|
|
4714
|
+
/**
|
|
4715
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
4716
|
+
*/
|
|
4717
|
+
cursor?: string;
|
|
4718
|
+
/**
|
|
4719
|
+
* DTO.PAGE.LIMIT
|
|
4720
|
+
*/
|
|
4721
|
+
limit?: number;
|
|
4722
|
+
/**
|
|
4723
|
+
* DTO.PAGE.DIRECTION
|
|
4724
|
+
*/
|
|
4725
|
+
direction?: GetBalanceUpdatesDirection;
|
|
3968
4726
|
/**
|
|
3969
4727
|
* DTO.WALLET.BALANCE_UPDATE.QUERY.TOKEN_ADDRESS
|
|
3970
4728
|
*/
|
|
@@ -3985,14 +4743,11 @@ type GetBalanceUpdatesParams = {
|
|
|
3985
4743
|
* DTO.WALLET.BALANCE_UPDATE.QUERY.CHANGE_TYPE
|
|
3986
4744
|
*/
|
|
3987
4745
|
changeType?: BalanceChangeType;
|
|
3988
|
-
|
|
3989
|
-
|
|
3990
|
-
|
|
3991
|
-
|
|
3992
|
-
|
|
3993
|
-
* DTO.PAGE.LIMIT
|
|
3994
|
-
*/
|
|
3995
|
-
limit?: number;
|
|
4746
|
+
};
|
|
4747
|
+
type GetBalanceUpdatesDirection = (typeof GetBalanceUpdatesDirection)[keyof typeof GetBalanceUpdatesDirection];
|
|
4748
|
+
declare const GetBalanceUpdatesDirection: {
|
|
4749
|
+
readonly next: "next";
|
|
4750
|
+
readonly prev: "prev";
|
|
3996
4751
|
};
|
|
3997
4752
|
type GetClaimsParams = {
|
|
3998
4753
|
/**
|
|
@@ -4344,18 +5099,26 @@ declare const getActivities: (chain: ChainSymbol, params?: GetActivitiesParams,
|
|
|
4344
5099
|
* @summary CONTROLLER.TRADE.GET.TOP_TRADERS.SUMMARY
|
|
4345
5100
|
*/
|
|
4346
5101
|
declare const getTopTraders: (chain: ChainSymbol, params: GetTopTradersParams, options?: SecondParameter$8<typeof chainstreamApiClient>) => Promise<TopTradersPage>;
|
|
5102
|
+
/**
|
|
5103
|
+
* CONTROLLER.TRADER.GET_GAINERS_LOSERS.DESCRIPTION
|
|
5104
|
+
* @summary CONTROLLER.TRADER.GET_GAINERS_LOSERS.SUMMARY
|
|
5105
|
+
*/
|
|
5106
|
+
declare const getTraderGainersLosers: (chain: ChainSymbol, params?: GetTraderGainersLosersParams, options?: SecondParameter$8<typeof chainstreamApiClient>) => Promise<TraderGainersLosersPage>;
|
|
4347
5107
|
type GetTradesResult = NonNullable<Awaited<ReturnType<typeof getTrades>>>;
|
|
4348
5108
|
type GetActivitiesResult = NonNullable<Awaited<ReturnType<typeof getActivities>>>;
|
|
4349
5109
|
type GetTopTradersResult = NonNullable<Awaited<ReturnType<typeof getTopTraders>>>;
|
|
5110
|
+
type GetTraderGainersLosersResult = NonNullable<Awaited<ReturnType<typeof getTraderGainersLosers>>>;
|
|
4350
5111
|
|
|
4351
5112
|
type tradeApi_GetActivitiesResult = GetActivitiesResult;
|
|
4352
5113
|
type tradeApi_GetTopTradersResult = GetTopTradersResult;
|
|
5114
|
+
type tradeApi_GetTraderGainersLosersResult = GetTraderGainersLosersResult;
|
|
4353
5115
|
type tradeApi_GetTradesResult = GetTradesResult;
|
|
4354
5116
|
declare const tradeApi_getActivities: typeof getActivities;
|
|
4355
5117
|
declare const tradeApi_getTopTraders: typeof getTopTraders;
|
|
5118
|
+
declare const tradeApi_getTraderGainersLosers: typeof getTraderGainersLosers;
|
|
4356
5119
|
declare const tradeApi_getTrades: typeof getTrades;
|
|
4357
5120
|
declare namespace tradeApi {
|
|
4358
|
-
export { type tradeApi_GetActivitiesResult as GetActivitiesResult, type tradeApi_GetTopTradersResult as GetTopTradersResult, type tradeApi_GetTradesResult as GetTradesResult, tradeApi_getActivities as getActivities, tradeApi_getTopTraders as getTopTraders, tradeApi_getTrades as getTrades };
|
|
5121
|
+
export { type tradeApi_GetActivitiesResult as GetActivitiesResult, type tradeApi_GetTopTradersResult as GetTopTradersResult, type tradeApi_GetTraderGainersLosersResult as GetTraderGainersLosersResult, type tradeApi_GetTradesResult as GetTradesResult, tradeApi_getActivities as getActivities, tradeApi_getTopTraders as getTopTraders, tradeApi_getTraderGainersLosers as getTraderGainersLosers, tradeApi_getTrades as getTrades };
|
|
4359
5122
|
}
|
|
4360
5123
|
|
|
4361
5124
|
/**
|
|
@@ -4422,6 +5185,16 @@ declare const getHoldersMulti: (chain: ChainSymbol, tokenAddress: string, params
|
|
|
4422
5185
|
* @summary CONTROLLER.TOKEN.GET_CANDLES.SUMMARY
|
|
4423
5186
|
*/
|
|
4424
5187
|
declare const getCandles: (chain: ChainSymbol, tokenAddress: string, params: GetCandlesParams, options?: SecondParameter$7<typeof chainstreamApiClient>) => Promise<Candle[]>;
|
|
5188
|
+
/**
|
|
5189
|
+
* CONTROLLER.TOKEN.GET_POOL_CANDLES.DESCRIPTION
|
|
5190
|
+
* @summary CONTROLLER.TOKEN.GET_POOL_CANDLES.SUMMARY
|
|
5191
|
+
*/
|
|
5192
|
+
declare const getPoolCandles: (chain: ChainSymbol, poolAddress: string, params: GetPoolCandlesParams, options?: SecondParameter$7<typeof chainstreamApiClient>) => Promise<Candle[]>;
|
|
5193
|
+
/**
|
|
5194
|
+
* CONTROLLER.TOKEN.GET_PAIR_CANDLES.DESCRIPTION
|
|
5195
|
+
* @summary CONTROLLER.TOKEN.GET_PAIR_CANDLES.SUMMARY
|
|
5196
|
+
*/
|
|
5197
|
+
declare const getPairCandles: (chain: ChainSymbol, pair: string, params: GetPairCandlesParams, options?: SecondParameter$7<typeof chainstreamApiClient>) => Promise<Candle[]>;
|
|
4425
5198
|
/**
|
|
4426
5199
|
* CONTROLLER.TOKEN.GET_TOP_HOLDERS.DESCRIPTION
|
|
4427
5200
|
* @summary CONTROLLER.TOKEN.GET_TOP_HOLDERS.SUMMARY
|
|
@@ -4482,6 +5255,16 @@ declare const getTokenTraders: (chain: ChainSymbol, tokenAddress: string, tag: T
|
|
|
4482
5255
|
* @summary CONTROLLER.TOKEN.GET_LIQUIDITY_SNAPSHOTS.SUMMARY
|
|
4483
5256
|
*/
|
|
4484
5257
|
declare const getTokenLiquiditySnapshots: (chain: ChainSymbol, tokenAddress: string, params?: GetTokenLiquiditySnapshotsParams, options?: SecondParameter$7<typeof chainstreamApiClient>) => Promise<TokenLiquiditySnapshotPage>;
|
|
5258
|
+
/**
|
|
5259
|
+
* CONTROLLER.TOKEN.GET_TRANSFER_LIST.DESCRIPTION
|
|
5260
|
+
* @summary CONTROLLER.TOKEN.GET_TRANSFER_LIST.SUMMARY
|
|
5261
|
+
*/
|
|
5262
|
+
declare const getTokenTransfers: (chain: ChainSymbol, tokenAddress: string, params?: GetTokenTransfersParams, options?: SecondParameter$7<typeof chainstreamApiClient>) => Promise<TokenTransferPage>;
|
|
5263
|
+
/**
|
|
5264
|
+
* CONTROLLER.TOKEN.GET_TRANSFER_TOTAL.DESCRIPTION
|
|
5265
|
+
* @summary CONTROLLER.TOKEN.GET_TRANSFER_TOTAL.SUMMARY
|
|
5266
|
+
*/
|
|
5267
|
+
declare const getTokenTransferTotal: (chain: ChainSymbol, tokenAddress: string, params?: GetTokenTransferTotalParams, options?: SecondParameter$7<typeof chainstreamApiClient>) => Promise<TokenTransferTotalDTO>;
|
|
4485
5268
|
type SearchResult = NonNullable<Awaited<ReturnType<typeof search>>>;
|
|
4486
5269
|
type GetTokensResult = NonNullable<Awaited<ReturnType<typeof getTokens>>>;
|
|
4487
5270
|
type GetTokenResult = NonNullable<Awaited<ReturnType<typeof getToken>>>;
|
|
@@ -4493,6 +5276,8 @@ type GetStatsMultiResult = NonNullable<Awaited<ReturnType<typeof getStatsMulti>>
|
|
|
4493
5276
|
type GetHoldersResult = NonNullable<Awaited<ReturnType<typeof getHolders>>>;
|
|
4494
5277
|
type GetHoldersMultiResult = NonNullable<Awaited<ReturnType<typeof getHoldersMulti>>>;
|
|
4495
5278
|
type GetCandlesResult = NonNullable<Awaited<ReturnType<typeof getCandles>>>;
|
|
5279
|
+
type GetPoolCandlesResult = NonNullable<Awaited<ReturnType<typeof getPoolCandles>>>;
|
|
5280
|
+
type GetPairCandlesResult = NonNullable<Awaited<ReturnType<typeof getPairCandles>>>;
|
|
4496
5281
|
type GetTopHoldersResult = NonNullable<Awaited<ReturnType<typeof getTopHolders>>>;
|
|
4497
5282
|
type GetMarketDataResult = NonNullable<Awaited<ReturnType<typeof getMarketData>>>;
|
|
4498
5283
|
type GetMarketDataMultiResult = NonNullable<Awaited<ReturnType<typeof getMarketDataMulti>>>;
|
|
@@ -4505,6 +5290,8 @@ type GetSecurityResult = NonNullable<Awaited<ReturnType<typeof getSecurity>>>;
|
|
|
4505
5290
|
type GetDevTokensResult = NonNullable<Awaited<ReturnType<typeof getDevTokens>>>;
|
|
4506
5291
|
type GetTokenTradersResult = NonNullable<Awaited<ReturnType<typeof getTokenTraders>>>;
|
|
4507
5292
|
type GetTokenLiquiditySnapshotsResult = NonNullable<Awaited<ReturnType<typeof getTokenLiquiditySnapshots>>>;
|
|
5293
|
+
type GetTokenTransfersResult = NonNullable<Awaited<ReturnType<typeof getTokenTransfers>>>;
|
|
5294
|
+
type GetTokenTransferTotalResult = NonNullable<Awaited<ReturnType<typeof getTokenTransferTotal>>>;
|
|
4508
5295
|
|
|
4509
5296
|
type tokenApi_GetCandlesResult = GetCandlesResult;
|
|
4510
5297
|
type tokenApi_GetCreationResult = GetCreationResult;
|
|
@@ -4516,6 +5303,8 @@ type tokenApi_GetMarketDataResult = GetMarketDataResult;
|
|
|
4516
5303
|
type tokenApi_GetMetadataMultiResult = GetMetadataMultiResult;
|
|
4517
5304
|
type tokenApi_GetMetadataResult = GetMetadataResult;
|
|
4518
5305
|
type tokenApi_GetMintAndBurnResult = GetMintAndBurnResult;
|
|
5306
|
+
type tokenApi_GetPairCandlesResult = GetPairCandlesResult;
|
|
5307
|
+
type tokenApi_GetPoolCandlesResult = GetPoolCandlesResult;
|
|
4519
5308
|
type tokenApi_GetPoolsResult = GetPoolsResult;
|
|
4520
5309
|
type tokenApi_GetPriceByTimeResult = GetPriceByTimeResult;
|
|
4521
5310
|
type tokenApi_GetPricesResult = GetPricesResult;
|
|
@@ -4525,6 +5314,8 @@ type tokenApi_GetStatsResult = GetStatsResult;
|
|
|
4525
5314
|
type tokenApi_GetTokenLiquiditySnapshotsResult = GetTokenLiquiditySnapshotsResult;
|
|
4526
5315
|
type tokenApi_GetTokenResult = GetTokenResult;
|
|
4527
5316
|
type tokenApi_GetTokenTradersResult = GetTokenTradersResult;
|
|
5317
|
+
type tokenApi_GetTokenTransferTotalResult = GetTokenTransferTotalResult;
|
|
5318
|
+
type tokenApi_GetTokenTransfersResult = GetTokenTransfersResult;
|
|
4528
5319
|
type tokenApi_GetTokensResult = GetTokensResult;
|
|
4529
5320
|
type tokenApi_GetTopHoldersResult = GetTopHoldersResult;
|
|
4530
5321
|
type tokenApi_ListTokenResult = ListTokenResult;
|
|
@@ -4539,6 +5330,8 @@ declare const tokenApi_getMarketDataMulti: typeof getMarketDataMulti;
|
|
|
4539
5330
|
declare const tokenApi_getMetadata: typeof getMetadata;
|
|
4540
5331
|
declare const tokenApi_getMetadataMulti: typeof getMetadataMulti;
|
|
4541
5332
|
declare const tokenApi_getMintAndBurn: typeof getMintAndBurn;
|
|
5333
|
+
declare const tokenApi_getPairCandles: typeof getPairCandles;
|
|
5334
|
+
declare const tokenApi_getPoolCandles: typeof getPoolCandles;
|
|
4542
5335
|
declare const tokenApi_getPools: typeof getPools;
|
|
4543
5336
|
declare const tokenApi_getPriceByTime: typeof getPriceByTime;
|
|
4544
5337
|
declare const tokenApi_getPrices: typeof getPrices;
|
|
@@ -4548,12 +5341,14 @@ declare const tokenApi_getStatsMulti: typeof getStatsMulti;
|
|
|
4548
5341
|
declare const tokenApi_getToken: typeof getToken;
|
|
4549
5342
|
declare const tokenApi_getTokenLiquiditySnapshots: typeof getTokenLiquiditySnapshots;
|
|
4550
5343
|
declare const tokenApi_getTokenTraders: typeof getTokenTraders;
|
|
5344
|
+
declare const tokenApi_getTokenTransferTotal: typeof getTokenTransferTotal;
|
|
5345
|
+
declare const tokenApi_getTokenTransfers: typeof getTokenTransfers;
|
|
4551
5346
|
declare const tokenApi_getTokens: typeof getTokens;
|
|
4552
5347
|
declare const tokenApi_getTopHolders: typeof getTopHolders;
|
|
4553
5348
|
declare const tokenApi_listToken: typeof listToken;
|
|
4554
5349
|
declare const tokenApi_search: typeof search;
|
|
4555
5350
|
declare namespace tokenApi {
|
|
4556
|
-
export { type tokenApi_GetCandlesResult as GetCandlesResult, type tokenApi_GetCreationResult as GetCreationResult, type tokenApi_GetDevTokensResult as GetDevTokensResult, type tokenApi_GetHoldersMultiResult as GetHoldersMultiResult, type tokenApi_GetHoldersResult as GetHoldersResult, type tokenApi_GetMarketDataMultiResult as GetMarketDataMultiResult, type tokenApi_GetMarketDataResult as GetMarketDataResult, type tokenApi_GetMetadataMultiResult as GetMetadataMultiResult, type tokenApi_GetMetadataResult as GetMetadataResult, type tokenApi_GetMintAndBurnResult as GetMintAndBurnResult, type tokenApi_GetPoolsResult as GetPoolsResult, type tokenApi_GetPriceByTimeResult as GetPriceByTimeResult, type tokenApi_GetPricesResult as GetPricesResult, type tokenApi_GetSecurityResult as GetSecurityResult, type tokenApi_GetStatsMultiResult as GetStatsMultiResult, type tokenApi_GetStatsResult as GetStatsResult, type tokenApi_GetTokenLiquiditySnapshotsResult as GetTokenLiquiditySnapshotsResult, type tokenApi_GetTokenResult as GetTokenResult, type tokenApi_GetTokenTradersResult as GetTokenTradersResult, type tokenApi_GetTokensResult as GetTokensResult, type tokenApi_GetTopHoldersResult as GetTopHoldersResult, type tokenApi_ListTokenResult as ListTokenResult, type tokenApi_SearchResult as SearchResult, tokenApi_getCandles as getCandles, tokenApi_getCreation as getCreation, tokenApi_getDevTokens as getDevTokens, tokenApi_getHolders as getHolders, tokenApi_getHoldersMulti as getHoldersMulti, tokenApi_getMarketData as getMarketData, tokenApi_getMarketDataMulti as getMarketDataMulti, tokenApi_getMetadata as getMetadata, tokenApi_getMetadataMulti as getMetadataMulti, tokenApi_getMintAndBurn as getMintAndBurn, tokenApi_getPools as getPools, tokenApi_getPriceByTime as getPriceByTime, tokenApi_getPrices as getPrices, tokenApi_getSecurity as getSecurity, tokenApi_getStats as getStats, tokenApi_getStatsMulti as getStatsMulti, tokenApi_getToken as getToken, tokenApi_getTokenLiquiditySnapshots as getTokenLiquiditySnapshots, tokenApi_getTokenTraders as getTokenTraders, tokenApi_getTokens as getTokens, tokenApi_getTopHolders as getTopHolders, tokenApi_listToken as listToken, tokenApi_search as search };
|
|
5351
|
+
export { type tokenApi_GetCandlesResult as GetCandlesResult, type tokenApi_GetCreationResult as GetCreationResult, type tokenApi_GetDevTokensResult as GetDevTokensResult, type tokenApi_GetHoldersMultiResult as GetHoldersMultiResult, type tokenApi_GetHoldersResult as GetHoldersResult, type tokenApi_GetMarketDataMultiResult as GetMarketDataMultiResult, type tokenApi_GetMarketDataResult as GetMarketDataResult, type tokenApi_GetMetadataMultiResult as GetMetadataMultiResult, type tokenApi_GetMetadataResult as GetMetadataResult, type tokenApi_GetMintAndBurnResult as GetMintAndBurnResult, type tokenApi_GetPairCandlesResult as GetPairCandlesResult, type tokenApi_GetPoolCandlesResult as GetPoolCandlesResult, type tokenApi_GetPoolsResult as GetPoolsResult, type tokenApi_GetPriceByTimeResult as GetPriceByTimeResult, type tokenApi_GetPricesResult as GetPricesResult, type tokenApi_GetSecurityResult as GetSecurityResult, type tokenApi_GetStatsMultiResult as GetStatsMultiResult, type tokenApi_GetStatsResult as GetStatsResult, type tokenApi_GetTokenLiquiditySnapshotsResult as GetTokenLiquiditySnapshotsResult, type tokenApi_GetTokenResult as GetTokenResult, type tokenApi_GetTokenTradersResult as GetTokenTradersResult, type tokenApi_GetTokenTransferTotalResult as GetTokenTransferTotalResult, type tokenApi_GetTokenTransfersResult as GetTokenTransfersResult, type tokenApi_GetTokensResult as GetTokensResult, type tokenApi_GetTopHoldersResult as GetTopHoldersResult, type tokenApi_ListTokenResult as ListTokenResult, type tokenApi_SearchResult as SearchResult, tokenApi_getCandles as getCandles, tokenApi_getCreation as getCreation, tokenApi_getDevTokens as getDevTokens, tokenApi_getHolders as getHolders, tokenApi_getHoldersMulti as getHoldersMulti, tokenApi_getMarketData as getMarketData, tokenApi_getMarketDataMulti as getMarketDataMulti, tokenApi_getMetadata as getMetadata, tokenApi_getMetadataMulti as getMetadataMulti, tokenApi_getMintAndBurn as getMintAndBurn, tokenApi_getPairCandles as getPairCandles, tokenApi_getPoolCandles as getPoolCandles, tokenApi_getPools as getPools, tokenApi_getPriceByTime as getPriceByTime, tokenApi_getPrices as getPrices, tokenApi_getSecurity as getSecurity, tokenApi_getStats as getStats, tokenApi_getStatsMulti as getStatsMulti, tokenApi_getToken as getToken, tokenApi_getTokenLiquiditySnapshots as getTokenLiquiditySnapshots, tokenApi_getTokenTraders as getTokenTraders, tokenApi_getTokenTransferTotal as getTokenTransferTotal, tokenApi_getTokenTransfers as getTokenTransfers, tokenApi_getTokens as getTokens, tokenApi_getTopHolders as getTopHolders, tokenApi_listToken as listToken, tokenApi_search as search };
|
|
4557
5352
|
}
|
|
4558
5353
|
|
|
4559
5354
|
/**
|
|
@@ -4650,48 +5445,120 @@ declare namespace rankingApi {
|
|
|
4650
5445
|
|
|
4651
5446
|
type SecondParameter$4<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
4652
5447
|
/**
|
|
4653
|
-
* CONTROLLER.WALLET.
|
|
4654
|
-
* @summary CONTROLLER.WALLET.
|
|
5448
|
+
* CONTROLLER.WALLET.GET_NET_WORTH_SUMMARY.DESCRIPTION
|
|
5449
|
+
* @summary CONTROLLER.WALLET.GET_NET_WORTH_SUMMARY.SUMMARY
|
|
4655
5450
|
*/
|
|
4656
|
-
declare const
|
|
5451
|
+
declare const getNetWorthSummary: (chain: ChainSymbol, params: GetNetWorthSummaryParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<WalletNetWorthSummaryDTO>;
|
|
4657
5452
|
/**
|
|
4658
|
-
* CONTROLLER.WALLET.
|
|
4659
|
-
* @summary CONTROLLER.WALLET.
|
|
5453
|
+
* CONTROLLER.WALLET.GET_PNL_BY_WALLET.DESCRIPTION
|
|
5454
|
+
* @summary CONTROLLER.WALLET.GET_PNL_BY_WALLET.SUMMARY
|
|
4660
5455
|
*/
|
|
4661
|
-
declare const
|
|
5456
|
+
declare const getPnlByWallet: (chain: ChainSymbol, params: GetPnlByWalletParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<PnlDetailsPage>;
|
|
4662
5457
|
/**
|
|
4663
|
-
* CONTROLLER.WALLET.
|
|
4664
|
-
* @summary CONTROLLER.WALLET.
|
|
5458
|
+
* CONTROLLER.WALLET.GET_FIRST_TX.DESCRIPTION
|
|
5459
|
+
* @summary CONTROLLER.WALLET.GET_FIRST_TX.SUMMARY
|
|
4665
5460
|
*/
|
|
4666
|
-
declare const
|
|
5461
|
+
declare const getWalletFirstTx: (chain: ChainSymbol, params: GetWalletFirstTxParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<WalletFirstTxDTO>;
|
|
4667
5462
|
/**
|
|
4668
5463
|
* CONTROLLER.WALLET.CALCULATE_PNL.DESCRIPTION
|
|
4669
5464
|
* @summary CONTROLLER.WALLET.CALCULATE_PNL.SUMMARY
|
|
4670
5465
|
*/
|
|
4671
5466
|
declare const calculatePnl: (chain: ChainSymbol, walletAddress: string, calculatePnlInput: CalculatePnlInput, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<BooleanResultDTO>;
|
|
5467
|
+
/**
|
|
5468
|
+
* CONTROLLER.WALLET.GET_NET_WORTH.DESCRIPTION
|
|
5469
|
+
* @summary CONTROLLER.WALLET.GET_NET_WORTH.SUMMARY
|
|
5470
|
+
*/
|
|
5471
|
+
declare const getNetWorth: (chain: ChainSymbol, walletAddress: string, params?: GetNetWorthParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<WalletNetWorthPage>;
|
|
5472
|
+
/**
|
|
5473
|
+
* CONTROLLER.WALLET.GET_TOKENS_BALANCE.DESCRIPTION
|
|
5474
|
+
* @summary CONTROLLER.WALLET.GET_TOKENS_BALANCE.SUMMARY
|
|
5475
|
+
*/
|
|
5476
|
+
declare const getTokensBalance: (chain: ChainSymbol, walletAddress: string, params?: GetTokensBalanceParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<TokensBalancePage>;
|
|
5477
|
+
/**
|
|
5478
|
+
* CONTROLLER.WALLET.GET_NET_WORTH_CHART.DESCRIPTION
|
|
5479
|
+
* @summary CONTROLLER.WALLET.GET_NET_WORTH_CHART.SUMMARY
|
|
5480
|
+
*/
|
|
5481
|
+
declare const getNetWorthChart: (chain: ChainSymbol, walletAddress: string, params?: GetNetWorthChartParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<WalletNetWorthChartDTO>;
|
|
5482
|
+
/**
|
|
5483
|
+
* CONTROLLER.WALLET.GET_NET_WORTH_DETAILS.DESCRIPTION
|
|
5484
|
+
* @summary CONTROLLER.WALLET.GET_NET_WORTH_DETAILS.SUMMARY
|
|
5485
|
+
*/
|
|
5486
|
+
declare const getNetWorthDetails: (chain: ChainSymbol, walletAddress: string, params?: GetNetWorthDetailsParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<WalletNetWorthDetailsPage>;
|
|
5487
|
+
/**
|
|
5488
|
+
* CONTROLLER.WALLET.GET_PNL_SUMMARY.DESCRIPTION
|
|
5489
|
+
* @summary CONTROLLER.WALLET.GET_PNL_SUMMARY.SUMMARY
|
|
5490
|
+
*/
|
|
5491
|
+
declare const getPnl: (chain: ChainSymbol, walletAddress: string, params?: GetPnlParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<WalletPnlSummaryDTO>;
|
|
5492
|
+
/**
|
|
5493
|
+
* CONTROLLER.WALLET.GET_PNL_DETAILS.DESCRIPTION
|
|
5494
|
+
* @summary CONTROLLER.WALLET.GET_PNL_DETAILS.SUMMARY
|
|
5495
|
+
*/
|
|
5496
|
+
declare const getPnlDetails: (chain: ChainSymbol, walletAddress: string, params?: GetPnlDetailsParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<PnlDetailsPage>;
|
|
5497
|
+
/**
|
|
5498
|
+
* CONTROLLER.WALLET.GET_PNL_BY_TOKEN.DESCRIPTION
|
|
5499
|
+
* @summary CONTROLLER.WALLET.GET_PNL_BY_TOKEN.SUMMARY
|
|
5500
|
+
*/
|
|
5501
|
+
declare const getPnlByToken: (chain: ChainSymbol, walletAddress: string, params: GetPnlByTokenParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<PnlDetailsPage>;
|
|
5502
|
+
/**
|
|
5503
|
+
* CONTROLLER.WALLET.GET_TRANSFERS.DESCRIPTION
|
|
5504
|
+
* @summary CONTROLLER.WALLET.GET_TRANSFERS.SUMMARY
|
|
5505
|
+
*/
|
|
5506
|
+
declare const getWalletTransfers: (chain: ChainSymbol, walletAddress: string, params?: GetWalletTransfersParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<TransactionHistoryPage>;
|
|
5507
|
+
/**
|
|
5508
|
+
* CONTROLLER.WALLET.GET_TRANSFER_TOTAL.DESCRIPTION
|
|
5509
|
+
* @summary CONTROLLER.WALLET.GET_TRANSFER_TOTAL.SUMMARY
|
|
5510
|
+
*/
|
|
5511
|
+
declare const getWalletTransferTotal: (chain: ChainSymbol, walletAddress: string, params?: GetWalletTransferTotalParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<TokenTransferTotalDTO>;
|
|
4672
5512
|
/**
|
|
4673
5513
|
* CONTROLLER.WALLET.GET_BALANCE_UPDATES.DESCRIPTION
|
|
4674
5514
|
* @summary CONTROLLER.WALLET.GET_BALANCE_UPDATES.SUMMARY
|
|
4675
5515
|
*/
|
|
4676
5516
|
declare const getBalanceUpdates: (chain: ChainSymbol, walletAddress: string, params?: GetBalanceUpdatesParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<BalanceUpdatePage>;
|
|
4677
|
-
type
|
|
4678
|
-
type
|
|
4679
|
-
type
|
|
5517
|
+
type GetNetWorthSummaryResult = NonNullable<Awaited<ReturnType<typeof getNetWorthSummary>>>;
|
|
5518
|
+
type GetPnlByWalletResult = NonNullable<Awaited<ReturnType<typeof getPnlByWallet>>>;
|
|
5519
|
+
type GetWalletFirstTxResult = NonNullable<Awaited<ReturnType<typeof getWalletFirstTx>>>;
|
|
4680
5520
|
type CalculatePnlResult = NonNullable<Awaited<ReturnType<typeof calculatePnl>>>;
|
|
5521
|
+
type GetNetWorthResult = NonNullable<Awaited<ReturnType<typeof getNetWorth>>>;
|
|
5522
|
+
type GetTokensBalanceResult = NonNullable<Awaited<ReturnType<typeof getTokensBalance>>>;
|
|
5523
|
+
type GetNetWorthChartResult = NonNullable<Awaited<ReturnType<typeof getNetWorthChart>>>;
|
|
5524
|
+
type GetNetWorthDetailsResult = NonNullable<Awaited<ReturnType<typeof getNetWorthDetails>>>;
|
|
5525
|
+
type GetPnlResult = NonNullable<Awaited<ReturnType<typeof getPnl>>>;
|
|
5526
|
+
type GetPnlDetailsResult = NonNullable<Awaited<ReturnType<typeof getPnlDetails>>>;
|
|
5527
|
+
type GetPnlByTokenResult = NonNullable<Awaited<ReturnType<typeof getPnlByToken>>>;
|
|
5528
|
+
type GetWalletTransfersResult = NonNullable<Awaited<ReturnType<typeof getWalletTransfers>>>;
|
|
5529
|
+
type GetWalletTransferTotalResult = NonNullable<Awaited<ReturnType<typeof getWalletTransferTotal>>>;
|
|
4681
5530
|
type GetBalanceUpdatesResult = NonNullable<Awaited<ReturnType<typeof getBalanceUpdates>>>;
|
|
4682
5531
|
|
|
4683
5532
|
type walletApi_CalculatePnlResult = CalculatePnlResult;
|
|
4684
|
-
type walletApi_GetBalanceResult = GetBalanceResult;
|
|
4685
5533
|
type walletApi_GetBalanceUpdatesResult = GetBalanceUpdatesResult;
|
|
5534
|
+
type walletApi_GetNetWorthChartResult = GetNetWorthChartResult;
|
|
5535
|
+
type walletApi_GetNetWorthDetailsResult = GetNetWorthDetailsResult;
|
|
5536
|
+
type walletApi_GetNetWorthResult = GetNetWorthResult;
|
|
5537
|
+
type walletApi_GetNetWorthSummaryResult = GetNetWorthSummaryResult;
|
|
5538
|
+
type walletApi_GetPnlByTokenResult = GetPnlByTokenResult;
|
|
5539
|
+
type walletApi_GetPnlByWalletResult = GetPnlByWalletResult;
|
|
5540
|
+
type walletApi_GetPnlDetailsResult = GetPnlDetailsResult;
|
|
4686
5541
|
type walletApi_GetPnlResult = GetPnlResult;
|
|
4687
|
-
type
|
|
5542
|
+
type walletApi_GetTokensBalanceResult = GetTokensBalanceResult;
|
|
5543
|
+
type walletApi_GetWalletFirstTxResult = GetWalletFirstTxResult;
|
|
5544
|
+
type walletApi_GetWalletTransferTotalResult = GetWalletTransferTotalResult;
|
|
5545
|
+
type walletApi_GetWalletTransfersResult = GetWalletTransfersResult;
|
|
4688
5546
|
declare const walletApi_calculatePnl: typeof calculatePnl;
|
|
4689
|
-
declare const walletApi_getBalance: typeof getBalance;
|
|
4690
5547
|
declare const walletApi_getBalanceUpdates: typeof getBalanceUpdates;
|
|
5548
|
+
declare const walletApi_getNetWorth: typeof getNetWorth;
|
|
5549
|
+
declare const walletApi_getNetWorthChart: typeof getNetWorthChart;
|
|
5550
|
+
declare const walletApi_getNetWorthDetails: typeof getNetWorthDetails;
|
|
5551
|
+
declare const walletApi_getNetWorthSummary: typeof getNetWorthSummary;
|
|
4691
5552
|
declare const walletApi_getPnl: typeof getPnl;
|
|
4692
|
-
declare const
|
|
5553
|
+
declare const walletApi_getPnlByToken: typeof getPnlByToken;
|
|
5554
|
+
declare const walletApi_getPnlByWallet: typeof getPnlByWallet;
|
|
5555
|
+
declare const walletApi_getPnlDetails: typeof getPnlDetails;
|
|
5556
|
+
declare const walletApi_getTokensBalance: typeof getTokensBalance;
|
|
5557
|
+
declare const walletApi_getWalletFirstTx: typeof getWalletFirstTx;
|
|
5558
|
+
declare const walletApi_getWalletTransferTotal: typeof getWalletTransferTotal;
|
|
5559
|
+
declare const walletApi_getWalletTransfers: typeof getWalletTransfers;
|
|
4693
5560
|
declare namespace walletApi {
|
|
4694
|
-
export { type walletApi_CalculatePnlResult as CalculatePnlResult, type
|
|
5561
|
+
export { type walletApi_CalculatePnlResult as CalculatePnlResult, type walletApi_GetBalanceUpdatesResult as GetBalanceUpdatesResult, type walletApi_GetNetWorthChartResult as GetNetWorthChartResult, type walletApi_GetNetWorthDetailsResult as GetNetWorthDetailsResult, type walletApi_GetNetWorthResult as GetNetWorthResult, type walletApi_GetNetWorthSummaryResult as GetNetWorthSummaryResult, type walletApi_GetPnlByTokenResult as GetPnlByTokenResult, type walletApi_GetPnlByWalletResult as GetPnlByWalletResult, type walletApi_GetPnlDetailsResult as GetPnlDetailsResult, type walletApi_GetPnlResult as GetPnlResult, type walletApi_GetTokensBalanceResult as GetTokensBalanceResult, type walletApi_GetWalletFirstTxResult as GetWalletFirstTxResult, type walletApi_GetWalletTransferTotalResult as GetWalletTransferTotalResult, type walletApi_GetWalletTransfersResult as GetWalletTransfersResult, walletApi_calculatePnl as calculatePnl, walletApi_getBalanceUpdates as getBalanceUpdates, walletApi_getNetWorth as getNetWorth, walletApi_getNetWorthChart as getNetWorthChart, walletApi_getNetWorthDetails as getNetWorthDetails, walletApi_getNetWorthSummary as getNetWorthSummary, walletApi_getPnl as getPnl, walletApi_getPnlByToken as getPnlByToken, walletApi_getPnlByWallet as getPnlByWallet, walletApi_getPnlDetails as getPnlDetails, walletApi_getTokensBalance as getTokensBalance, walletApi_getWalletFirstTx as getWalletFirstTx, walletApi_getWalletTransferTotal as getWalletTransferTotal, walletApi_getWalletTransfers as getWalletTransfers };
|
|
4695
5562
|
}
|
|
4696
5563
|
|
|
4697
5564
|
/**
|
|
@@ -5239,7 +6106,8 @@ interface WsSocialMedia {
|
|
|
5239
6106
|
youtube?: string;
|
|
5240
6107
|
bitbucket?: string;
|
|
5241
6108
|
}
|
|
5242
|
-
interface
|
|
6109
|
+
interface WsCandle {
|
|
6110
|
+
address: string;
|
|
5243
6111
|
open: string;
|
|
5244
6112
|
close: string;
|
|
5245
6113
|
high: string;
|
|
@@ -5249,6 +6117,7 @@ interface WsTokenCandle {
|
|
|
5249
6117
|
time: number;
|
|
5250
6118
|
number: number;
|
|
5251
6119
|
}
|
|
6120
|
+
type WsPriceType = "usd" | "native";
|
|
5252
6121
|
interface WsTradeActivity {
|
|
5253
6122
|
tokenAddress: string;
|
|
5254
6123
|
timestamp: number;
|
|
@@ -5386,12 +6255,52 @@ declare class StreamApi {
|
|
|
5386
6255
|
subscribe<T = unknown>(channel: string, fn: (data: T) => void, filter?: string, methodName?: string): Unsubscribable;
|
|
5387
6256
|
unsubscribe<T = unknown>(channel: string, fn: (data: T) => void): void;
|
|
5388
6257
|
private formatScientificNotation;
|
|
5389
|
-
|
|
6258
|
+
/**
|
|
6259
|
+
* Parse candle data from WebSocket message
|
|
6260
|
+
*/
|
|
6261
|
+
private parseCandleData;
|
|
6262
|
+
/**
|
|
6263
|
+
* Subscribe to token candles (K-line)
|
|
6264
|
+
* Channel: dex-candle:{chain}_{tokenAddress}_{resolution} (USD)
|
|
6265
|
+
* Channel: dex-candle-in-native:{chain}_{tokenAddress}_{resolution} (Native)
|
|
6266
|
+
* @param priceType - "usd" (default) or "native"
|
|
6267
|
+
*/
|
|
6268
|
+
subscribeTokenCandles({ chain, tokenAddress, resolution, callback, filter, priceType, }: {
|
|
5390
6269
|
chain: string;
|
|
5391
6270
|
tokenAddress: string;
|
|
5392
6271
|
resolution: Resolution;
|
|
5393
|
-
callback: (data:
|
|
6272
|
+
callback: (data: WsCandle) => void;
|
|
6273
|
+
filter?: string;
|
|
6274
|
+
priceType?: WsPriceType;
|
|
6275
|
+
}): Unsubscribable;
|
|
6276
|
+
/**
|
|
6277
|
+
* Subscribe to pool candles (K-line)
|
|
6278
|
+
* Channel: dex-pool-candle:{chain}_{poolAddress}_{resolution} (USD)
|
|
6279
|
+
* Channel: dex-pool-candle-in-native:{chain}_{poolAddress}_{resolution} (Native)
|
|
6280
|
+
* @param priceType - "usd" (default) or "native"
|
|
6281
|
+
*/
|
|
6282
|
+
subscribePoolCandles({ chain, poolAddress, resolution, callback, filter, priceType, }: {
|
|
6283
|
+
chain: string;
|
|
6284
|
+
poolAddress: string;
|
|
6285
|
+
resolution: Resolution;
|
|
6286
|
+
callback: (data: WsCandle) => void;
|
|
6287
|
+
filter?: string;
|
|
6288
|
+
priceType?: WsPriceType;
|
|
6289
|
+
}): Unsubscribable;
|
|
6290
|
+
/**
|
|
6291
|
+
* Subscribe to pair candles (K-line)
|
|
6292
|
+
* Channel: dex-pair-candle:{chain}_{pairAddress}_{resolution} (USD)
|
|
6293
|
+
* Channel: dex-pair-candle-in-native:{chain}_{pairAddress}_{resolution} (Native)
|
|
6294
|
+
* @param pairAddress - format: {tokenA}-{tokenB}
|
|
6295
|
+
* @param priceType - "usd" (default) or "native"
|
|
6296
|
+
*/
|
|
6297
|
+
subscribePairCandles({ chain, pairAddress, resolution, callback, filter, priceType, }: {
|
|
6298
|
+
chain: string;
|
|
6299
|
+
pairAddress: string;
|
|
6300
|
+
resolution: Resolution;
|
|
6301
|
+
callback: (data: WsCandle) => void;
|
|
5394
6302
|
filter?: string;
|
|
6303
|
+
priceType?: WsPriceType;
|
|
5395
6304
|
}): Unsubscribable;
|
|
5396
6305
|
subscribeTokenStats({ chain, tokenAddress, callback, filter, }: {
|
|
5397
6306
|
chain: string;
|
|
@@ -5567,4 +6476,4 @@ interface PostOptions {
|
|
|
5567
6476
|
idempotencyKey?: string;
|
|
5568
6477
|
}
|
|
5569
6478
|
|
|
5570
|
-
export { SwapRouteInputSwapMode as $, streaming as A, type StreamingResult as B, ChainStreamClient as C, type JobDTO as D, type JobStreamingDTOData as E, type JobStreamingDTO as F, type GetResult as G, type BlockchainDTO as H, ChainSymbol as I, type JobDTOResult as J, type BlockchainLatestBlockDTO as K, SendTxInputSubmitType as L, type SendTxInputOptions as M, type SendTxInput as N, type SendTxResponse as O, type GasPriceResponse as P, type EstimateGasLimitInput as Q, type EstimateGasLimitResponse as R, StreamApi as S, type TokenProvider as T, type Unsubscribable as U, SwapInputDex as V, WsTokenActivityType as W, SwapInputSwapMode as X, type SwapInput as Y, type SwapReply as Z, SwapRouteInputDex as _, WsChannelType as a, type DexPoolSnapshotDTO as a$, type SwapRouteInput as a0, type SwapRouteResponseRouteInfo as a1, type SwapRouteResponse as a2, type DexQuoteResponse as a3, CreateTokenInputDex as a4, type CreateTokenInputExtra as a5, type CreateTokenInput as a6, type CreateTokenReply as a7, type DexDTO as a8, type DexPage as a9, type DexPoolDTO as aA, type TokenMarketData as aB, type TokenExtension as aC, type Token as aD, type TokenPageCountsByProtocols as aE, type TokenPage as aF, FilterConditionField as aG, type FilterCondition as aH, type TokenMetadata as aI, type DexPoolPage as aJ, type TokenHolder as aK, type TokenHolderPage as aL, Resolution as aM, type Candle as aN, type TokenPriceDTO as aO, type TokenPricePage as aP, TokenCreationDTOType as aQ, type TokenCreationDTO as aR, type TokenCreationPage as aS, type TokenListPage as aT, type DevTokenDTO as aU, TokenTraderTag as aV, type TokenTraderOnchainCreatedAt as aW, type TokenTrader as aX, type TokenLiquiditySnapshotDTO as aY, type TokenLiquiditySnapshotPage as aZ, type DexPoolTokenSnapshotDTO as a_, LinkLabel as aa, type Link as ab, MoonshotCreateTokenInputDex as ac, MoonshotCreateTokenInputMigrationDex as ad, type MoonshotCreateTokenInput as ae, type MoonshotCreateTokenReplyExtra as af, type MoonshotCreateTokenReply as ag, type MoonshotSubmitCreateTokenInputExtra as ah, type MoonshotSubmitCreateTokenInput as ai, PumpCreateTokenInputDex as aj, PumpCreateTokenInputMigrationDex as ak, type PumpCreateTokenInput as al, type PumpCreateTokenReplyExtra as am, type PumpCreateTokenReply as an, type TradeDetailDTO as ao, type TradePage as ap, type TopTradersDTO as aq, type TopTradersPage as ar, type TokenCreatorsDTO as as, type TokenExtraDTO as at, type TokenSocialMediasDTO as au, type TokenStat as av, type DexPoolTokenLiquidity as aw, DexPoolDTOType as ax, DexPoolDTOVersion as ay, DexPoolDTOLiquidityModel as az, WsMetricType as b, type GetActivitiesParams as b$, type DexPoolSnapshotPage as b0, type WalletPnlDTO as b1, type WalletBalanceDetailDTO as b2, type WalletBalancesDTO as b3, type CalculatePnlInput as b4, type BooleanResultDTO as b5, BalanceTokenType as b6, BalanceChangeType as b7, type BalanceUpdateDTO as b8, type BalanceUpdatePage as b9, type ChainalysisAddressIdentification as bA, type WithdrawalAddressIdentificationsResponseDTO as bB, type OnChainActivity as bC, type AlteryaIdentification as bD, type WithdrawalFraudAssessmentResponseDTO as bE, type RegisterAddressRequest as bF, type RegisterAddressResponseDTO as bG, type AddressExposure as bH, type AddressRiskResponseDTO as bI, type EndpointResponseMetadata as bJ, type EndpointResponse as bK, type EndpointListResponse as bL, type EndpointSecretResponse as bM, type EndpointOperationResponse as bN, type CreateEndpointInputMetadata as bO, type CreateEndpointInput as bP, type UpdateEndpointInputMetadata as bQ, type UpdateEndpointInput as bR, TradeType as bS, type TradeEvent as bT, type QuoteParams as bU, QuoteDex as bV, type ListDexParams as bW, type MoonshotSubmitCreateToken200 as bX, type GetTradesParams as bY, GetTradesDirection as bZ, GetTradesType as b_, CreateRedPacketInputChain as ba, type CreateRedPacketInput as bb, type CreateRedPacketReply as bc, ClaimRedPacketInputChain as bd, type ClaimRedPacketInput as be, type RedPacketReply as bf, Chain as bg, type RedPacketDTO as bh, type RedPacketClaimDTO as bi, type RedPacketClaimsPage as bj, type RedPacketsPage as bk, type RedPacketSendTxInput as bl, type RedPacketSendTxResponse as bm, KYTRegisterTransferRequestNetwork as bn, KYTRegisterTransferRequestDirection as bo, type KYTRegisterTransferRequest as bp, type TransferBaseResponseDTO as bq, type DirectExposureDetail as br, type TransferDirectExposureResponseDTO as bs, type AlertDetail as bt, type TransferAlertsResponseDTO as bu, type NetworkIdentificationOrg as bv, type TransferNetworkIdentificationsResponseDTO as bw, KYTRegisterWithdrawalRequestNetwork as bx, type KYTRegisterWithdrawalRequest as by, type WithdrawalBaseResponseDTO as bz, type WsTokenActivity as c, type GetClaimsParams as c$, GetActivitiesDirection as c0, GetActivitiesType as c1, type GetTopTradersParams as c2, GetTopTradersDirection as c3, GetTopTradersTimeFrame as c4, GetTopTradersSortType as c5, GetTopTradersSortBy as c6, type SearchParams as c7, SearchSort as c8, SearchSortBy as c9, ListTokenSortBy as cA, type GetSecurity200 as cB, type GetTokenLiquiditySnapshotsParams as cC, type GetDexpoolSnapshotsParams as cD, type GetHotTokensParams as cE, GetHotTokensSortBy as cF, GetHotTokensSortDirection as cG, GetHotTokensTag as cH, type GetNewTokensParams as cI, GetNewTokensSortBy as cJ, GetNewTokensSortDirection as cK, GetNewTokensTag as cL, type GetStocksTokensParams as cM, GetStocksTokensSortBy as cN, GetStocksTokensSortDirection as cO, GetStocksTokensTag as cP, type GetFinalStretchTokensParams as cQ, GetFinalStretchTokensSortBy as cR, GetFinalStretchTokensSortDirection as cS, GetFinalStretchTokensTag as cT, type GetMigratedTokensParams as cU, GetMigratedTokensSortBy as cV, GetMigratedTokensSortDirection as cW, GetMigratedTokensTag as cX, type GetPnlParams as cY, type GetBalanceParams as cZ, type GetBalanceUpdatesParams as c_, type GetTokensParams as ca, GetTokensSortBy as cb, GetTokensSortDirection as cc, type GetMetadataMultiParams as cd, type GetMetadataMulti200 as ce, type GetPoolsParams as cf, GetPoolsDirection as cg, GetPoolsSortBy as ch, GetPoolsSortDirection as ci, type GetStatsMultiParams as cj, type GetStatsMulti200 as ck, type GetHoldersParams as cl, GetHoldersDirection as cm, type GetHoldersMultiParams as cn, type GetCandlesParams as co, type GetMarketDataMultiParams as cp, type GetMarketDataMulti200 as cq, type GetPricesParams as cr, GetPricesDirection as cs, type GetPriceByTimeParams as ct, type GetMintAndBurnParams as cu, GetMintAndBurnDirection as cv, GetMintAndBurnType as cw, type ListTokenParams as cx, ListTokenDirection as cy, ListTokenSort as cz, type WsTokenStat as d, getTokenLiquiditySnapshots as d$, type GetRedpacketsParams as d0, GetRedpacketsChain as d1, type GetClaimsByAddressParams as d2, type GetRedpacketsByAddressParams as d3, type ListEndpointsParams as d4, ListEndpointsOrder as d5, presign as d6, type PresignResult as d7, getSupportedBlockchains as d8, getLatestBlock as d9, getActivities as dA, getTopTraders as dB, type GetTradesResult as dC, type GetActivitiesResult as dD, type GetTopTradersResult as dE, search as dF, getTokens as dG, getToken as dH, getMetadata as dI, getMetadataMulti as dJ, getPools as dK, getStats as dL, getStatsMulti as dM, getHolders as dN, getHoldersMulti as dO, getCandles as dP, getTopHolders as dQ, getMarketData as dR, getMarketDataMulti as dS, getPrices as dT, getPriceByTime as dU, getCreation as dV, getMintAndBurn as dW, listToken as dX, getSecurity as dY, getDevTokens as dZ, getTokenTraders as d_, type GetSupportedBlockchainsResult as da, type GetLatestBlockResult as db, send as dc, getGasPrice as dd, getGasLimit as de, type SendResult as df, type GetGasPriceResult as dg, type GetGasLimitResult as dh, swap as di, route as dj, quote as dk, createToken as dl, listDex as dm, type SwapResult as dn, type RouteResult as dp, type QuoteResult as dq, type CreateTokenResult as dr, type ListDexResult as ds, moonshotCreateToken as dt, moonshotSubmitCreateToken as du, type MoonshotCreateTokenResult as dv, type MoonshotSubmitCreateTokenResult as dw, pumpfunCreateToken as dx, type PumpfunCreateTokenResult as dy, getTrades as dz, type WsTokenHolder as e, watchlistAdd as e$, type SearchResult as e0, type GetTokensResult as e1, type GetTokenResult as e2, type GetMetadataResult as e3, type GetMetadataMultiResult as e4, type GetPoolsResult as e5, type GetStatsResult as e6, type GetStatsMultiResult as e7, type GetHoldersResult as e8, type GetHoldersMultiResult as e9, type GetMigratedTokensResult as eA, getPnl as eB, getPnlStats as eC, getBalance as eD, calculatePnl as eE, getBalanceUpdates as eF, type GetPnlResult as eG, type GetPnlStatsResult as eH, type GetBalanceResult as eI, type CalculatePnlResult as eJ, type GetBalanceUpdatesResult as eK, createRedpacket as eL, claimRedpacket as eM, getRedpacket as eN, getClaims as eO, getRedpackets as eP, getClaimsByAddress as eQ, getRedpacketsByAddress as eR, redpacketSend as eS, type CreateRedpacketResult as eT, type ClaimRedpacketResult as eU, type GetRedpacketResult as eV, type GetClaimsResult as eW, type GetRedpacketsResult as eX, type GetClaimsByAddressResult as eY, type GetRedpacketsByAddressResult as eZ, type RedpacketSendResult as e_, type GetCandlesResult as ea, type GetTopHoldersResult as eb, type GetMarketDataResult as ec, type GetMarketDataMultiResult as ed, type GetPricesResult as ee, type GetPriceByTimeResult as ef, type GetCreationResult as eg, type GetMintAndBurnResult as eh, type ListTokenResult as ei, type GetSecurityResult as ej, type GetDevTokensResult as ek, type GetTokenTradersResult as el, type GetTokenLiquiditySnapshotsResult as em, getDexpool as en, getDexpoolSnapshots as eo, type GetDexpoolResult as ep, type GetDexpoolSnapshotsResult as eq, getHotTokens as er, getNewTokens as es, getStocksTokens as et, getFinalStretchTokens as eu, getMigratedTokens as ev, type GetHotTokensResult as ew, type GetNewTokensResult as ex, type GetStocksTokensResult as ey, type GetFinalStretchTokensResult as ez, type WsWalletBalance as f, type WatchlistAddResult as f0, registerTransfer as f1, getTransferSummary as f2, getTransferDirectExposure as f3, getTransferAlerts as f4, getTransferNetworkIdentifications as f5, registerWithdrawal as f6, getWithdrawalSummary as f7, getWithdrawalDirectExposure as f8, getWithdrawalAlerts as f9, type ListEndpointsResult as fA, type CreateEndpointResult as fB, type UpdateEndpointResult as fC, type GetEndpointResult as fD, type DeleteEndpointResult as fE, type GetEndpointSecretResult as fF, type RotateEndpointSecretResult as fG, type PostOptions as fH, getWithdrawalAddressIdentifications as fa, getWithdrawalNetworkIdentifications as fb, getWithdrawalFraudAssessment as fc, registerAddress as fd, getAddressRisk as fe, type RegisterTransferResult as ff, type GetTransferSummaryResult as fg, type GetTransferDirectExposureResult as fh, type GetTransferAlertsResult as fi, type GetTransferNetworkIdentificationsResult as fj, type RegisterWithdrawalResult as fk, type GetWithdrawalSummaryResult as fl, type GetWithdrawalDirectExposureResult as fm, type GetWithdrawalAlertsResult as fn, type GetWithdrawalAddressIdentificationsResult as fo, type GetWithdrawalNetworkIdentificationsResult as fp, type GetWithdrawalFraudAssessmentResult as fq, type RegisterAddressResult as fr, type GetAddressRiskResult as fs, listEndpoints as ft, createEndpoint as fu, updateEndpoint as fv, getEndpoint as fw, deleteEndpoint as fx, getEndpointSecret as fy, rotateEndpointSecret as fz, type WsWalletPnl as g, type WsNewToken as h, type WsTokenSupply as i, type WsDexPoolBalance as j, type WsTokenLiquidity as k, type WsTokenMaxLiquidity as l, type WsTokenTotalLiquidity as m, type WsDexProtocol as n, type WsTokenBondingCurve as o, type WsTokenMetadata as p, type WsSocialMedia as q, type WsTokenCandle as r, type WsTradeActivity as s, type WsWalletTokenPnl as t, WsRankingType as u, WsDex as v, type WsRankingTokenList as w, type ChainStreamClientOptions as x, type ChainStreamRequestContext as y, get as z };
|
|
6479
|
+
export { SwapRouteInputDex as $, get as A, streaming as B, ChainStreamClient as C, type StreamingResult as D, type JobDTO as E, type JobStreamingDTOData as F, type GetResult as G, type JobStreamingDTO as H, type BlockchainDTO as I, type JobDTOResult as J, ChainSymbol as K, type BlockchainLatestBlockDTO as L, SendTxInputSubmitType as M, type SendTxInputOptions as N, type SendTxInput as O, type SendTxResponse as P, type GasPriceResponse as Q, type EstimateGasLimitInput as R, StreamApi as S, type TokenProvider as T, type Unsubscribable as U, type EstimateGasLimitResponse as V, WsTokenActivityType as W, SwapInputDex as X, SwapInputSwapMode as Y, type SwapInput as Z, type SwapReply as _, WsChannelType as a, type TokenTraderOnchainCreatedAt as a$, SwapRouteInputSwapMode as a0, type SwapRouteInput as a1, type SwapRouteResponseRouteInfo as a2, type SwapRouteResponse as a3, type DexQuoteResponse as a4, CreateTokenInputDex as a5, type CreateTokenInputExtra as a6, type CreateTokenInput as a7, type CreateTokenReply as a8, type DexDTO as a9, type DexPoolTokenLiquidity as aA, DexPoolDTOType as aB, DexPoolDTOVersion as aC, DexPoolDTOLiquidityModel as aD, type DexPoolDTO as aE, type TokenMarketData as aF, type TokenExtension as aG, type Token as aH, type TokenPageCountsByProtocols as aI, type TokenPage as aJ, FilterConditionField as aK, type FilterCondition as aL, type TokenMetadata as aM, type DexPoolPage as aN, type TokenHolder as aO, type TokenHolderPage as aP, Resolution as aQ, PriceType as aR, type Candle as aS, type TokenPriceDTO as aT, type TokenPricePage as aU, TokenCreationDTOType as aV, type TokenCreationDTO as aW, type TokenCreationPage as aX, type TokenListPage as aY, type DevTokenDTO as aZ, TokenTraderTag as a_, type DexPage as aa, LinkLabel as ab, type Link as ac, MoonshotCreateTokenInputDex as ad, MoonshotCreateTokenInputMigrationDex as ae, type MoonshotCreateTokenInput as af, type MoonshotCreateTokenReplyExtra as ag, type MoonshotCreateTokenReply as ah, type MoonshotSubmitCreateTokenInputExtra as ai, type MoonshotSubmitCreateTokenInput as aj, PumpCreateTokenInputDex as ak, PumpCreateTokenInputMigrationDex as al, type PumpCreateTokenInput as am, type PumpCreateTokenReplyExtra as an, type PumpCreateTokenReply as ao, type TradeDetailDTO as ap, type TradePage as aq, type TopTradersDTO as ar, type TopTradersPage as as, TraderPnlResolution as at, type TraderGainersLosersItemDTO as au, type TraderGainersLosersPage as av, type TokenCreatorsDTO as aw, type TokenExtraDTO as ax, type TokenSocialMediasDTO as ay, type TokenStat as az, WsMetricType as b, type WithdrawalAddressIdentificationsResponseDTO as b$, type TokenTrader as b0, type TokenLiquiditySnapshotDTO as b1, type TokenLiquiditySnapshotPage as b2, TokenTransferItemDTOFlow as b3, type TokenTransferItemDTO as b4, type TokenTransferPage as b5, type TokenTransferTotalDTO as b6, type DexPoolTokenSnapshotDTO as b7, type DexPoolSnapshotDTO as b8, type DexPoolSnapshotPage as b9, CreateRedPacketInputChain as bA, type CreateRedPacketInput as bB, type CreateRedPacketReply as bC, ClaimRedPacketInputChain as bD, type ClaimRedPacketInput as bE, type RedPacketReply as bF, Chain as bG, type RedPacketDTO as bH, type RedPacketClaimDTO as bI, type RedPacketClaimsPage as bJ, type RedPacketsPage as bK, type RedPacketSendTxInput as bL, type RedPacketSendTxResponse as bM, KYTRegisterTransferRequestNetwork as bN, KYTRegisterTransferRequestDirection as bO, type KYTRegisterTransferRequest as bP, type TransferBaseResponseDTO as bQ, type DirectExposureDetail as bR, type TransferDirectExposureResponseDTO as bS, type AlertDetail as bT, type TransferAlertsResponseDTO as bU, type NetworkIdentificationOrg as bV, type TransferNetworkIdentificationsResponseDTO as bW, KYTRegisterWithdrawalRequestNetwork as bX, type KYTRegisterWithdrawalRequest as bY, type WithdrawalBaseResponseDTO as bZ, type ChainalysisAddressIdentification as b_, type WalletNetWorthSummaryDTOWallets as ba, type WalletNetWorthSummaryDTO as bb, type PnlDetailSummaryDTO as bc, type PnlDetailItemDTO as bd, type PnlDetailsPage as be, type WalletFirstTxDTOWallets as bf, type WalletFirstTxDTO as bg, type CalculatePnlInput as bh, type BooleanResultDTO as bi, type WalletNetWorthItemDTO as bj, type WalletNetWorthPage as bk, type TokensBalancePage as bl, type WalletNetWorthHistoryItemDTO as bm, type WalletNetWorthChartDTO as bn, type WalletNetWorthDetailsPage as bo, PnlResolution as bp, WalletPnlSummaryDTOResolution as bq, type WalletPnlSummaryDTO as br, TransactionHistoryItemDTOStatus as bs, TransactionHistoryItemDTOMainAction as bt, type TransactionHistoryItemDTO as bu, type TransactionHistoryPage as bv, BalanceTokenType as bw, BalanceChangeType as bx, type BalanceUpdateDTO as by, type BalanceUpdatePage as bz, type WsTokenActivity as c, GetPricesDirection as c$, type OnChainActivity as c0, type AlteryaIdentification as c1, type WithdrawalFraudAssessmentResponseDTO as c2, type RegisterAddressRequest as c3, type RegisterAddressResponseDTO as c4, type AddressExposure as c5, type AddressRiskResponseDTO as c6, EndpointResponseChannelsItem as c7, type EndpointResponseMetadata as c8, type EndpointResponse as c9, type GetTraderGainersLosersParams as cA, GetTraderGainersLosersDirection as cB, GetTraderGainersLosersSortType as cC, type SearchParams as cD, SearchDirection as cE, SearchSort as cF, SearchSortBy as cG, type GetTokensParams as cH, GetTokensSortBy as cI, GetTokensSortDirection as cJ, type GetMetadataMultiParams as cK, type GetMetadataMulti200 as cL, type GetPoolsParams as cM, GetPoolsDirection as cN, GetPoolsSortBy as cO, GetPoolsSortDirection as cP, type GetStatsMultiParams as cQ, type GetStatsMulti200 as cR, type GetHoldersParams as cS, GetHoldersDirection as cT, type GetHoldersMultiParams as cU, type GetCandlesParams as cV, type GetPoolCandlesParams as cW, type GetPairCandlesParams as cX, type GetMarketDataMultiParams as cY, type GetMarketDataMulti200 as cZ, type GetPricesParams as c_, type EndpointListResponse as ca, type EndpointSecretResponse as cb, type EndpointOperationResponse as cc, CreateEndpointInputChannelsItem as cd, type CreateEndpointInputMetadata as ce, type CreateEndpointInput as cf, UpdateEndpointInputChannelsItem as cg, type UpdateEndpointInputMetadata as ch, type UpdateEndpointInput as ci, TradeType as cj, type TradeEvent as ck, type QuoteParams as cl, QuoteDex as cm, type ListDexParams as cn, type MoonshotSubmitCreateToken200 as co, type GetTradesParams as cp, GetTradesDirection as cq, GetTradesType as cr, type GetActivitiesParams as cs, GetActivitiesDirection as ct, GetActivitiesType as cu, type GetTopTradersParams as cv, GetTopTradersDirection as cw, GetTopTradersTimeFrame as cx, GetTopTradersSortType as cy, GetTopTradersSortBy as cz, type WsTokenStat as d, type GetClaimsByAddressParams as d$, type GetPriceByTimeParams as d0, type GetMintAndBurnParams as d1, GetMintAndBurnDirection as d2, GetMintAndBurnType as d3, type ListTokenParams as d4, ListTokenDirection as d5, ListTokenSort as d6, ListTokenSortBy as d7, type GetSecurity200 as d8, type GetTokenLiquiditySnapshotsParams as d9, GetMigratedTokensSortDirection as dA, GetMigratedTokensTag as dB, type GetNetWorthSummaryParams as dC, type GetPnlByWalletParams as dD, GetPnlByWalletDirection as dE, type GetWalletFirstTxParams as dF, type GetNetWorthParams as dG, GetNetWorthDirection as dH, type GetTokensBalanceParams as dI, GetTokensBalanceDirection as dJ, type GetNetWorthChartParams as dK, type GetNetWorthDetailsParams as dL, GetNetWorthDetailsDirection as dM, type GetPnlParams as dN, type GetPnlDetailsParams as dO, GetPnlDetailsDirection as dP, type GetPnlByTokenParams as dQ, GetPnlByTokenDirection as dR, type GetWalletTransfersParams as dS, GetWalletTransfersDirection as dT, type GetWalletTransferTotalParams as dU, GetWalletTransferTotalDirection as dV, type GetBalanceUpdatesParams as dW, GetBalanceUpdatesDirection as dX, type GetClaimsParams as dY, type GetRedpacketsParams as dZ, GetRedpacketsChain as d_, GetTokenLiquiditySnapshotsDirection as da, type GetTokenTransfersParams as db, GetTokenTransfersDirection as dc, type GetTokenTransferTotalParams as dd, GetTokenTransferTotalDirection as de, type GetDexpoolSnapshotsParams as df, GetDexpoolSnapshotsDirection as dg, type GetHotTokensParams as dh, GetHotTokensSortBy as di, GetHotTokensSortDirection as dj, GetHotTokensTag as dk, type GetNewTokensParams as dl, GetNewTokensSortBy as dm, GetNewTokensSortDirection as dn, GetNewTokensTag as dp, type GetStocksTokensParams as dq, GetStocksTokensSortBy as dr, GetStocksTokensSortDirection as ds, GetStocksTokensTag as dt, type GetFinalStretchTokensParams as du, GetFinalStretchTokensSortBy as dv, GetFinalStretchTokensSortDirection as dw, GetFinalStretchTokensTag as dx, type GetMigratedTokensParams as dy, GetMigratedTokensSortBy as dz, type WsTokenHolder as e, getTokenLiquiditySnapshots as e$, type GetRedpacketsByAddressParams as e0, type ListEndpointsParams as e1, ListEndpointsOrder as e2, presign as e3, type PresignResult as e4, getSupportedBlockchains as e5, getLatestBlock as e6, type GetSupportedBlockchainsResult as e7, type GetLatestBlockResult as e8, send as e9, type GetActivitiesResult as eA, type GetTopTradersResult as eB, type GetTraderGainersLosersResult as eC, search as eD, getTokens as eE, getToken as eF, getMetadata as eG, getMetadataMulti as eH, getPools as eI, getStats as eJ, getStatsMulti as eK, getHolders as eL, getHoldersMulti as eM, getCandles as eN, getPoolCandles as eO, getPairCandles as eP, getTopHolders as eQ, getMarketData as eR, getMarketDataMulti as eS, getPrices as eT, getPriceByTime as eU, getCreation as eV, getMintAndBurn as eW, listToken as eX, getSecurity as eY, getDevTokens as eZ, getTokenTraders as e_, getGasPrice as ea, getGasLimit as eb, type SendResult as ec, type GetGasPriceResult as ed, type GetGasLimitResult as ee, swap as ef, route as eg, quote as eh, createToken as ei, listDex as ej, type SwapResult as ek, type RouteResult as el, type QuoteResult as em, type CreateTokenResult as en, type ListDexResult as eo, moonshotCreateToken as ep, moonshotSubmitCreateToken as eq, type MoonshotCreateTokenResult as er, type MoonshotSubmitCreateTokenResult as es, pumpfunCreateToken as et, type PumpfunCreateTokenResult as eu, getTrades as ev, getActivities as ew, getTopTraders as ex, getTraderGainersLosers as ey, type GetTradesResult as ez, type WsWalletBalance as f, type GetNetWorthChartResult as f$, getTokenTransfers as f0, getTokenTransferTotal as f1, type SearchResult as f2, type GetTokensResult as f3, type GetTokenResult as f4, type GetMetadataResult as f5, type GetMetadataMultiResult as f6, type GetPoolsResult as f7, type GetStatsResult as f8, type GetStatsMultiResult as f9, getFinalStretchTokens as fA, getMigratedTokens as fB, type GetHotTokensResult as fC, type GetNewTokensResult as fD, type GetStocksTokensResult as fE, type GetFinalStretchTokensResult as fF, type GetMigratedTokensResult as fG, getNetWorthSummary as fH, getPnlByWallet as fI, getWalletFirstTx as fJ, calculatePnl as fK, getNetWorth as fL, getTokensBalance as fM, getNetWorthChart as fN, getNetWorthDetails as fO, getPnl as fP, getPnlDetails as fQ, getPnlByToken as fR, getWalletTransfers as fS, getWalletTransferTotal as fT, getBalanceUpdates as fU, type GetNetWorthSummaryResult as fV, type GetPnlByWalletResult as fW, type GetWalletFirstTxResult as fX, type CalculatePnlResult as fY, type GetNetWorthResult as fZ, type GetTokensBalanceResult as f_, type GetHoldersResult as fa, type GetHoldersMultiResult as fb, type GetCandlesResult as fc, type GetPoolCandlesResult as fd, type GetPairCandlesResult as fe, type GetTopHoldersResult as ff, type GetMarketDataResult as fg, type GetMarketDataMultiResult as fh, type GetPricesResult as fi, type GetPriceByTimeResult as fj, type GetCreationResult as fk, type GetMintAndBurnResult as fl, type ListTokenResult as fm, type GetSecurityResult as fn, type GetDevTokensResult as fo, type GetTokenTradersResult as fp, type GetTokenLiquiditySnapshotsResult as fq, type GetTokenTransfersResult as fr, type GetTokenTransferTotalResult as fs, getDexpool as ft, getDexpoolSnapshots as fu, type GetDexpoolResult as fv, type GetDexpoolSnapshotsResult as fw, getHotTokens as fx, getNewTokens as fy, getStocksTokens as fz, type WsWalletPnl as g, type GetEndpointResult as g$, type GetNetWorthDetailsResult as g0, type GetPnlResult as g1, type GetPnlDetailsResult as g2, type GetPnlByTokenResult as g3, type GetWalletTransfersResult as g4, type GetWalletTransferTotalResult as g5, type GetBalanceUpdatesResult as g6, createRedpacket as g7, claimRedpacket as g8, getRedpacket as g9, getWithdrawalFraudAssessment as gA, registerAddress as gB, getAddressRisk as gC, type RegisterTransferResult as gD, type GetTransferSummaryResult as gE, type GetTransferDirectExposureResult as gF, type GetTransferAlertsResult as gG, type GetTransferNetworkIdentificationsResult as gH, type RegisterWithdrawalResult as gI, type GetWithdrawalSummaryResult as gJ, type GetWithdrawalDirectExposureResult as gK, type GetWithdrawalAlertsResult as gL, type GetWithdrawalAddressIdentificationsResult as gM, type GetWithdrawalNetworkIdentificationsResult as gN, type GetWithdrawalFraudAssessmentResult as gO, type RegisterAddressResult as gP, type GetAddressRiskResult as gQ, listEndpoints as gR, createEndpoint as gS, updateEndpoint as gT, getEndpoint as gU, deleteEndpoint as gV, getEndpointSecret as gW, rotateEndpointSecret as gX, type ListEndpointsResult as gY, type CreateEndpointResult as gZ, type UpdateEndpointResult as g_, getClaims as ga, getRedpackets as gb, getClaimsByAddress as gc, getRedpacketsByAddress as gd, redpacketSend as ge, type CreateRedpacketResult as gf, type ClaimRedpacketResult as gg, type GetRedpacketResult as gh, type GetClaimsResult as gi, type GetRedpacketsResult as gj, type GetClaimsByAddressResult as gk, type GetRedpacketsByAddressResult as gl, type RedpacketSendResult as gm, watchlistAdd as gn, type WatchlistAddResult as go, registerTransfer as gp, getTransferSummary as gq, getTransferDirectExposure as gr, getTransferAlerts as gs, getTransferNetworkIdentifications as gt, registerWithdrawal as gu, getWithdrawalSummary as gv, getWithdrawalDirectExposure as gw, getWithdrawalAlerts as gx, getWithdrawalAddressIdentifications as gy, getWithdrawalNetworkIdentifications as gz, type WsNewToken as h, type DeleteEndpointResult as h0, type GetEndpointSecretResult as h1, type RotateEndpointSecretResult as h2, type PostOptions as h3, type WsTokenSupply as i, type WsDexPoolBalance as j, type WsTokenLiquidity as k, type WsTokenMaxLiquidity as l, type WsTokenTotalLiquidity as m, type WsDexProtocol as n, type WsTokenBondingCurve as o, type WsTokenMetadata as p, type WsSocialMedia as q, type WsCandle as r, type WsPriceType as s, type WsTradeActivity as t, type WsWalletTokenPnl as u, WsRankingType as v, WsDex as w, type WsRankingTokenList as x, type ChainStreamClientOptions as y, type ChainStreamRequestContext as z };
|