You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/resources/schema.graphql
+72-16Lines changed: 72 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ type Query {
29
29
"""limit: The maximum number of webhooks to return."""
30
30
limit: Int
31
31
): GetWebhooksResponse
32
+
"""Returns a list of network configurations."""
32
33
getNetworkConfigs(
33
34
networkIds: [Int!]
34
35
): [NetworkConfig!]!
@@ -792,8 +793,10 @@ type Subscription {
792
793
onPairMetadataUpdated(
793
794
"""The ID of the pair (`address`:`networkId`)."""
794
795
id: String
795
-
"""The token of interest within the pair. Can be `token0` or `token1`."""
796
+
"""The token of interest within the pair. Can be `token0` or `token1`. If not specified, returns data for both tokens."""
796
797
quoteToken: QuoteToken
798
+
"""If true, automatically selects the non-liquidity token as the quoteToken. Ignored if quoteToken is explicitly specified."""
799
+
useNonLiquidityTokenAsQuoteToken: Boolean
797
800
): PairMetadata
798
801
"""Live-streamed bucketed stats for a given token within a pair."""
799
802
onDetailedStatsUpdated(
@@ -2355,6 +2358,8 @@ input GetPriceInput {
2355
2358
timestamp: Int
2356
2359
"""The address of the pool, when omitted the top pool is used."""
2357
2360
poolAddress: String
2361
+
"""The block number for the price. It must be provided in addition to the timestamp to get a per block breakdown at a specific timestamp."""
2362
+
blockNumber: Int
2358
2363
"""The maximum number of deviations from the token's Liquidity-Weighted Mean Price. This is used to mitigate low liquidity pairs producing prices that are not representative of reality. Default is `1`."""
2359
2364
maxDeviations: Float@deprecated(reason: "This isn't taken into account anymore.")
2360
2365
}
@@ -2685,7 +2690,7 @@ type LaunchpadTokenEventOutput {
2685
2690
launchpadName: String!
2686
2691
"""Metadata for the token."""
2687
2692
token: EnhancedToken!
2688
-
"""The number of buys in the last 24 hours."""
2693
+
"""The number of buys in the last hour."""
2689
2694
buyCount1: Int
2690
2695
"""The type of event."""
2691
2696
eventType: LaunchpadTokenEventType!
@@ -2695,14 +2700,28 @@ type LaunchpadTokenEventOutput {
2695
2700
marketCap: String
2696
2701
"""The price of the token."""
2697
2702
price: Float
2698
-
"""The number of sells in the last 24 hours."""
2703
+
"""The number of sells in the last hour."""
2699
2704
sellCount1: Int
2700
-
"""The volume of the token in the last 24 hours."""
2705
+
"""The volume of the token in the last hour."""
2701
2706
volume1: Int
2702
-
"""The number of transactions in the last 24 hours."""
2707
+
"""The number of transactions in the last hour."""
2703
2708
transactions1: Int
2704
2709
"""The liquidity of the token's top pair."""
2705
2710
liquidity: String
2711
+
"""The number of snipers that bought the token"""
2712
+
sniperCount: Float
2713
+
"""The percentage of the token that is held by snipers"""
2714
+
sniperHeldPercentage: Float
2715
+
"""The number of bundlers that bought the token"""
2716
+
bundlerCount: Float
2717
+
"""The percentage of the token that is held by bundlers"""
2718
+
bundlerHeldPercentage: Float
2719
+
"""The number of insiders that bought the token"""
2720
+
insiderCount: Float
2721
+
"""The percentage of the token that is held by insiders"""
2722
+
insiderHeldPercentage: Float
2723
+
"""The percentage of the token that is held by developers"""
2724
+
devHeldPercentage: Float
2706
2725
}
2707
2726
2708
2727
"""The type of event. Note that associated statistics such as `buyCount1`, `price`, etc. are only available for `Updated` events."""
"""The name of the launchpad. One of the following: Pump.fun, Bonk, Baseapp, Zora, Zora Creator, Four.meme, Believe, Moonshot, Jupiter Studio, boop, Heaven, TokenMill V2, Virtuals, Clanker, Clanker V4, ArenaTrade, Moonit, LaunchLab, MeteoraDBC, Vertigo, Cooking.City, time.fun, BAGS, Circus, Dealr, OhFuckFun, PrintFun, Trend, shout.fun, xApple, Sendshot, DubDub, cults."""
5748
+
"""The name of the launchpad. One of the following: Pump.fun, Bonk, Baseapp, Zora, Zora Creator, Four.meme, Four.meme Fair, Believe, Moonshot, Jupiter Studio, boop, Heaven, TokenMill V2, Virtuals, Clanker, Clanker V4, ArenaTrade, Moonit, LaunchLab, MeteoraDBC, Vertigo, Cooking.City, time.fun, BAGS, Circus, Dealr, OhFuckFun, PrintFun, Trend, shout.fun, xApple, Sendshot, DubDub, cults, OpenGameProtocol, Printr."""
5728
5749
launchpadName: String
5729
-
"""A list of launchpad names. Any of the following: Pump.fun, Bonk, Baseapp, Zora, Zora Creator, Four.meme, Believe, Moonshot, Jupiter Studio, boop, Heaven, TokenMill V2, Virtuals, Clanker, Clanker V4, ArenaTrade, Moonit, LaunchLab, MeteoraDBC, Vertigo, Cooking.City, time.fun, BAGS, Circus, Dealr, OhFuckFun, PrintFun, Trend, shout.fun, xApple, Sendshot, DubDub, cults."""
5750
+
"""A list of launchpad names. Any of the following: Pump.fun, Bonk, Baseapp, Zora, Zora Creator, Four.meme, Four.meme Fair, Believe, Moonshot, Jupiter Studio, boop, Heaven, TokenMill V2, Virtuals, Clanker, Clanker V4, ArenaTrade, Moonit, LaunchLab, MeteoraDBC, Vertigo, Cooking.City, time.fun, BAGS, Circus, Dealr, OhFuckFun, PrintFun, Trend, shout.fun, xApple, Sendshot, DubDub, cults, OpenGameProtocol, Printr."""
5730
5751
launchpadNames: [String!]
5731
5752
"""The type of event."""
5732
5753
eventType: LaunchpadTokenEventType
@@ -6651,6 +6672,8 @@ type Price {
6651
6672
"""The unix timestamp for the price."""
6652
6673
timestamp: Int
6653
6674
"""The pool that emitted the swap generating this price"""
6675
+
blockNumber: Int
6676
+
"""The pool that emitted the swap generating this price"""
6654
6677
poolAddress: String@deprecated(reason: "Pricing no longer based on specific pools")
6655
6678
"""Ratio of how confident we are in the price"""
6656
6679
confidence: Float@deprecated(reason: "Pricing no longer based on specific pools")
@@ -7914,12 +7937,28 @@ type TokenFilterResult {
7914
7937
swapPct1dOldWallet: String
7915
7938
"""The percentage of wallets that are less than 7d old that have traded in the last 24h"""
7916
7939
swapPct7dOldWallet: String
7940
+
"""The number of wallets that have sniped the token"""
7941
+
sniperCount: Int
7942
+
"""The percentage of tokens held by snipers"""
7943
+
sniperHeldPercentage: Float
7944
+
"""The number of wallets that have bundled the token"""
7945
+
bundlerCount: Int
7946
+
"""The percentage of tokens held by bundlers"""
7947
+
bundlerHeldPercentage: Float
7948
+
"""The number of wallets that have been an insider of the token"""
7949
+
insiderCount: Int
7950
+
"""The percentage of tokens held by insiders"""
7951
+
insiderHeldPercentage: Float
7952
+
"""The percentage of tokens held by the dev"""
7953
+
devHeldPercentage: Float
7917
7954
}
7918
7955
7919
7956
"""Input type of `TokenFilters`."""
7920
7957
inputTokenFilters {
7921
7958
"""The unix timestamp for the creation of the token's first pair."""
7922
7959
createdAt: NumberFilter
7960
+
"""The unix timestamp for the creation of the token."""
7961
+
tokenCreatedAt: NumberFilter
7923
7962
"""The unix timestamp for the token's last transaction."""
7924
7963
lastTransaction: NumberFilter
7925
7964
age: NumberFilter@deprecated(reason: "Age isn't supported - use createdAt instead")
@@ -8084,7 +8123,7 @@ input TokenFilters {
8084
8123
creatorAddress: String
8085
8124
"""A list of launchpad protocols."""
8086
8125
launchpadProtocol: [String!]
8087
-
"""A list of launchpad names. Any of the following: Pump.fun, Bonk, Baseapp, Zora, Zora Creator, Four.meme, Believe, Moonshot, Jupiter Studio, boop, Heaven, TokenMill V2, Virtuals, Clanker, Clanker V4, ArenaTrade, Moonit, LaunchLab, MeteoraDBC, Vertigo, Cooking.City, time.fun, BAGS, Circus, Dealr, OhFuckFun, PrintFun, Trend, shout.fun, xApple, Sendshot, DubDub, cults."""
8126
+
"""A list of launchpad names. Any of the following: Pump.fun, Bonk, Baseapp, Zora, Zora Creator, Four.meme, Four.meme Fair, Believe, Moonshot, Jupiter Studio, boop, Heaven, TokenMill V2, Virtuals, Clanker, Clanker V4, ArenaTrade, Moonit, LaunchLab, MeteoraDBC, Vertigo, Cooking.City, time.fun, BAGS, Circus, Dealr, OhFuckFun, PrintFun, Trend, shout.fun, xApple, Sendshot, DubDub, cults, OpenGameProtocol, Printr."""
8088
8127
launchpadName: [String!]
8089
8128
"""Indicates if the launchpad is completed."""
8090
8129
launchpadCompleted: Boolean
@@ -8108,6 +8147,20 @@ input TokenFilters {
8108
8147
swapPct1dOldWallet: NumberFilter
8109
8148
"""The percentage of wallets that are less than 7d old that have traded in the last 24h"""
8110
8149
swapPct7dOldWallet: NumberFilter
8150
+
"""Filter by number of wallets that have sniped the token"""
8151
+
sniperCount: NumberFilter
8152
+
"""Filter by percentage of tokens held by snipers"""
8153
+
sniperHeldPercentage: NumberFilter
8154
+
"""Filter by number of wallets that have bundled the token"""
8155
+
bundlerCount: NumberFilter
8156
+
"""Filter by percentage of tokens held by bundlers"""
8157
+
bundlerHeldPercentage: NumberFilter
8158
+
"""Filter by number of wallets that have been an insider of the token"""
8159
+
insiderCount: NumberFilter
8160
+
"""Filter by percentage of tokens held by insiders"""
8161
+
insiderHeldPercentage: NumberFilter
8162
+
"""Filter by percentage of tokens held by the dev"""
8163
+
devHeldPercentage: NumberFilter
8111
8164
}
8112
8165
8113
8166
"""Metadata for a token."""
@@ -8298,6 +8351,7 @@ input TokenRanking {
8298
8351
"""The attribute used to rank tokens."""
8299
8352
enumTokenRankingAttribute {
8300
8353
createdAt
8354
+
tokenCreatedAt
8301
8355
lastTransaction
8302
8356
age@deprecated(reason: "Use createdAt instead")
8303
8357
buyCount5m
@@ -8588,13 +8642,13 @@ type TokenWalletFilterResult {
8588
8642
sells1y: Int!
8589
8643
"""Number of sells all in the past year"""
8590
8644
sellsAll1y: Int!
8591
-
"""The purchased token balance"""
8592
-
purchasedTokenBalance: String!
8593
8645
"""The token acquisition cost in USD"""
8594
8646
tokenAcquisitionCostUsd: String!
8595
-
"""The token balance in the wallet. This value does not update with every transfer and can be slightly stale. Use tokenBalanceLive for live data."""
8647
+
"""The total balance of tokens that the user has bought or sold. This value does not include tokens acquired through external transfers or unsupported methods."""
8648
+
purchasedTokenBalance: String!
8649
+
"""The total balance of tokens held by the user, reflecting the most recent update to the record. This balance includes all tokens, even those transferred in through unsupported methods or DEXs that are not tracked by our system. This value does not update with every transfer and can be slightly stale. Use tokenBalanceLive for live data."""
8596
8650
tokenBalance: String!
8597
-
"""The current token balance in the wallet."""
8651
+
"""The current token balance in the wallet. This value is updated with every transfer and is therefore more accurate than tokenBalance."""
8598
8652
tokenBalanceLive: String
8599
8653
"""The current USD value of the token balance."""
8600
8654
tokenBalanceLiveUsd: String
@@ -8813,6 +8867,8 @@ type UniswapV4Data {
8813
8867
uniswapV4HookAddress: String
8814
8868
"""Whether the token is the network token for the Uniswap V4 pool."""
8815
8869
isToken0NetworkToken: Boolean
8870
+
"""Whether the pool uses a dynamic fee. A fee of 0x80000 is used by Uniswap V4 to indicate a dynamic pool -- in such cases, the fee percentage on the pair should be disregarded."""
"""The total balance of tokens held by the user, reflecting the most recent update to the record. This balance includes all tokens, even those transferred in through unsupported methods or DEXs that are not tracked by our system."""
9646
9702
tokenBalance
9647
-
"""Purchased token balance"""
9703
+
"""The total balance of tokens that the user has bought or sold. This value does not include tokens acquired through external transfers or unsupported methods."""
0 commit comments