@chainstream-io/sdk 0.2.7 → 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-kxqV2g1Q.d.cts → chainstream-KjjsTvPO.d.cts} +912 -142
- package/dist/{chainstream-kxqV2g1Q.d.ts → chainstream-KjjsTvPO.d.ts} +912 -142
- package/dist/chainstream.cjs +92 -8
- 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 +92 -8
- package/dist/chainstream.mjs.map +1 -1
- package/dist/index.cjs +258 -12
- 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 +222 -10
- package/dist/index.mjs.map +1 -1
- package/dist/stream/index.d.cts +1 -1
- package/dist/stream/index.d.ts +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 */
|
|
@@ -1533,11 +1565,73 @@ interface TokenLiquiditySnapshotPage {
|
|
|
1533
1565
|
/** DTO.PAGE.HAS_PREV */
|
|
1534
1566
|
hasPrev: boolean;
|
|
1535
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
|
+
}
|
|
1536
1630
|
interface DexPoolTokenSnapshotDTO {
|
|
1537
1631
|
/** DTO.DEXPOOL.TOKEN_ADDRESS */
|
|
1538
1632
|
tokenAddress: string;
|
|
1539
1633
|
/** DTO.DEXPOOL.TOKEN_DECIMALS */
|
|
1540
|
-
|
|
1634
|
+
decimals: number;
|
|
1541
1635
|
/** DTO.DEXPOOL.VAULT_AMOUNT */
|
|
1542
1636
|
vaultAmount: string;
|
|
1543
1637
|
/** DTO.DEXPOOL.AMOUNT_IN_USD */
|
|
@@ -1581,113 +1675,129 @@ interface DexPoolSnapshotPage {
|
|
|
1581
1675
|
/** DTO.PAGE.HAS_PREV */
|
|
1582
1676
|
hasPrev: boolean;
|
|
1583
1677
|
}
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
/** DTO.WALLET.
|
|
1592
|
-
|
|
1593
|
-
/** DTO.WALLET.
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
/** DTO.WALLET.
|
|
1598
|
-
|
|
1599
|
-
/** DTO.WALLET.
|
|
1600
|
-
lastTime: number;
|
|
1601
|
-
/** DTO.WALLET.PNL.BALANCE */
|
|
1602
|
-
balance: string;
|
|
1603
|
-
/** DTO.WALLET.PNL.BUY_AMOUNT */
|
|
1604
|
-
buyAmount: string;
|
|
1605
|
-
/** DTO.WALLET.PNL.BUY_AMOUNT_USD */
|
|
1606
|
-
buyAmountInUsd: string;
|
|
1607
|
-
/** 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 */
|
|
1608
1694
|
buys: string;
|
|
1609
|
-
/** DTO.WALLET.
|
|
1610
|
-
sellAmount: string;
|
|
1611
|
-
/** DTO.WALLET.PNL.SELL_AMOUNT_USD */
|
|
1612
|
-
sellAmountInUsd: string;
|
|
1613
|
-
/** DTO.WALLET.PNL.SELLS */
|
|
1695
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY.SELLS */
|
|
1614
1696
|
sells: string;
|
|
1615
|
-
/** DTO.WALLET.
|
|
1616
|
-
|
|
1617
|
-
/** DTO.WALLET.
|
|
1618
|
-
|
|
1619
|
-
/** DTO.WALLET.
|
|
1620
|
-
|
|
1621
|
-
/** DTO.WALLET.
|
|
1622
|
-
|
|
1623
|
-
/** 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 */
|
|
1624
1714
|
realizedProfitInUsd: string;
|
|
1625
|
-
/** DTO.WALLET.
|
|
1715
|
+
/** DTO.WALLET.PNL_DETAIL.SUMMARY.REALIZED_PROFIT_RATIO */
|
|
1626
1716
|
realizedProfitRatio: string;
|
|
1627
|
-
/** DTO.WALLET.
|
|
1628
|
-
|
|
1629
|
-
/** DTO.WALLET.
|
|
1630
|
-
|
|
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;
|
|
1631
1723
|
}
|
|
1632
|
-
interface
|
|
1633
|
-
/** DTO.WALLET.
|
|
1724
|
+
interface PnlDetailItemDTO {
|
|
1725
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.TOKEN_ADDRESS */
|
|
1634
1726
|
tokenAddress: string;
|
|
1635
|
-
/** DTO.WALLET.
|
|
1636
|
-
amount: string;
|
|
1637
|
-
/** DTO.WALLET.BALANCE.AMOUNT_IN_USD */
|
|
1638
|
-
valueInUsd: string;
|
|
1639
|
-
/** DTO.WALLET.BALANCE.TOKEN_NAME */
|
|
1640
|
-
name: string;
|
|
1641
|
-
/** DTO.WALLET.BALANCE.TOKEN_SYMBOL */
|
|
1727
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.SYMBOL */
|
|
1642
1728
|
symbol: string;
|
|
1643
|
-
/** DTO.WALLET.
|
|
1644
|
-
|
|
1645
|
-
/** DTO.WALLET.
|
|
1646
|
-
|
|
1647
|
-
/** 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 */
|
|
1648
1740
|
priceInUsd: string;
|
|
1649
|
-
/** DTO.WALLET.
|
|
1650
|
-
|
|
1651
|
-
/** DTO.WALLET.
|
|
1652
|
-
unrealizedProfitInUsd: string;
|
|
1653
|
-
/** DTO.WALLET.BALANCE.UNREALIZED_PROFIT_RATIO */
|
|
1654
|
-
unrealizedProfitRatio: string;
|
|
1655
|
-
/** DTO.WALLET.BALANCE.OPEN_TIME */
|
|
1656
|
-
openTime: number;
|
|
1657
|
-
/** DTO.WALLET.BALANCE.CLOSE_TIME */
|
|
1658
|
-
closeTime: number;
|
|
1659
|
-
/** DTO.WALLET.BALANCE.BUYS */
|
|
1741
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.CURRENT_VALUE */
|
|
1742
|
+
currentValue: string;
|
|
1743
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.BUYS */
|
|
1660
1744
|
buys: string;
|
|
1661
|
-
/** DTO.WALLET.
|
|
1662
|
-
buyAmount: string;
|
|
1663
|
-
/** DTO.WALLET.BALANCE.BUY_AMOUNT_USD */
|
|
1664
|
-
buyAmountInUsd: string;
|
|
1665
|
-
/** DTO.WALLET.BALANCE.SELLS */
|
|
1745
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.SELLS */
|
|
1666
1746
|
sells: string;
|
|
1667
|
-
/** 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 */
|
|
1668
1752
|
sellAmount: string;
|
|
1669
|
-
/** 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 */
|
|
1670
1756
|
sellAmountInUsd: string;
|
|
1671
|
-
/** DTO.WALLET.
|
|
1672
|
-
|
|
1673
|
-
/** DTO.WALLET.
|
|
1674
|
-
|
|
1675
|
-
/** 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 */
|
|
1676
1762
|
realizedProfitInUsd: string;
|
|
1677
|
-
/** DTO.WALLET.
|
|
1763
|
+
/** DTO.WALLET.PNL_DETAIL.ITEM.REALIZED_PROFIT_RATIO */
|
|
1678
1764
|
realizedProfitRatio: string;
|
|
1679
|
-
/** DTO.WALLET.
|
|
1680
|
-
|
|
1681
|
-
/** DTO.WALLET.
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
interface WalletBalancesDTO {
|
|
1685
|
-
/** DTO.WALLET.BALANCES.TOTAL_BALANCES_IN_USD */
|
|
1686
|
-
totalBalancesInUsd: string;
|
|
1687
|
-
/** 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 */
|
|
1688
1770
|
totalProfitInUsd: string;
|
|
1689
|
-
/** DTO.WALLET.
|
|
1690
|
-
|
|
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;
|
|
1691
1801
|
}
|
|
1692
1802
|
interface CalculatePnlInput {
|
|
1693
1803
|
/** DTO.WALLET.CALCULATE_PNL.INPUT.TOKEN_ADDRESSES */
|
|
@@ -1697,6 +1807,244 @@ interface BooleanResultDTO {
|
|
|
1697
1807
|
/** DTO.BOOLEAN_RESULT.SUCCESS */
|
|
1698
1808
|
success: boolean;
|
|
1699
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
|
+
}
|
|
1700
2048
|
type BalanceTokenType = (typeof BalanceTokenType)[keyof typeof BalanceTokenType];
|
|
1701
2049
|
declare const BalanceTokenType: {
|
|
1702
2050
|
readonly SOL: "SOL";
|
|
@@ -2578,7 +2926,51 @@ declare const GetTopTradersSortBy: {
|
|
|
2578
2926
|
readonly tradeAmount: "tradeAmount";
|
|
2579
2927
|
readonly tradeCount: "tradeCount";
|
|
2580
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
|
+
};
|
|
2581
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;
|
|
2582
2974
|
/**
|
|
2583
2975
|
* DTO.TOKEN.SEARCH.CHAINS
|
|
2584
2976
|
*/
|
|
@@ -2587,10 +2979,6 @@ type SearchParams = {
|
|
|
2587
2979
|
* DTO.TOKEN.SEARCH.QUERY
|
|
2588
2980
|
*/
|
|
2589
2981
|
q?: string;
|
|
2590
|
-
/**
|
|
2591
|
-
* DTO.TOKEN.SEARCH.LIMIT
|
|
2592
|
-
*/
|
|
2593
|
-
limit?: number;
|
|
2594
2982
|
/**
|
|
2595
2983
|
* DTO.TOKEN.SEARCH.SORT_DIRECTION
|
|
2596
2984
|
*/
|
|
@@ -2599,15 +2987,16 @@ type SearchParams = {
|
|
|
2599
2987
|
* DTO.TOKEN.SEARCH.PROTOCOLS
|
|
2600
2988
|
*/
|
|
2601
2989
|
protocols?: string[];
|
|
2602
|
-
/**
|
|
2603
|
-
* DTO.PAGE.CURSOR
|
|
2604
|
-
*/
|
|
2605
|
-
cursor?: string;
|
|
2606
2990
|
/**
|
|
2607
2991
|
* DTO.TOKEN.SEARCH.SORT_BY
|
|
2608
2992
|
*/
|
|
2609
2993
|
sortBy?: SearchSortBy;
|
|
2610
2994
|
};
|
|
2995
|
+
type SearchDirection = (typeof SearchDirection)[keyof typeof SearchDirection];
|
|
2996
|
+
declare const SearchDirection: {
|
|
2997
|
+
readonly next: "next";
|
|
2998
|
+
readonly prev: "prev";
|
|
2999
|
+
};
|
|
2611
3000
|
type SearchSort = (typeof SearchSort)[keyof typeof SearchSort];
|
|
2612
3001
|
declare const SearchSort: {
|
|
2613
3002
|
readonly asc: "asc";
|
|
@@ -3527,31 +3916,103 @@ type GetSecurity200 = {
|
|
|
3527
3916
|
};
|
|
3528
3917
|
type GetTokenLiquiditySnapshotsParams = {
|
|
3529
3918
|
/**
|
|
3530
|
-
* DTO.
|
|
3531
|
-
*/
|
|
3532
|
-
time?: number;
|
|
3533
|
-
/**
|
|
3534
|
-
* DTO.PAGE.CURSOR
|
|
3919
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
3535
3920
|
*/
|
|
3536
3921
|
cursor?: string;
|
|
3537
3922
|
/**
|
|
3538
3923
|
* DTO.PAGE.LIMIT
|
|
3539
3924
|
*/
|
|
3540
3925
|
limit?: number;
|
|
3541
|
-
};
|
|
3542
|
-
type GetDexpoolSnapshotsParams = {
|
|
3543
3926
|
/**
|
|
3544
|
-
* DTO.
|
|
3927
|
+
* DTO.PAGE.DIRECTION
|
|
3545
3928
|
*/
|
|
3546
|
-
|
|
3929
|
+
direction?: GetTokenLiquiditySnapshotsDirection;
|
|
3547
3930
|
/**
|
|
3548
|
-
* DTO.
|
|
3931
|
+
* DTO.TOKEN.LIQUIDITY_SNAPSHOT.TIME
|
|
3932
|
+
*/
|
|
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 = {
|
|
3941
|
+
/**
|
|
3942
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
3943
|
+
*/
|
|
3944
|
+
cursor?: string;
|
|
3945
|
+
/**
|
|
3946
|
+
* DTO.PAGE.LIMIT
|
|
3947
|
+
*/
|
|
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;
|
|
3961
|
+
};
|
|
3962
|
+
type GetTokenTransfersDirection = (typeof GetTokenTransfersDirection)[keyof typeof GetTokenTransfersDirection];
|
|
3963
|
+
declare const GetTokenTransfersDirection: {
|
|
3964
|
+
readonly next: "next";
|
|
3965
|
+
readonly prev: "prev";
|
|
3966
|
+
};
|
|
3967
|
+
type GetTokenTransferTotalParams = {
|
|
3968
|
+
/**
|
|
3969
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
3970
|
+
*/
|
|
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 = {
|
|
3995
|
+
/**
|
|
3996
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
3549
3997
|
*/
|
|
3550
3998
|
cursor?: string;
|
|
3551
3999
|
/**
|
|
3552
4000
|
* DTO.PAGE.LIMIT
|
|
3553
4001
|
*/
|
|
3554
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";
|
|
3555
4016
|
};
|
|
3556
4017
|
type GetHotTokensParams = {
|
|
3557
4018
|
/**
|
|
@@ -4033,19 +4494,235 @@ declare const GetMigratedTokensTag: {
|
|
|
4033
4494
|
readonly bonk_fun: "bonk_fun";
|
|
4034
4495
|
readonly moonit_fun: "moonit_fun";
|
|
4035
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
|
+
};
|
|
4036
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;
|
|
4037
4664
|
/**
|
|
4038
4665
|
* GLOBAL.TOKENADDRESS.DESCRIPTION
|
|
4039
4666
|
*/
|
|
4040
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;
|
|
4041
4676
|
};
|
|
4042
|
-
type
|
|
4677
|
+
type GetWalletTransfersDirection = (typeof GetWalletTransfersDirection)[keyof typeof GetWalletTransfersDirection];
|
|
4678
|
+
declare const GetWalletTransfersDirection: {
|
|
4679
|
+
readonly next: "next";
|
|
4680
|
+
readonly prev: "prev";
|
|
4681
|
+
};
|
|
4682
|
+
type GetWalletTransferTotalParams = {
|
|
4683
|
+
/**
|
|
4684
|
+
* DTO.PAGE.CURSOR.DESCRIPTION
|
|
4685
|
+
*/
|
|
4686
|
+
cursor?: string;
|
|
4043
4687
|
/**
|
|
4044
|
-
* DTO.
|
|
4688
|
+
* DTO.PAGE.LIMIT
|
|
4689
|
+
*/
|
|
4690
|
+
limit?: number;
|
|
4691
|
+
/**
|
|
4692
|
+
* DTO.PAGE.DIRECTION
|
|
4693
|
+
*/
|
|
4694
|
+
direction?: GetWalletTransferTotalDirection;
|
|
4695
|
+
/**
|
|
4696
|
+
* GLOBAL.TOKENADDRESS.DESCRIPTION
|
|
4045
4697
|
*/
|
|
4046
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";
|
|
4047
4712
|
};
|
|
4048
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;
|
|
4049
4726
|
/**
|
|
4050
4727
|
* DTO.WALLET.BALANCE_UPDATE.QUERY.TOKEN_ADDRESS
|
|
4051
4728
|
*/
|
|
@@ -4066,14 +4743,11 @@ type GetBalanceUpdatesParams = {
|
|
|
4066
4743
|
* DTO.WALLET.BALANCE_UPDATE.QUERY.CHANGE_TYPE
|
|
4067
4744
|
*/
|
|
4068
4745
|
changeType?: BalanceChangeType;
|
|
4069
|
-
|
|
4070
|
-
|
|
4071
|
-
|
|
4072
|
-
|
|
4073
|
-
|
|
4074
|
-
* DTO.PAGE.LIMIT
|
|
4075
|
-
*/
|
|
4076
|
-
limit?: number;
|
|
4746
|
+
};
|
|
4747
|
+
type GetBalanceUpdatesDirection = (typeof GetBalanceUpdatesDirection)[keyof typeof GetBalanceUpdatesDirection];
|
|
4748
|
+
declare const GetBalanceUpdatesDirection: {
|
|
4749
|
+
readonly next: "next";
|
|
4750
|
+
readonly prev: "prev";
|
|
4077
4751
|
};
|
|
4078
4752
|
type GetClaimsParams = {
|
|
4079
4753
|
/**
|
|
@@ -4425,18 +5099,26 @@ declare const getActivities: (chain: ChainSymbol, params?: GetActivitiesParams,
|
|
|
4425
5099
|
* @summary CONTROLLER.TRADE.GET.TOP_TRADERS.SUMMARY
|
|
4426
5100
|
*/
|
|
4427
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>;
|
|
4428
5107
|
type GetTradesResult = NonNullable<Awaited<ReturnType<typeof getTrades>>>;
|
|
4429
5108
|
type GetActivitiesResult = NonNullable<Awaited<ReturnType<typeof getActivities>>>;
|
|
4430
5109
|
type GetTopTradersResult = NonNullable<Awaited<ReturnType<typeof getTopTraders>>>;
|
|
5110
|
+
type GetTraderGainersLosersResult = NonNullable<Awaited<ReturnType<typeof getTraderGainersLosers>>>;
|
|
4431
5111
|
|
|
4432
5112
|
type tradeApi_GetActivitiesResult = GetActivitiesResult;
|
|
4433
5113
|
type tradeApi_GetTopTradersResult = GetTopTradersResult;
|
|
5114
|
+
type tradeApi_GetTraderGainersLosersResult = GetTraderGainersLosersResult;
|
|
4434
5115
|
type tradeApi_GetTradesResult = GetTradesResult;
|
|
4435
5116
|
declare const tradeApi_getActivities: typeof getActivities;
|
|
4436
5117
|
declare const tradeApi_getTopTraders: typeof getTopTraders;
|
|
5118
|
+
declare const tradeApi_getTraderGainersLosers: typeof getTraderGainersLosers;
|
|
4437
5119
|
declare const tradeApi_getTrades: typeof getTrades;
|
|
4438
5120
|
declare namespace tradeApi {
|
|
4439
|
-
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 };
|
|
4440
5122
|
}
|
|
4441
5123
|
|
|
4442
5124
|
/**
|
|
@@ -4573,6 +5255,16 @@ declare const getTokenTraders: (chain: ChainSymbol, tokenAddress: string, tag: T
|
|
|
4573
5255
|
* @summary CONTROLLER.TOKEN.GET_LIQUIDITY_SNAPSHOTS.SUMMARY
|
|
4574
5256
|
*/
|
|
4575
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>;
|
|
4576
5268
|
type SearchResult = NonNullable<Awaited<ReturnType<typeof search>>>;
|
|
4577
5269
|
type GetTokensResult = NonNullable<Awaited<ReturnType<typeof getTokens>>>;
|
|
4578
5270
|
type GetTokenResult = NonNullable<Awaited<ReturnType<typeof getToken>>>;
|
|
@@ -4598,6 +5290,8 @@ type GetSecurityResult = NonNullable<Awaited<ReturnType<typeof getSecurity>>>;
|
|
|
4598
5290
|
type GetDevTokensResult = NonNullable<Awaited<ReturnType<typeof getDevTokens>>>;
|
|
4599
5291
|
type GetTokenTradersResult = NonNullable<Awaited<ReturnType<typeof getTokenTraders>>>;
|
|
4600
5292
|
type GetTokenLiquiditySnapshotsResult = NonNullable<Awaited<ReturnType<typeof getTokenLiquiditySnapshots>>>;
|
|
5293
|
+
type GetTokenTransfersResult = NonNullable<Awaited<ReturnType<typeof getTokenTransfers>>>;
|
|
5294
|
+
type GetTokenTransferTotalResult = NonNullable<Awaited<ReturnType<typeof getTokenTransferTotal>>>;
|
|
4601
5295
|
|
|
4602
5296
|
type tokenApi_GetCandlesResult = GetCandlesResult;
|
|
4603
5297
|
type tokenApi_GetCreationResult = GetCreationResult;
|
|
@@ -4620,6 +5314,8 @@ type tokenApi_GetStatsResult = GetStatsResult;
|
|
|
4620
5314
|
type tokenApi_GetTokenLiquiditySnapshotsResult = GetTokenLiquiditySnapshotsResult;
|
|
4621
5315
|
type tokenApi_GetTokenResult = GetTokenResult;
|
|
4622
5316
|
type tokenApi_GetTokenTradersResult = GetTokenTradersResult;
|
|
5317
|
+
type tokenApi_GetTokenTransferTotalResult = GetTokenTransferTotalResult;
|
|
5318
|
+
type tokenApi_GetTokenTransfersResult = GetTokenTransfersResult;
|
|
4623
5319
|
type tokenApi_GetTokensResult = GetTokensResult;
|
|
4624
5320
|
type tokenApi_GetTopHoldersResult = GetTopHoldersResult;
|
|
4625
5321
|
type tokenApi_ListTokenResult = ListTokenResult;
|
|
@@ -4645,12 +5341,14 @@ declare const tokenApi_getStatsMulti: typeof getStatsMulti;
|
|
|
4645
5341
|
declare const tokenApi_getToken: typeof getToken;
|
|
4646
5342
|
declare const tokenApi_getTokenLiquiditySnapshots: typeof getTokenLiquiditySnapshots;
|
|
4647
5343
|
declare const tokenApi_getTokenTraders: typeof getTokenTraders;
|
|
5344
|
+
declare const tokenApi_getTokenTransferTotal: typeof getTokenTransferTotal;
|
|
5345
|
+
declare const tokenApi_getTokenTransfers: typeof getTokenTransfers;
|
|
4648
5346
|
declare const tokenApi_getTokens: typeof getTokens;
|
|
4649
5347
|
declare const tokenApi_getTopHolders: typeof getTopHolders;
|
|
4650
5348
|
declare const tokenApi_listToken: typeof listToken;
|
|
4651
5349
|
declare const tokenApi_search: typeof search;
|
|
4652
5350
|
declare namespace tokenApi {
|
|
4653
|
-
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_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_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 };
|
|
4654
5352
|
}
|
|
4655
5353
|
|
|
4656
5354
|
/**
|
|
@@ -4747,48 +5445,120 @@ declare namespace rankingApi {
|
|
|
4747
5445
|
|
|
4748
5446
|
type SecondParameter$4<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
4749
5447
|
/**
|
|
4750
|
-
* CONTROLLER.WALLET.
|
|
4751
|
-
* @summary CONTROLLER.WALLET.
|
|
5448
|
+
* CONTROLLER.WALLET.GET_NET_WORTH_SUMMARY.DESCRIPTION
|
|
5449
|
+
* @summary CONTROLLER.WALLET.GET_NET_WORTH_SUMMARY.SUMMARY
|
|
4752
5450
|
*/
|
|
4753
|
-
declare const
|
|
5451
|
+
declare const getNetWorthSummary: (chain: ChainSymbol, params: GetNetWorthSummaryParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<WalletNetWorthSummaryDTO>;
|
|
4754
5452
|
/**
|
|
4755
|
-
* CONTROLLER.WALLET.
|
|
4756
|
-
* @summary CONTROLLER.WALLET.
|
|
5453
|
+
* CONTROLLER.WALLET.GET_PNL_BY_WALLET.DESCRIPTION
|
|
5454
|
+
* @summary CONTROLLER.WALLET.GET_PNL_BY_WALLET.SUMMARY
|
|
4757
5455
|
*/
|
|
4758
|
-
declare const
|
|
5456
|
+
declare const getPnlByWallet: (chain: ChainSymbol, params: GetPnlByWalletParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<PnlDetailsPage>;
|
|
4759
5457
|
/**
|
|
4760
|
-
* CONTROLLER.WALLET.
|
|
4761
|
-
* @summary CONTROLLER.WALLET.
|
|
5458
|
+
* CONTROLLER.WALLET.GET_FIRST_TX.DESCRIPTION
|
|
5459
|
+
* @summary CONTROLLER.WALLET.GET_FIRST_TX.SUMMARY
|
|
4762
5460
|
*/
|
|
4763
|
-
declare const
|
|
5461
|
+
declare const getWalletFirstTx: (chain: ChainSymbol, params: GetWalletFirstTxParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<WalletFirstTxDTO>;
|
|
4764
5462
|
/**
|
|
4765
5463
|
* CONTROLLER.WALLET.CALCULATE_PNL.DESCRIPTION
|
|
4766
5464
|
* @summary CONTROLLER.WALLET.CALCULATE_PNL.SUMMARY
|
|
4767
5465
|
*/
|
|
4768
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>;
|
|
4769
5512
|
/**
|
|
4770
5513
|
* CONTROLLER.WALLET.GET_BALANCE_UPDATES.DESCRIPTION
|
|
4771
5514
|
* @summary CONTROLLER.WALLET.GET_BALANCE_UPDATES.SUMMARY
|
|
4772
5515
|
*/
|
|
4773
5516
|
declare const getBalanceUpdates: (chain: ChainSymbol, walletAddress: string, params?: GetBalanceUpdatesParams, options?: SecondParameter$4<typeof chainstreamApiClient>) => Promise<BalanceUpdatePage>;
|
|
4774
|
-
type
|
|
4775
|
-
type
|
|
4776
|
-
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>>>;
|
|
4777
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>>>;
|
|
4778
5530
|
type GetBalanceUpdatesResult = NonNullable<Awaited<ReturnType<typeof getBalanceUpdates>>>;
|
|
4779
5531
|
|
|
4780
5532
|
type walletApi_CalculatePnlResult = CalculatePnlResult;
|
|
4781
|
-
type walletApi_GetBalanceResult = GetBalanceResult;
|
|
4782
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;
|
|
4783
5541
|
type walletApi_GetPnlResult = GetPnlResult;
|
|
4784
|
-
type
|
|
5542
|
+
type walletApi_GetTokensBalanceResult = GetTokensBalanceResult;
|
|
5543
|
+
type walletApi_GetWalletFirstTxResult = GetWalletFirstTxResult;
|
|
5544
|
+
type walletApi_GetWalletTransferTotalResult = GetWalletTransferTotalResult;
|
|
5545
|
+
type walletApi_GetWalletTransfersResult = GetWalletTransfersResult;
|
|
4785
5546
|
declare const walletApi_calculatePnl: typeof calculatePnl;
|
|
4786
|
-
declare const walletApi_getBalance: typeof getBalance;
|
|
4787
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;
|
|
4788
5552
|
declare const walletApi_getPnl: typeof getPnl;
|
|
4789
|
-
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;
|
|
4790
5560
|
declare namespace walletApi {
|
|
4791
|
-
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 };
|
|
4792
5562
|
}
|
|
4793
5563
|
|
|
4794
5564
|
/**
|
|
@@ -5706,4 +6476,4 @@ interface PostOptions {
|
|
|
5706
6476
|
idempotencyKey?: string;
|
|
5707
6477
|
}
|
|
5708
6478
|
|
|
5709
|
-
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 TokenLiquiditySnapshotPage 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, DexPoolDTOLiquidityModel as aA, type DexPoolDTO as aB, type TokenMarketData as aC, type TokenExtension as aD, type Token as aE, type TokenPageCountsByProtocols as aF, type TokenPage as aG, FilterConditionField as aH, type FilterCondition as aI, type TokenMetadata as aJ, type DexPoolPage as aK, type TokenHolder as aL, type TokenHolderPage as aM, Resolution as aN, PriceType as aO, type Candle as aP, type TokenPriceDTO as aQ, type TokenPricePage as aR, TokenCreationDTOType as aS, type TokenCreationDTO as aT, type TokenCreationPage as aU, type TokenListPage as aV, type DevTokenDTO as aW, TokenTraderTag as aX, type TokenTraderOnchainCreatedAt as aY, type TokenTrader as aZ, type TokenLiquiditySnapshotDTO 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, type TokenCreatorsDTO as at, type TokenExtraDTO as au, type TokenSocialMediasDTO as av, type TokenStat as aw, type DexPoolTokenLiquidity as ax, DexPoolDTOType as ay, DexPoolDTOVersion as az, WsMetricType as b, type ListDexParams as b$, type DexPoolTokenSnapshotDTO as b0, type DexPoolSnapshotDTO as b1, type DexPoolSnapshotPage as b2, type WalletPnlDTO as b3, type WalletBalanceDetailDTO as b4, type WalletBalancesDTO as b5, type CalculatePnlInput as b6, type BooleanResultDTO as b7, BalanceTokenType as b8, BalanceChangeType as b9, type KYTRegisterWithdrawalRequest as bA, type WithdrawalBaseResponseDTO as bB, type ChainalysisAddressIdentification as bC, type WithdrawalAddressIdentificationsResponseDTO as bD, type OnChainActivity as bE, type AlteryaIdentification as bF, type WithdrawalFraudAssessmentResponseDTO as bG, type RegisterAddressRequest as bH, type RegisterAddressResponseDTO as bI, type AddressExposure as bJ, type AddressRiskResponseDTO as bK, EndpointResponseChannelsItem as bL, type EndpointResponseMetadata as bM, type EndpointResponse as bN, type EndpointListResponse as bO, type EndpointSecretResponse as bP, type EndpointOperationResponse as bQ, CreateEndpointInputChannelsItem as bR, type CreateEndpointInputMetadata as bS, type CreateEndpointInput as bT, UpdateEndpointInputChannelsItem as bU, type UpdateEndpointInputMetadata as bV, type UpdateEndpointInput as bW, TradeType as bX, type TradeEvent as bY, type QuoteParams as bZ, QuoteDex as b_, type BalanceUpdateDTO as ba, type BalanceUpdatePage as bb, CreateRedPacketInputChain as bc, type CreateRedPacketInput as bd, type CreateRedPacketReply as be, ClaimRedPacketInputChain as bf, type ClaimRedPacketInput as bg, type RedPacketReply as bh, Chain as bi, type RedPacketDTO as bj, type RedPacketClaimDTO as bk, type RedPacketClaimsPage as bl, type RedPacketsPage as bm, type RedPacketSendTxInput as bn, type RedPacketSendTxResponse as bo, KYTRegisterTransferRequestNetwork as bp, KYTRegisterTransferRequestDirection as bq, type KYTRegisterTransferRequest as br, type TransferBaseResponseDTO as bs, type DirectExposureDetail as bt, type TransferDirectExposureResponseDTO as bu, type AlertDetail as bv, type TransferAlertsResponseDTO as bw, type NetworkIdentificationOrg as bx, type TransferNetworkIdentificationsResponseDTO as by, KYTRegisterWithdrawalRequestNetwork as bz, type WsTokenActivity as c, type GetMigratedTokensParams as c$, type MoonshotSubmitCreateToken200 as c0, type GetTradesParams as c1, GetTradesDirection as c2, GetTradesType as c3, type GetActivitiesParams as c4, GetActivitiesDirection as c5, GetActivitiesType as c6, type GetTopTradersParams as c7, GetTopTradersDirection as c8, GetTopTradersTimeFrame as c9, type GetPriceByTimeParams as cA, type GetMintAndBurnParams as cB, GetMintAndBurnDirection as cC, GetMintAndBurnType as cD, type ListTokenParams as cE, ListTokenDirection as cF, ListTokenSort as cG, ListTokenSortBy as cH, type GetSecurity200 as cI, type GetTokenLiquiditySnapshotsParams as cJ, type GetDexpoolSnapshotsParams as cK, type GetHotTokensParams as cL, GetHotTokensSortBy as cM, GetHotTokensSortDirection as cN, GetHotTokensTag as cO, type GetNewTokensParams as cP, GetNewTokensSortBy as cQ, GetNewTokensSortDirection as cR, GetNewTokensTag as cS, type GetStocksTokensParams as cT, GetStocksTokensSortBy as cU, GetStocksTokensSortDirection as cV, GetStocksTokensTag as cW, type GetFinalStretchTokensParams as cX, GetFinalStretchTokensSortBy as cY, GetFinalStretchTokensSortDirection as cZ, GetFinalStretchTokensTag as c_, GetTopTradersSortType as ca, GetTopTradersSortBy as cb, type SearchParams as cc, SearchSort as cd, SearchSortBy as ce, type GetTokensParams as cf, GetTokensSortBy as cg, GetTokensSortDirection as ch, type GetMetadataMultiParams as ci, type GetMetadataMulti200 as cj, type GetPoolsParams as ck, GetPoolsDirection as cl, GetPoolsSortBy as cm, GetPoolsSortDirection as cn, type GetStatsMultiParams as co, type GetStatsMulti200 as cp, type GetHoldersParams as cq, GetHoldersDirection as cr, type GetHoldersMultiParams as cs, type GetCandlesParams as ct, type GetPoolCandlesParams as cu, type GetPairCandlesParams as cv, type GetMarketDataMultiParams as cw, type GetMarketDataMulti200 as cx, type GetPricesParams as cy, GetPricesDirection as cz, type WsTokenStat as d, getMarketDataMulti as d$, GetMigratedTokensSortBy as d0, GetMigratedTokensSortDirection as d1, GetMigratedTokensTag as d2, type GetPnlParams as d3, type GetBalanceParams as d4, type GetBalanceUpdatesParams as d5, type GetClaimsParams as d6, type GetRedpacketsParams as d7, GetRedpacketsChain as d8, type GetClaimsByAddressParams as d9, moonshotCreateToken as dA, moonshotSubmitCreateToken as dB, type MoonshotCreateTokenResult as dC, type MoonshotSubmitCreateTokenResult as dD, pumpfunCreateToken as dE, type PumpfunCreateTokenResult as dF, getTrades as dG, getActivities as dH, getTopTraders as dI, type GetTradesResult as dJ, type GetActivitiesResult as dK, type GetTopTradersResult as dL, search as dM, getTokens as dN, getToken as dO, getMetadata as dP, getMetadataMulti as dQ, getPools as dR, getStats as dS, getStatsMulti as dT, getHolders as dU, getHoldersMulti as dV, getCandles as dW, getPoolCandles as dX, getPairCandles as dY, getTopHolders as dZ, getMarketData as d_, type GetRedpacketsByAddressParams as da, type ListEndpointsParams as db, ListEndpointsOrder as dc, presign as dd, type PresignResult as de, getSupportedBlockchains as df, getLatestBlock as dg, type GetSupportedBlockchainsResult as dh, type GetLatestBlockResult as di, send as dj, getGasPrice as dk, getGasLimit as dl, type SendResult as dm, type GetGasPriceResult as dn, type GetGasLimitResult as dp, swap as dq, route as dr, quote as ds, createToken as dt, listDex as du, type SwapResult as dv, type RouteResult as dw, type QuoteResult as dx, type CreateTokenResult as dy, type ListDexResult as dz, type WsTokenHolder as e, getClaimsByAddress as e$, getPrices as e0, getPriceByTime as e1, getCreation as e2, getMintAndBurn as e3, listToken as e4, getSecurity as e5, getDevTokens as e6, getTokenTraders as e7, getTokenLiquiditySnapshots as e8, type SearchResult as e9, type GetDexpoolResult as eA, type GetDexpoolSnapshotsResult as eB, getHotTokens as eC, getNewTokens as eD, getStocksTokens as eE, getFinalStretchTokens as eF, getMigratedTokens as eG, type GetHotTokensResult as eH, type GetNewTokensResult as eI, type GetStocksTokensResult as eJ, type GetFinalStretchTokensResult as eK, type GetMigratedTokensResult as eL, getPnl as eM, getPnlStats as eN, getBalance as eO, calculatePnl as eP, getBalanceUpdates as eQ, type GetPnlResult as eR, type GetPnlStatsResult as eS, type GetBalanceResult as eT, type CalculatePnlResult as eU, type GetBalanceUpdatesResult as eV, createRedpacket as eW, claimRedpacket as eX, getRedpacket as eY, getClaims as eZ, getRedpackets as e_, type GetTokensResult as ea, type GetTokenResult as eb, type GetMetadataResult as ec, type GetMetadataMultiResult as ed, type GetPoolsResult as ee, type GetStatsResult as ef, type GetStatsMultiResult as eg, type GetHoldersResult as eh, type GetHoldersMultiResult as ei, type GetCandlesResult as ej, type GetPoolCandlesResult as ek, type GetPairCandlesResult as el, type GetTopHoldersResult as em, type GetMarketDataResult as en, type GetMarketDataMultiResult as eo, type GetPricesResult as ep, type GetPriceByTimeResult as eq, type GetCreationResult as er, type GetMintAndBurnResult as es, type ListTokenResult as et, type GetSecurityResult as eu, type GetDevTokensResult as ev, type GetTokenTradersResult as ew, type GetTokenLiquiditySnapshotsResult as ex, getDexpool as ey, getDexpoolSnapshots as ez, type WsWalletBalance as f, getRedpacketsByAddress as f0, redpacketSend as f1, type CreateRedpacketResult as f2, type ClaimRedpacketResult as f3, type GetRedpacketResult as f4, type GetClaimsResult as f5, type GetRedpacketsResult as f6, type GetClaimsByAddressResult as f7, type GetRedpacketsByAddressResult as f8, type RedpacketSendResult as f9, type GetWithdrawalNetworkIdentificationsResult as fA, type GetWithdrawalFraudAssessmentResult as fB, type RegisterAddressResult as fC, type GetAddressRiskResult as fD, listEndpoints as fE, createEndpoint as fF, updateEndpoint as fG, getEndpoint as fH, deleteEndpoint as fI, getEndpointSecret as fJ, rotateEndpointSecret as fK, type ListEndpointsResult as fL, type CreateEndpointResult as fM, type UpdateEndpointResult as fN, type GetEndpointResult as fO, type DeleteEndpointResult as fP, type GetEndpointSecretResult as fQ, type RotateEndpointSecretResult as fR, type PostOptions as fS, watchlistAdd as fa, type WatchlistAddResult as fb, registerTransfer as fc, getTransferSummary as fd, getTransferDirectExposure as fe, getTransferAlerts as ff, getTransferNetworkIdentifications as fg, registerWithdrawal as fh, getWithdrawalSummary as fi, getWithdrawalDirectExposure as fj, getWithdrawalAlerts as fk, getWithdrawalAddressIdentifications as fl, getWithdrawalNetworkIdentifications as fm, getWithdrawalFraudAssessment as fn, registerAddress as fo, getAddressRisk as fp, type RegisterTransferResult as fq, type GetTransferSummaryResult as fr, type GetTransferDirectExposureResult as fs, type GetTransferAlertsResult as ft, type GetTransferNetworkIdentificationsResult as fu, type RegisterWithdrawalResult as fv, type GetWithdrawalSummaryResult as fw, type GetWithdrawalDirectExposureResult as fx, type GetWithdrawalAlertsResult as fy, type GetWithdrawalAddressIdentificationsResult 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 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 };
|
|
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 };
|