@reptilianhq/chain-data-contract 0.12.0 → 0.14.0
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/README.md +6 -1
- package/chain-data-operations.graphql +6 -6
- package/chain-data-persisted-manifest.json +6 -6
- package/chain-data-schema.graphql +3 -3
- package/dist/operations.generated.d.ts +16 -16
- package/dist/operations.generated.d.ts.map +1 -1
- package/dist/operations.generated.js +16 -16
- package/dist/operations.generated.js.map +1 -1
- package/dist/types.generated.d.ts +3 -0
- package/dist/types.generated.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/operations.generated.ts +16 -16
- package/src/types.generated.ts +3 -0
package/README.md
CHANGED
|
@@ -41,6 +41,11 @@ recipient, buyback terms, sweep evidence, graduated position ID, and rescue
|
|
|
41
41
|
evidence. Current reserves, claimable balances, and vesting availability remain
|
|
42
42
|
block-pinned RPC authority rather than inferred historical state.
|
|
43
43
|
|
|
44
|
+
`LaunchFeed.provider` optionally scopes pagination to `launchonblock` or `pons`.
|
|
45
|
+
The gateway applies the indexed LaunchOnBlock identity set inside the database
|
|
46
|
+
query, before the cursor and page limit, so a small provider cannot be starved
|
|
47
|
+
by a much larger provider sharing the deployment.
|
|
48
|
+
|
|
44
49
|
`LaunchDetail.supplyDistribution` exposes exact, non-overlapping original-supply custody slices.
|
|
45
50
|
Consumers must treat raw amounts as authoritative and require `reconciled=true` with `partial=false`
|
|
46
51
|
before presenting the result as complete. The gateway fences its custody query between two identical
|
|
@@ -97,7 +102,7 @@ an exact version; no registry configuration or credential is required to
|
|
|
97
102
|
install it.
|
|
98
103
|
|
|
99
104
|
```bash
|
|
100
|
-
npm install @reptilianhq/chain-data-contract@0.
|
|
105
|
+
npm install @reptilianhq/chain-data-contract@0.14.0
|
|
101
106
|
```
|
|
102
107
|
|
|
103
108
|
Versions published before 0.10.0 remain in the ReptilianHQ GitHub Packages
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
query LaunchFeed($deploymentId: ID!, $phase: LaunchPhase, $first: Int!, $after: String) {
|
|
2
|
-
launches(deploymentId: $deploymentId, phase: $phase, first: $first, after: $after) {
|
|
1
|
+
query LaunchFeed($deploymentId: ID!, $provider: LaunchProvider, $phase: LaunchPhase, $first: Int!, $after: String) {
|
|
2
|
+
launches(deploymentId: $deploymentId, provider: $provider, phase: $phase, first: $first, after: $after) {
|
|
3
3
|
nodes { id provider pons { lifecyclePhase curve launchConfigId configSupply phantomQuote { token symbol raw decimals decimal } configEnabledAtLaunchBlock graduationThreshold { token symbol raw decimals decimal } curveFeeBps creatorTaxBps buybackEnabled buybackController poolFeePips tickSpacing creatorFeeRecipient protocolFeeRecipient protocolFeeShareBps buybackBurnBps hookFeeBps maxInternalPriceImpactBps sweptQuote { token symbol raw decimals decimal } sweptTokens sweptAt poolPositionId rescueRecipient rescueQuote { token symbol raw decimals decimal } rescueTokens lastUpdatedBlock lastUpdatedAt } token quoteToken name symbol creator creatorBps curveFeeBps payoutWallet metadataURI phase pool amountRaisedQuote amountRaisedQuoteAsset { token symbol raw decimals decimal } raiseThresholdQuote raiseThresholdQuoteAsset { token symbol raw decimals decimal } curveProgressPct holderCount holderCountPartial volume24hQuote volume24hQuoteAsset { token symbol raw decimals decimal } anchoredVolume24hQuote anchoredVolume24hQuoteAsset { token symbol raw decimals decimal } volume24hHoldingsAnchored volume24hPartial volumeWindowSeconds totalCanonicalVolumeQuote totalCanonicalVolumeQuoteAsset { token symbol raw decimals decimal } volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } totalLbVolumeQuote tradeCount lastCanonicalPrice lastCanonicalPriceBlock createdBlock createdTimestamp graduatedBlock graduatedTimestamp }
|
|
4
4
|
pageInfo { endCursor hasNextPage }
|
|
5
5
|
}
|
|
@@ -28,8 +28,8 @@ query LaunchDetail($deploymentId: ID!, $token: Address!) {
|
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
query TrendingLaunches($deploymentId: ID!, $first: Int!) {
|
|
32
|
-
trendingLaunches(deploymentId: $deploymentId, first: $first) {
|
|
31
|
+
query TrendingLaunches($deploymentId: ID!, $provider: LaunchProvider, $first: Int!) {
|
|
32
|
+
trendingLaunches(deploymentId: $deploymentId, provider: $provider, first: $first) {
|
|
33
33
|
nodes { token name symbol phase lastCanonicalPrice recentVolumeQuote rankVolumeQuote retainedValueQuote holdingsAnchored distinctTraders recentTrades changePct windowSeconds }
|
|
34
34
|
partial minDistinctTraders maxTraderPct holdingsMultiple
|
|
35
35
|
}
|
|
@@ -85,8 +85,8 @@ query LiquidityBookPosition($deploymentId: ID!, $wallet: Address!, $pool: Addres
|
|
|
85
85
|
}
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
-
query ProtocolStats($deploymentId: ID
|
|
89
|
-
protocolStats(deploymentId: $deploymentId) { launched graduated bonding poolCount tradeCount tvlQuote tvlPartial volumePartial totalVolumeQuote curveVolumeQuote ammVolumeQuote lbVolumeQuote volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lastIndexedBlock lastUpdatedTimestamp }
|
|
88
|
+
query ProtocolStats($deploymentId: ID!, $provider: LaunchProvider) {
|
|
89
|
+
protocolStats(deploymentId: $deploymentId, provider: $provider) { launched graduated bonding poolCount tradeCount tvlQuote tvlPartial volumePartial totalVolumeQuote curveVolumeQuote ammVolumeQuote lbVolumeQuote volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lastIndexedBlock lastUpdatedTimestamp }
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
query ChainDataFreshness($deploymentId: ID!) {
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
"version": 1,
|
|
4
4
|
"operations": [
|
|
5
5
|
{
|
|
6
|
-
"id": "
|
|
7
|
-
"body": "query LaunchFeed($deploymentId: ID!, $phase: LaunchPhase, $first: Int!, $after: String) {\n launches(deploymentId: $deploymentId, phase: $phase, first: $first, after: $after) {\n nodes { id provider pons { lifecyclePhase curve launchConfigId configSupply phantomQuote { token symbol raw decimals decimal } configEnabledAtLaunchBlock graduationThreshold { token symbol raw decimals decimal } curveFeeBps creatorTaxBps buybackEnabled buybackController poolFeePips tickSpacing creatorFeeRecipient protocolFeeRecipient protocolFeeShareBps buybackBurnBps hookFeeBps maxInternalPriceImpactBps sweptQuote { token symbol raw decimals decimal } sweptTokens sweptAt poolPositionId rescueRecipient rescueQuote { token symbol raw decimals decimal } rescueTokens lastUpdatedBlock lastUpdatedAt } token quoteToken name symbol creator creatorBps curveFeeBps payoutWallet metadataURI phase pool amountRaisedQuote amountRaisedQuoteAsset { token symbol raw decimals decimal } raiseThresholdQuote raiseThresholdQuoteAsset { token symbol raw decimals decimal } curveProgressPct holderCount holderCountPartial volume24hQuote volume24hQuoteAsset { token symbol raw decimals decimal } anchoredVolume24hQuote anchoredVolume24hQuoteAsset { token symbol raw decimals decimal } volume24hHoldingsAnchored volume24hPartial volumeWindowSeconds totalCanonicalVolumeQuote totalCanonicalVolumeQuoteAsset { token symbol raw decimals decimal } volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } totalLbVolumeQuote tradeCount lastCanonicalPrice lastCanonicalPriceBlock createdBlock createdTimestamp graduatedBlock graduatedTimestamp }\n pageInfo { endCursor hasNextPage }\n }\n}",
|
|
6
|
+
"id": "6987b2a3414e200023540be9f07358807dd509bb53c4a35230fa3b445d64c94e",
|
|
7
|
+
"body": "query LaunchFeed($deploymentId: ID!, $provider: LaunchProvider, $phase: LaunchPhase, $first: Int!, $after: String) {\n launches(deploymentId: $deploymentId, provider: $provider, phase: $phase, first: $first, after: $after) {\n nodes { id provider pons { lifecyclePhase curve launchConfigId configSupply phantomQuote { token symbol raw decimals decimal } configEnabledAtLaunchBlock graduationThreshold { token symbol raw decimals decimal } curveFeeBps creatorTaxBps buybackEnabled buybackController poolFeePips tickSpacing creatorFeeRecipient protocolFeeRecipient protocolFeeShareBps buybackBurnBps hookFeeBps maxInternalPriceImpactBps sweptQuote { token symbol raw decimals decimal } sweptTokens sweptAt poolPositionId rescueRecipient rescueQuote { token symbol raw decimals decimal } rescueTokens lastUpdatedBlock lastUpdatedAt } token quoteToken name symbol creator creatorBps curveFeeBps payoutWallet metadataURI phase pool amountRaisedQuote amountRaisedQuoteAsset { token symbol raw decimals decimal } raiseThresholdQuote raiseThresholdQuoteAsset { token symbol raw decimals decimal } curveProgressPct holderCount holderCountPartial volume24hQuote volume24hQuoteAsset { token symbol raw decimals decimal } anchoredVolume24hQuote anchoredVolume24hQuoteAsset { token symbol raw decimals decimal } volume24hHoldingsAnchored volume24hPartial volumeWindowSeconds totalCanonicalVolumeQuote totalCanonicalVolumeQuoteAsset { token symbol raw decimals decimal } volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } totalLbVolumeQuote tradeCount lastCanonicalPrice lastCanonicalPriceBlock createdBlock createdTimestamp graduatedBlock graduatedTimestamp }\n pageInfo { endCursor hasNextPage }\n }\n}",
|
|
8
8
|
"name": "LaunchFeed",
|
|
9
9
|
"type": "query"
|
|
10
10
|
},
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"type": "query"
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
|
-
"id": "
|
|
19
|
-
"body": "query TrendingLaunches($deploymentId: ID!, $first: Int!) {\n trendingLaunches(deploymentId: $deploymentId, first: $first) {\n nodes { token name symbol phase lastCanonicalPrice recentVolumeQuote rankVolumeQuote retainedValueQuote holdingsAnchored distinctTraders recentTrades changePct windowSeconds }\n partial minDistinctTraders maxTraderPct holdingsMultiple\n }\n}",
|
|
18
|
+
"id": "0133b5cada9868750d489a54701ebe27a0fb25cbc1a5c569807fbb427c218878",
|
|
19
|
+
"body": "query TrendingLaunches($deploymentId: ID!, $provider: LaunchProvider, $first: Int!) {\n trendingLaunches(deploymentId: $deploymentId, provider: $provider, first: $first) {\n nodes { token name symbol phase lastCanonicalPrice recentVolumeQuote rankVolumeQuote retainedValueQuote holdingsAnchored distinctTraders recentTrades changePct windowSeconds }\n partial minDistinctTraders maxTraderPct holdingsMultiple\n }\n}",
|
|
20
20
|
"name": "TrendingLaunches",
|
|
21
21
|
"type": "query"
|
|
22
22
|
},
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
"type": "query"
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
|
-
"id": "
|
|
61
|
-
"body": "query ProtocolStats($deploymentId: ID
|
|
60
|
+
"id": "1bdf93bfa441b10997f810453a9216bb41b0deae538319d945979a2c74e348da",
|
|
61
|
+
"body": "query ProtocolStats($deploymentId: ID!, $provider: LaunchProvider) {\n protocolStats(deploymentId: $deploymentId, provider: $provider) { launched graduated bonding poolCount tradeCount tvlQuote tvlPartial volumePartial totalVolumeQuote curveVolumeQuote ammVolumeQuote lbVolumeQuote volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lastIndexedBlock lastUpdatedTimestamp }\n}",
|
|
62
62
|
"name": "ProtocolStats",
|
|
63
63
|
"type": "query"
|
|
64
64
|
},
|
|
@@ -591,15 +591,15 @@ type PonsPairAsset {
|
|
|
591
591
|
type Query {
|
|
592
592
|
ponsPairAssets(deploymentId: ID!): [PonsPairAsset!]!
|
|
593
593
|
referencePairMetadata(deploymentId: ID!, pair: Address!): ReferencePairMetadata
|
|
594
|
-
launches(deploymentId: ID!, phase: LaunchPhase, first: Int!, after: String): LaunchConnection!
|
|
594
|
+
launches(deploymentId: ID!, provider: LaunchProvider, phase: LaunchPhase, first: Int!, after: String): LaunchConnection!
|
|
595
595
|
launch(deploymentId: ID!, token: Address!): LaunchDetail
|
|
596
|
-
trendingLaunches(deploymentId: ID!, first: Int!): TrendingLaunchResult!
|
|
596
|
+
trendingLaunches(deploymentId: ID!, provider: LaunchProvider, first: Int!): TrendingLaunchResult!
|
|
597
597
|
"""Authoritative curve and AMM price history. Liquidity Book trades are exposed through venue-specific analytics, not valuation history."""
|
|
598
598
|
launchPriceSeries(deploymentId: ID!, token: Address!, first: Int!, after: String): LaunchPriceSeriesConnection!
|
|
599
599
|
walletLaunchPositions(deploymentId: ID!, wallet: Address!, first: Int!, after: String): WalletLaunchPositionResult!
|
|
600
600
|
walletLiquidityBookPositions(deploymentId: ID!, wallet: Address!, first: Int!, after: String): WalletLiquidityBookPositionResult!
|
|
601
601
|
liquidityBookPosition(deploymentId: ID!, wallet: Address!, pool: Address!, binFirst: Int!, binsAfter: String): LiquidityBookPositionDetail
|
|
602
|
-
protocolStats(deploymentId: ID
|
|
602
|
+
protocolStats(deploymentId: ID!, provider: LaunchProvider): ProtocolStats!
|
|
603
603
|
chainDataFreshness(deploymentId: ID!): ChainDataFreshness!
|
|
604
604
|
portfolioProjectionEvents(deploymentId: ID!, first: Int!, after: String): PortfolioProjectionEventConnection!
|
|
605
605
|
ethUsdPrice: EthUsdPrice!
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export declare const CHAIN_DATA_SCHEMA_SDL = "\"\"\"\nAn EVM address normalized to lowercase by the gateway.\n\"\"\"\nscalar Address\n\n\"\"\"\nAn opaque cursor returned by pageInfo. Consumers must return it unchanged.\n\"\"\"\nscalar Cursor\n\n\"\"\"\nAn exact quote-token amount serialized as { wei: String!, decimal: String! }.\nThe legacy `wei` key contains exact raw base units for the identified quote\nasset, including non-18-decimal ERC-20 assets. Never coerce either value to a\nJavaScript number.\n\"\"\"\nscalar ExactQuoteAmount\n\n\"\"\"\nAn exact launch-token amount serialized as { raw: String!, decimal: String! }.\nNever coerce raw or decimal values to a JavaScript number.\n\"\"\"\nscalar ExactTokenAmount\n\n\"\"\"\nAn exact decimal string. Consumers choose display precision at the UI boundary.\n\"\"\"\nscalar Decimal\n\n\"\"\"An exact amount denominated in one explicit ERC-20 quote asset.\"\"\"\ntype ExactAssetAmount {\n token: Address!\n symbol: String\n raw: String!\n decimals: Int\n decimal: Decimal\n}\n\ntype QuoteAssetVolume {\n amount: ExactAssetAmount!\n tradeCount: Int!\n}\n\nenum PonsLifecyclePhase {\n bonding\n swept\n pool_created\n rescued\n}\n\ntype PonsLaunchState {\n lifecyclePhase: PonsLifecyclePhase!\n curve: Address!\n launchConfigId: String!\n configSupply: ExactTokenAmount!\n phantomQuote: ExactAssetAmount!\n configEnabledAtLaunchBlock: Boolean!\n graduationThreshold: ExactAssetAmount!\n curveFeeBps: Int!\n creatorTaxBps: Int!\n buybackEnabled: Boolean!\n buybackController: Address\n poolFeePips: Int!\n tickSpacing: Int!\n creatorFeeRecipient: Address!\n protocolFeeRecipient: Address!\n protocolFeeShareBps: Int!\n buybackBurnBps: Int!\n hookFeeBps: Int!\n maxInternalPriceImpactBps: Int!\n sweptQuote: ExactAssetAmount!\n sweptTokens: ExactTokenAmount!\n sweptAt: String\n poolPositionId: String\n rescueRecipient: Address\n rescueQuote: ExactAssetAmount\n rescueTokens: ExactTokenAmount\n lastUpdatedBlock: String!\n lastUpdatedAt: String!\n}\n\nenum LaunchPhase {\n BONDING\n GRADUATED\n}\n\nenum IndexedLaunchPhase {\n bonding\n graduated\n}\n\nenum TradeVenue {\n curve\n amm\n lb\n}\n\nenum TradeSide {\n buy\n sell\n}\n\ntype PageInfo {\n endCursor: Cursor\n hasNextPage: Boolean!\n}\n\ntype LaunchSummary {\n id: ID!\n provider: LaunchProvider!\n pons: PonsLaunchState\n token: Address!\n quoteToken: Address!\n name: String\n symbol: String\n creator: Address!\n creatorBps: Int!\n curveFeeBps: Int!\n payoutWallet: Address!\n metadataURI: String!\n phase: IndexedLaunchPhase!\n pool: Address\n amountRaisedQuote: ExactQuoteAmount!\n amountRaisedQuoteAsset: ExactAssetAmount!\n raiseThresholdQuote: ExactQuoteAmount!\n raiseThresholdQuoteAsset: ExactAssetAmount!\n curveProgressPct: Decimal\n holderCount: Int!\n holderCountPartial: Boolean!\n volume24hQuote: ExactQuoteAmount!\n volume24hQuoteAsset: ExactAssetAmount!\n anchoredVolume24hQuote: ExactQuoteAmount!\n anchoredVolume24hQuoteAsset: ExactAssetAmount!\n volume24hHoldingsAnchored: Boolean!\n volume24hPartial: Boolean!\n volumeWindowSeconds: Int!\n totalCanonicalVolumeQuote: ExactQuoteAmount!\n totalCanonicalVolumeQuoteAsset: ExactAssetAmount!\n volumeByQuoteAsset: [QuoteAssetVolume!]!\n lbVolumeByQuoteAsset: [QuoteAssetVolume!]!\n \"\"\"Legacy 18-decimal projection. Use lbVolumeByQuoteAsset for LB accounting.\"\"\"\n totalLbVolumeQuote: ExactQuoteAmount!\n tradeCount: Int!\n lastCanonicalPrice: Decimal\n lastCanonicalPriceBlock: Int\n createdBlock: Int!\n createdTimestamp: Int!\n graduatedBlock: Int\n graduatedTimestamp: Int\n}\n\nenum LaunchProvider {\n launchonblock\n pons\n}\n\ntype LaunchConnection {\n nodes: [LaunchSummary!]!\n pageInfo: PageInfo!\n}\n\ntype LaunchPool {\n address: Address!\n poolType: String!\n token0: Address!\n token1: Address!\n quoteIsToken1: Boolean!\n quoteToken: Address!\n ignoredForRouting: Boolean!\n binStep: String\n reserveToken: ExactTokenAmount\n reserveQuote: ExactQuoteAmount\n tvlQuote: ExactQuoteAmount\n reserveQuoteAsset: ExactAssetAmount\n tvlQuoteAsset: ExactAssetAmount\n reserveSource: String!\n createdBlock: Int!\n lastUpdatedBlock: Int!\n}\n\nenum ExternalMarketProtocol {\n uniswap_v2\n uniswap_v3\n uniswap_v4\n}\n\n\"\"\"A Uniswap market whose token0 or token1 is a launch from this exact deployment.\"\"\"\ntype LaunchExternalMarket {\n id: ID!\n protocol: ExternalMarketProtocol!\n \"\"\"The v2/v3 factory or v4 PoolManager that emitted the creation event.\"\"\"\n venueAddress: Address!\n \"\"\"The pair/pool contract for v2/v3. V4 pools live inside PoolManager and have no address.\"\"\"\n poolAddress: Address\n \"\"\"The bytes32 PoolId for v4. Null for address-identified v2/v3 markets.\"\"\"\n poolId: String\n token0: Address!\n token1: Address!\n feePips: Int\n tickSpacing: Int\n hooks: Address\n createdBlock: Int!\n createdTransactionHash: String!\n createdLogIndex: Int!\n}\n\ntype LaunchTrade {\n id: ID!\n venue: TradeVenue!\n side: TradeSide!\n sender: Address!\n recipient: Address!\n attributedWallet: Address\n quoteToken: Address!\n quoteAmount: ExactQuoteAmount!\n quoteAmountAsset: ExactAssetAmount!\n tokenAmount: ExactTokenAmount!\n price: Decimal\n blockNumber: Int!\n blockTimestamp: Int!\n transactionHash: String!\n logIndex: Int!\n}\n\ntype LaunchFeeEvent {\n id: ID!\n kind: String!\n economicType: String!\n pair: Address\n quoteToken: Address!\n creatorTokenAmount: ExactTokenAmount!\n creatorQuoteAmount: ExactQuoteAmount!\n creatorQuoteAmountAsset: ExactAssetAmount!\n protocolTokenAmount: ExactTokenAmount!\n protocolQuoteAmount: ExactQuoteAmount!\n protocolQuoteAmountAsset: ExactAssetAmount!\n payoutAmount: ExactQuoteAmount!\n payoutStatus: String\n blockNumber: Int!\n blockTimestamp: Int!\n transactionHash: String!\n}\n\ntype SupplySlice {\n amount: ExactTokenAmount!\n \"\"\"Floor(amount * 10_000 / originalSupply). Exact raw amounts remain authoritative.\"\"\"\n basisPoints: Int!\n}\n\ntype SupplyDistribution {\n originalSupply: ExactTokenAmount!\n bondingCurveCustody: SupplySlice!\n graduationPoolLiquidity: SupplySlice!\n lbLiquidity: SupplySlice!\n \"\"\"Pool token custody excluded from tradable reserves, including accrued protocol fees.\"\"\"\n poolNonLiquidityCustody: SupplySlice!\n lockedDead: SupplySlice!\n \"\"\"Known Launchpad/Router custody outside the active bonding-curve inventory.\"\"\"\n otherProtocolCustody: SupplySlice!\n \"\"\"All supply outside known protocol and dead-address custody.\"\"\"\n userHeld: SupplySlice!\n reconciled: Boolean!\n partial: Boolean!\n}\n\ntype LaunchDetail {\n id: ID!\n provider: LaunchProvider!\n pons: PonsLaunchState\n token: Address!\n quoteToken: Address!\n name: String\n symbol: String\n creator: Address!\n creatorBps: Int!\n curveFeeBps: Int!\n payoutWallet: Address!\n metadataURI: String!\n phase: IndexedLaunchPhase!\n pool: Address\n amountRaisedQuote: ExactQuoteAmount!\n amountRaisedQuoteAsset: ExactAssetAmount!\n raiseThresholdQuote: ExactQuoteAmount!\n raiseThresholdQuoteAsset: ExactAssetAmount!\n curveProgressPct: Decimal\n holderCount: Int!\n holderCountPartial: Boolean!\n volume24hQuote: ExactQuoteAmount!\n volume24hQuoteAsset: ExactAssetAmount!\n anchoredVolume24hQuote: ExactQuoteAmount!\n anchoredVolume24hQuoteAsset: ExactAssetAmount!\n volume24hHoldingsAnchored: Boolean!\n volume24hPartial: Boolean!\n volumeWindowSeconds: Int!\n totalCanonicalVolumeQuote: ExactQuoteAmount!\n totalCanonicalVolumeQuoteAsset: ExactAssetAmount!\n volumeByQuoteAsset: [QuoteAssetVolume!]!\n lbVolumeByQuoteAsset: [QuoteAssetVolume!]!\n \"\"\"Legacy 18-decimal projection. Use lbVolumeByQuoteAsset for LB accounting.\"\"\"\n totalLbVolumeQuote: ExactQuoteAmount!\n tradeCount: Int!\n lastCanonicalPrice: Decimal\n lastCanonicalPriceBlock: Int\n createdBlock: Int!\n createdTimestamp: Int!\n graduatedBlock: Int\n graduatedTimestamp: Int\n pools: [LaunchPool!]!\n poolsPartial: Boolean!\n externalMarkets: [LaunchExternalMarket!]!\n externalMarketsPartial: Boolean!\n supplyDistribution: SupplyDistribution!\n recentTrades: [LaunchTrade!]!\n fees: [LaunchFeeEvent!]!\n}\n\ntype TrendingLaunch {\n token: Address!\n name: String\n symbol: String\n phase: IndexedLaunchPhase!\n lastCanonicalPrice: Decimal\n recentVolumeQuote: ExactQuoteAmount!\n rankVolumeQuote: ExactQuoteAmount!\n retainedValueQuote: ExactQuoteAmount\n holdingsAnchored: Boolean!\n distinctTraders: Int!\n recentTrades: Int!\n changePct: Decimal!\n windowSeconds: Int!\n}\n\ntype TrendingLaunchResult {\n nodes: [TrendingLaunch!]!\n partial: Boolean!\n minDistinctTraders: Int!\n maxTraderPct: Int!\n holdingsMultiple: Int!\n}\n\ntype LaunchPricePoint {\n cursor: Cursor!\n timestamp: Int!\n blockNumber: Int!\n price: Decimal\n volumeQuote: ExactQuoteAmount!\n volumeQuoteAsset: ExactAssetAmount!\n venue: TradeVenue!\n side: TradeSide!\n transactionHash: String!\n}\n\ntype LaunchPriceSeriesConnection {\n nodes: [LaunchPricePoint!]!\n pageInfo: PageInfo!\n}\n\ntype WalletLaunchPosition {\n \"\"\"CAIP-style chain-local token identity used by portfolio observation consumers.\"\"\"\n tokenIdentity: ID!\n token: Address!\n name: String\n symbol: String\n decimals: Int\n phase: IndexedLaunchPhase!\n balance: ExactTokenAmount!\n \"\"\"Exact display amount when token decimals are known.\"\"\"\n amountDisplay: Decimal\n tokenBalance: String!\n \"\"\"Exact quote asset used by this launch and all quote-denominated position fields.\"\"\"\n quoteToken: Address!\n valueQuote: ExactQuoteAmount!\n valueQuoteAsset: ExactAssetAmount!\n investedQuote: ExactQuoteAmount!\n investedQuoteAsset: ExactAssetAmount!\n proceedsQuote: ExactQuoteAmount!\n proceedsQuoteAsset: ExactAssetAmount!\n pnlQuote: ExactQuoteAmount!\n pnlQuoteAsset: ExactAssetAmount!\n lastCanonicalPrice: Decimal\n \"\"\"Exact ERC-20 quote asset for lastCanonicalPrice; null when price is unavailable.\"\"\"\n lastCanonicalPriceQuoteToken: Address\n \"\"\"Display quote units per display token unit, normalized with both ERC-20 decimal scales.\"\"\"\n lastCanonicalUnitPrice: Decimal\n lastCanonicalPriceBlock: String\n \"\"\"Timestamp of the exact canonical trade that produced lastCanonicalPrice.\"\"\"\n lastCanonicalPriceObservedAt: String\n \"\"\"Deterministic watermark of the indexed wallet balance row.\"\"\"\n sourceWatermark: String!\n observedAtBlock: String!\n observedAt: String!\n buyCount: Int!\n sellCount: Int!\n}\n\ntype WalletLaunchPositionTotals {\n \"\"\"Legacy wrapped-native-only totals. Null when the portfolio contains another quote asset.\"\"\"\n valueQuote: ExactQuoteAmount!\n investedQuote: ExactQuoteAmount!\n proceedsQuote: ExactQuoteAmount!\n pnlQuote: ExactQuoteAmount!\n}\n\ntype WalletLaunchPositionAssetTotals {\n quoteToken: Address!\n valueQuoteAsset: ExactAssetAmount!\n investedQuoteAsset: ExactAssetAmount!\n proceedsQuoteAsset: ExactAssetAmount!\n pnlQuoteAsset: ExactAssetAmount!\n}\n\n\"\"\"Indexer checkpoint observed by the gateway while capturing one bounded page.\"\"\"\ntype PortfolioObservationWatermark {\n sourceWatermark: String!\n observedAtBlock: String!\n observedAt: String!\n}\n\ntype WalletLaunchPositionResult {\n wallet: Address!\n partial: Boolean!\n observationWatermark: PortfolioObservationWatermark\n positions: [WalletLaunchPosition!]!\n pageInfo: PageInfo!\n \"\"\"Legacy wrapped-native totals, withheld for partial scans or portfolios containing another quote asset.\"\"\"\n totals: WalletLaunchPositionTotals\n \"\"\"Complete totals grouped by exact quote asset; null when the totals scan is partial.\"\"\"\n totalsByQuoteAsset: [WalletLaunchPositionAssetTotals!]\n}\n\n\"\"\"An LB pair indexed from the configured factory, whether or not either token belongs to the configured launchpad deployment.\"\"\"\ntype LiquidityBookPair {\n address: Address!\n token0: Address!\n token1: Address!\n binStep: String!\n activeBinId: String\n createdBlock: String!\n lastUpdatedBlock: String!\n}\n\n\"\"\"Event-folded ERC-1155 receipt ownership for one wallet in one LB pair.\"\"\"\ntype LiquidityBookPosition {\n poolAddress: Address!\n walletAddress: Address!\n activeBinCount: String!\n totalReceiptBalance: String!\n lastUpdatedBlock: String!\n lastUpdatedBlockHash: String!\n lastUpdatedTimestamp: String!\n lastUpdatedTransactionHash: String!\n pair: LiquidityBookPair\n \"\"\"Exact checkpoint-bound underlying assets; null unless every active bin is resolved.\"\"\"\n underlyingAssets: [PortfolioUnderlyingAsset!]\n}\n\ntype PortfolioUnderlyingAsset {\n tokenIdentity: ID!\n token: Address!\n decimals: Int!\n amountRaw: String!\n amountDisplay: Decimal!\n lastCanonicalPrice: Decimal\n lastCanonicalPriceQuoteToken: Address\n lastCanonicalUnitPrice: Decimal\n lastCanonicalPriceBlock: String\n lastCanonicalPriceObservedAt: String\n}\n\ntype WalletLiquidityBookPositionResult {\n wallet: Address!\n partial: Boolean!\n observationWatermark: PortfolioObservationWatermark\n positions: [LiquidityBookPosition!]!\n pageInfo: PageInfo!\n}\n\ntype LiquidityBookPositionBin {\n cursor: Cursor!\n binId: String!\n receiptBalance: String!\n lastUpdatedBlock: String!\n lastUpdatedBlockHash: String!\n lastUpdatedTimestamp: String!\n lastUpdatedTransactionHash: String!\n}\n\ntype LiquidityBookPositionDetail {\n position: LiquidityBookPosition!\n bins: [LiquidityBookPositionBin!]!\n binsPageInfo: PageInfo!\n partial: Boolean!\n}\n\ntype ProtocolStats {\n launched: Int!\n graduated: Int!\n bonding: Int!\n poolCount: Int!\n tradeCount: Int!\n tvlQuote: ExactQuoteAmount\n tvlPartial: Boolean!\n volumePartial: Boolean!\n totalVolumeQuote: ExactQuoteAmount\n curveVolumeQuote: ExactQuoteAmount\n ammVolumeQuote: ExactQuoteAmount\n lbVolumeQuote: ExactQuoteAmount\n volumeByQuoteAsset: [QuoteAssetVolume!]!\n lbVolumeByQuoteAsset: [QuoteAssetVolume!]!\n lastIndexedBlock: Int!\n lastUpdatedTimestamp: Int!\n}\n\ntype ChainDataFreshness {\n deploymentId: ID!\n healthy: Boolean!\n backfilling: Boolean!\n chainId: Int!\n launchpadAddress: Address!\n startBlock: Int!\n chainHead: Int!\n indexedHead: Int!\n sourceHead: Int!\n blockLag: Int!\n configuredBlockLag: Int!\n lastProcessedAt: String\n hasuraReachable: Boolean!\n rpcReachable: Boolean!\n}\n\ntype PortfolioProjectionEvent {\n id: ID!\n kind: String!\n chainId: String!\n wallet: Address!\n blockNumber: String!\n blockHash: String!\n blockTimestamp: String!\n transactionHash: String!\n transactionIndex: String!\n logIndex: String!\n sourceWatermark: String!\n cursor: Cursor!\n}\n\n\"\"\"Canonical-head-bounded invalidation hints; consumers must retain periodic full reconciliation for reorg repair.\"\"\"\ntype PortfolioProjectionEventConnection {\n nodes: [PortfolioProjectionEvent!]!\n pageInfo: PageInfo!\n canonicalBlock: String!\n}\n\nenum EthUsdPriceSource {\n WETH_USDG_SPOT\n}\n\ntype EthUsdPrice {\n price: Decimal!\n source: EthUsdPriceSource!\n observedAt: String!\n observedBlock: String!\n sourceChainId: Int!\n pair: Address!\n reserveTimestamp: Int!\n}\n\ntype ReferencePairMetadata {\n chainId: Int!\n deploymentId: ID!\n protocol: String!\n factory: Address!\n pair: Address!\n token0: Address!\n token1: Address!\n createdBlock: String!\n createdBlockHash: String!\n createdTimestamp: String!\n createdTransactionHash: String!\n}\n\n\"\"\"Current Pons-owned ERC-20 pairing asset, folded from factory events.\"\"\"\ntype PonsPairAsset {\n token: Address!\n approved: Boolean!\n phantomQuote: String\n graduationThreshold: String\n decimals: Int\n updatedBlock: String!\n}\n\ntype Query {\n ponsPairAssets(deploymentId: ID!): [PonsPairAsset!]!\n referencePairMetadata(deploymentId: ID!, pair: Address!): ReferencePairMetadata\n launches(deploymentId: ID!, phase: LaunchPhase, first: Int!, after: String): LaunchConnection!\n launch(deploymentId: ID!, token: Address!): LaunchDetail\n trendingLaunches(deploymentId: ID!, first: Int!): TrendingLaunchResult!\n \"\"\"Authoritative curve and AMM price history. Liquidity Book trades are exposed through venue-specific analytics, not valuation history.\"\"\"\n launchPriceSeries(deploymentId: ID!, token: Address!, first: Int!, after: String): LaunchPriceSeriesConnection!\n walletLaunchPositions(deploymentId: ID!, wallet: Address!, first: Int!, after: String): WalletLaunchPositionResult!\n walletLiquidityBookPositions(deploymentId: ID!, wallet: Address!, first: Int!, after: String): WalletLiquidityBookPositionResult!\n liquidityBookPosition(deploymentId: ID!, wallet: Address!, pool: Address!, binFirst: Int!, binsAfter: String): LiquidityBookPositionDetail\n protocolStats(deploymentId: ID!): ProtocolStats!\n chainDataFreshness(deploymentId: ID!): ChainDataFreshness!\n portfolioProjectionEvents(deploymentId: ID!, first: Int!, after: String): PortfolioProjectionEventConnection!\n ethUsdPrice: EthUsdPrice!\n}\n";
|
|
1
|
+
export declare const CHAIN_DATA_SCHEMA_SDL = "\"\"\"\nAn EVM address normalized to lowercase by the gateway.\n\"\"\"\nscalar Address\n\n\"\"\"\nAn opaque cursor returned by pageInfo. Consumers must return it unchanged.\n\"\"\"\nscalar Cursor\n\n\"\"\"\nAn exact quote-token amount serialized as { wei: String!, decimal: String! }.\nThe legacy `wei` key contains exact raw base units for the identified quote\nasset, including non-18-decimal ERC-20 assets. Never coerce either value to a\nJavaScript number.\n\"\"\"\nscalar ExactQuoteAmount\n\n\"\"\"\nAn exact launch-token amount serialized as { raw: String!, decimal: String! }.\nNever coerce raw or decimal values to a JavaScript number.\n\"\"\"\nscalar ExactTokenAmount\n\n\"\"\"\nAn exact decimal string. Consumers choose display precision at the UI boundary.\n\"\"\"\nscalar Decimal\n\n\"\"\"An exact amount denominated in one explicit ERC-20 quote asset.\"\"\"\ntype ExactAssetAmount {\n token: Address!\n symbol: String\n raw: String!\n decimals: Int\n decimal: Decimal\n}\n\ntype QuoteAssetVolume {\n amount: ExactAssetAmount!\n tradeCount: Int!\n}\n\nenum PonsLifecyclePhase {\n bonding\n swept\n pool_created\n rescued\n}\n\ntype PonsLaunchState {\n lifecyclePhase: PonsLifecyclePhase!\n curve: Address!\n launchConfigId: String!\n configSupply: ExactTokenAmount!\n phantomQuote: ExactAssetAmount!\n configEnabledAtLaunchBlock: Boolean!\n graduationThreshold: ExactAssetAmount!\n curveFeeBps: Int!\n creatorTaxBps: Int!\n buybackEnabled: Boolean!\n buybackController: Address\n poolFeePips: Int!\n tickSpacing: Int!\n creatorFeeRecipient: Address!\n protocolFeeRecipient: Address!\n protocolFeeShareBps: Int!\n buybackBurnBps: Int!\n hookFeeBps: Int!\n maxInternalPriceImpactBps: Int!\n sweptQuote: ExactAssetAmount!\n sweptTokens: ExactTokenAmount!\n sweptAt: String\n poolPositionId: String\n rescueRecipient: Address\n rescueQuote: ExactAssetAmount\n rescueTokens: ExactTokenAmount\n lastUpdatedBlock: String!\n lastUpdatedAt: String!\n}\n\nenum LaunchPhase {\n BONDING\n GRADUATED\n}\n\nenum IndexedLaunchPhase {\n bonding\n graduated\n}\n\nenum TradeVenue {\n curve\n amm\n lb\n}\n\nenum TradeSide {\n buy\n sell\n}\n\ntype PageInfo {\n endCursor: Cursor\n hasNextPage: Boolean!\n}\n\ntype LaunchSummary {\n id: ID!\n provider: LaunchProvider!\n pons: PonsLaunchState\n token: Address!\n quoteToken: Address!\n name: String\n symbol: String\n creator: Address!\n creatorBps: Int!\n curveFeeBps: Int!\n payoutWallet: Address!\n metadataURI: String!\n phase: IndexedLaunchPhase!\n pool: Address\n amountRaisedQuote: ExactQuoteAmount!\n amountRaisedQuoteAsset: ExactAssetAmount!\n raiseThresholdQuote: ExactQuoteAmount!\n raiseThresholdQuoteAsset: ExactAssetAmount!\n curveProgressPct: Decimal\n holderCount: Int!\n holderCountPartial: Boolean!\n volume24hQuote: ExactQuoteAmount!\n volume24hQuoteAsset: ExactAssetAmount!\n anchoredVolume24hQuote: ExactQuoteAmount!\n anchoredVolume24hQuoteAsset: ExactAssetAmount!\n volume24hHoldingsAnchored: Boolean!\n volume24hPartial: Boolean!\n volumeWindowSeconds: Int!\n totalCanonicalVolumeQuote: ExactQuoteAmount!\n totalCanonicalVolumeQuoteAsset: ExactAssetAmount!\n volumeByQuoteAsset: [QuoteAssetVolume!]!\n lbVolumeByQuoteAsset: [QuoteAssetVolume!]!\n \"\"\"Legacy 18-decimal projection. Use lbVolumeByQuoteAsset for LB accounting.\"\"\"\n totalLbVolumeQuote: ExactQuoteAmount!\n tradeCount: Int!\n lastCanonicalPrice: Decimal\n lastCanonicalPriceBlock: Int\n createdBlock: Int!\n createdTimestamp: Int!\n graduatedBlock: Int\n graduatedTimestamp: Int\n}\n\nenum LaunchProvider {\n launchonblock\n pons\n}\n\ntype LaunchConnection {\n nodes: [LaunchSummary!]!\n pageInfo: PageInfo!\n}\n\ntype LaunchPool {\n address: Address!\n poolType: String!\n token0: Address!\n token1: Address!\n quoteIsToken1: Boolean!\n quoteToken: Address!\n ignoredForRouting: Boolean!\n binStep: String\n reserveToken: ExactTokenAmount\n reserveQuote: ExactQuoteAmount\n tvlQuote: ExactQuoteAmount\n reserveQuoteAsset: ExactAssetAmount\n tvlQuoteAsset: ExactAssetAmount\n reserveSource: String!\n createdBlock: Int!\n lastUpdatedBlock: Int!\n}\n\nenum ExternalMarketProtocol {\n uniswap_v2\n uniswap_v3\n uniswap_v4\n}\n\n\"\"\"A Uniswap market whose token0 or token1 is a launch from this exact deployment.\"\"\"\ntype LaunchExternalMarket {\n id: ID!\n protocol: ExternalMarketProtocol!\n \"\"\"The v2/v3 factory or v4 PoolManager that emitted the creation event.\"\"\"\n venueAddress: Address!\n \"\"\"The pair/pool contract for v2/v3. V4 pools live inside PoolManager and have no address.\"\"\"\n poolAddress: Address\n \"\"\"The bytes32 PoolId for v4. Null for address-identified v2/v3 markets.\"\"\"\n poolId: String\n token0: Address!\n token1: Address!\n feePips: Int\n tickSpacing: Int\n hooks: Address\n createdBlock: Int!\n createdTransactionHash: String!\n createdLogIndex: Int!\n}\n\ntype LaunchTrade {\n id: ID!\n venue: TradeVenue!\n side: TradeSide!\n sender: Address!\n recipient: Address!\n attributedWallet: Address\n quoteToken: Address!\n quoteAmount: ExactQuoteAmount!\n quoteAmountAsset: ExactAssetAmount!\n tokenAmount: ExactTokenAmount!\n price: Decimal\n blockNumber: Int!\n blockTimestamp: Int!\n transactionHash: String!\n logIndex: Int!\n}\n\ntype LaunchFeeEvent {\n id: ID!\n kind: String!\n economicType: String!\n pair: Address\n quoteToken: Address!\n creatorTokenAmount: ExactTokenAmount!\n creatorQuoteAmount: ExactQuoteAmount!\n creatorQuoteAmountAsset: ExactAssetAmount!\n protocolTokenAmount: ExactTokenAmount!\n protocolQuoteAmount: ExactQuoteAmount!\n protocolQuoteAmountAsset: ExactAssetAmount!\n payoutAmount: ExactQuoteAmount!\n payoutStatus: String\n blockNumber: Int!\n blockTimestamp: Int!\n transactionHash: String!\n}\n\ntype SupplySlice {\n amount: ExactTokenAmount!\n \"\"\"Floor(amount * 10_000 / originalSupply). Exact raw amounts remain authoritative.\"\"\"\n basisPoints: Int!\n}\n\ntype SupplyDistribution {\n originalSupply: ExactTokenAmount!\n bondingCurveCustody: SupplySlice!\n graduationPoolLiquidity: SupplySlice!\n lbLiquidity: SupplySlice!\n \"\"\"Pool token custody excluded from tradable reserves, including accrued protocol fees.\"\"\"\n poolNonLiquidityCustody: SupplySlice!\n lockedDead: SupplySlice!\n \"\"\"Known Launchpad/Router custody outside the active bonding-curve inventory.\"\"\"\n otherProtocolCustody: SupplySlice!\n \"\"\"All supply outside known protocol and dead-address custody.\"\"\"\n userHeld: SupplySlice!\n reconciled: Boolean!\n partial: Boolean!\n}\n\ntype LaunchDetail {\n id: ID!\n provider: LaunchProvider!\n pons: PonsLaunchState\n token: Address!\n quoteToken: Address!\n name: String\n symbol: String\n creator: Address!\n creatorBps: Int!\n curveFeeBps: Int!\n payoutWallet: Address!\n metadataURI: String!\n phase: IndexedLaunchPhase!\n pool: Address\n amountRaisedQuote: ExactQuoteAmount!\n amountRaisedQuoteAsset: ExactAssetAmount!\n raiseThresholdQuote: ExactQuoteAmount!\n raiseThresholdQuoteAsset: ExactAssetAmount!\n curveProgressPct: Decimal\n holderCount: Int!\n holderCountPartial: Boolean!\n volume24hQuote: ExactQuoteAmount!\n volume24hQuoteAsset: ExactAssetAmount!\n anchoredVolume24hQuote: ExactQuoteAmount!\n anchoredVolume24hQuoteAsset: ExactAssetAmount!\n volume24hHoldingsAnchored: Boolean!\n volume24hPartial: Boolean!\n volumeWindowSeconds: Int!\n totalCanonicalVolumeQuote: ExactQuoteAmount!\n totalCanonicalVolumeQuoteAsset: ExactAssetAmount!\n volumeByQuoteAsset: [QuoteAssetVolume!]!\n lbVolumeByQuoteAsset: [QuoteAssetVolume!]!\n \"\"\"Legacy 18-decimal projection. Use lbVolumeByQuoteAsset for LB accounting.\"\"\"\n totalLbVolumeQuote: ExactQuoteAmount!\n tradeCount: Int!\n lastCanonicalPrice: Decimal\n lastCanonicalPriceBlock: Int\n createdBlock: Int!\n createdTimestamp: Int!\n graduatedBlock: Int\n graduatedTimestamp: Int\n pools: [LaunchPool!]!\n poolsPartial: Boolean!\n externalMarkets: [LaunchExternalMarket!]!\n externalMarketsPartial: Boolean!\n supplyDistribution: SupplyDistribution!\n recentTrades: [LaunchTrade!]!\n fees: [LaunchFeeEvent!]!\n}\n\ntype TrendingLaunch {\n token: Address!\n name: String\n symbol: String\n phase: IndexedLaunchPhase!\n lastCanonicalPrice: Decimal\n recentVolumeQuote: ExactQuoteAmount!\n rankVolumeQuote: ExactQuoteAmount!\n retainedValueQuote: ExactQuoteAmount\n holdingsAnchored: Boolean!\n distinctTraders: Int!\n recentTrades: Int!\n changePct: Decimal!\n windowSeconds: Int!\n}\n\ntype TrendingLaunchResult {\n nodes: [TrendingLaunch!]!\n partial: Boolean!\n minDistinctTraders: Int!\n maxTraderPct: Int!\n holdingsMultiple: Int!\n}\n\ntype LaunchPricePoint {\n cursor: Cursor!\n timestamp: Int!\n blockNumber: Int!\n price: Decimal\n volumeQuote: ExactQuoteAmount!\n volumeQuoteAsset: ExactAssetAmount!\n venue: TradeVenue!\n side: TradeSide!\n transactionHash: String!\n}\n\ntype LaunchPriceSeriesConnection {\n nodes: [LaunchPricePoint!]!\n pageInfo: PageInfo!\n}\n\ntype WalletLaunchPosition {\n \"\"\"CAIP-style chain-local token identity used by portfolio observation consumers.\"\"\"\n tokenIdentity: ID!\n token: Address!\n name: String\n symbol: String\n decimals: Int\n phase: IndexedLaunchPhase!\n balance: ExactTokenAmount!\n \"\"\"Exact display amount when token decimals are known.\"\"\"\n amountDisplay: Decimal\n tokenBalance: String!\n \"\"\"Exact quote asset used by this launch and all quote-denominated position fields.\"\"\"\n quoteToken: Address!\n valueQuote: ExactQuoteAmount!\n valueQuoteAsset: ExactAssetAmount!\n investedQuote: ExactQuoteAmount!\n investedQuoteAsset: ExactAssetAmount!\n proceedsQuote: ExactQuoteAmount!\n proceedsQuoteAsset: ExactAssetAmount!\n pnlQuote: ExactQuoteAmount!\n pnlQuoteAsset: ExactAssetAmount!\n lastCanonicalPrice: Decimal\n \"\"\"Exact ERC-20 quote asset for lastCanonicalPrice; null when price is unavailable.\"\"\"\n lastCanonicalPriceQuoteToken: Address\n \"\"\"Display quote units per display token unit, normalized with both ERC-20 decimal scales.\"\"\"\n lastCanonicalUnitPrice: Decimal\n lastCanonicalPriceBlock: String\n \"\"\"Timestamp of the exact canonical trade that produced lastCanonicalPrice.\"\"\"\n lastCanonicalPriceObservedAt: String\n \"\"\"Deterministic watermark of the indexed wallet balance row.\"\"\"\n sourceWatermark: String!\n observedAtBlock: String!\n observedAt: String!\n buyCount: Int!\n sellCount: Int!\n}\n\ntype WalletLaunchPositionTotals {\n \"\"\"Legacy wrapped-native-only totals. Null when the portfolio contains another quote asset.\"\"\"\n valueQuote: ExactQuoteAmount!\n investedQuote: ExactQuoteAmount!\n proceedsQuote: ExactQuoteAmount!\n pnlQuote: ExactQuoteAmount!\n}\n\ntype WalletLaunchPositionAssetTotals {\n quoteToken: Address!\n valueQuoteAsset: ExactAssetAmount!\n investedQuoteAsset: ExactAssetAmount!\n proceedsQuoteAsset: ExactAssetAmount!\n pnlQuoteAsset: ExactAssetAmount!\n}\n\n\"\"\"Indexer checkpoint observed by the gateway while capturing one bounded page.\"\"\"\ntype PortfolioObservationWatermark {\n sourceWatermark: String!\n observedAtBlock: String!\n observedAt: String!\n}\n\ntype WalletLaunchPositionResult {\n wallet: Address!\n partial: Boolean!\n observationWatermark: PortfolioObservationWatermark\n positions: [WalletLaunchPosition!]!\n pageInfo: PageInfo!\n \"\"\"Legacy wrapped-native totals, withheld for partial scans or portfolios containing another quote asset.\"\"\"\n totals: WalletLaunchPositionTotals\n \"\"\"Complete totals grouped by exact quote asset; null when the totals scan is partial.\"\"\"\n totalsByQuoteAsset: [WalletLaunchPositionAssetTotals!]\n}\n\n\"\"\"An LB pair indexed from the configured factory, whether or not either token belongs to the configured launchpad deployment.\"\"\"\ntype LiquidityBookPair {\n address: Address!\n token0: Address!\n token1: Address!\n binStep: String!\n activeBinId: String\n createdBlock: String!\n lastUpdatedBlock: String!\n}\n\n\"\"\"Event-folded ERC-1155 receipt ownership for one wallet in one LB pair.\"\"\"\ntype LiquidityBookPosition {\n poolAddress: Address!\n walletAddress: Address!\n activeBinCount: String!\n totalReceiptBalance: String!\n lastUpdatedBlock: String!\n lastUpdatedBlockHash: String!\n lastUpdatedTimestamp: String!\n lastUpdatedTransactionHash: String!\n pair: LiquidityBookPair\n \"\"\"Exact checkpoint-bound underlying assets; null unless every active bin is resolved.\"\"\"\n underlyingAssets: [PortfolioUnderlyingAsset!]\n}\n\ntype PortfolioUnderlyingAsset {\n tokenIdentity: ID!\n token: Address!\n decimals: Int!\n amountRaw: String!\n amountDisplay: Decimal!\n lastCanonicalPrice: Decimal\n lastCanonicalPriceQuoteToken: Address\n lastCanonicalUnitPrice: Decimal\n lastCanonicalPriceBlock: String\n lastCanonicalPriceObservedAt: String\n}\n\ntype WalletLiquidityBookPositionResult {\n wallet: Address!\n partial: Boolean!\n observationWatermark: PortfolioObservationWatermark\n positions: [LiquidityBookPosition!]!\n pageInfo: PageInfo!\n}\n\ntype LiquidityBookPositionBin {\n cursor: Cursor!\n binId: String!\n receiptBalance: String!\n lastUpdatedBlock: String!\n lastUpdatedBlockHash: String!\n lastUpdatedTimestamp: String!\n lastUpdatedTransactionHash: String!\n}\n\ntype LiquidityBookPositionDetail {\n position: LiquidityBookPosition!\n bins: [LiquidityBookPositionBin!]!\n binsPageInfo: PageInfo!\n partial: Boolean!\n}\n\ntype ProtocolStats {\n launched: Int!\n graduated: Int!\n bonding: Int!\n poolCount: Int!\n tradeCount: Int!\n tvlQuote: ExactQuoteAmount\n tvlPartial: Boolean!\n volumePartial: Boolean!\n totalVolumeQuote: ExactQuoteAmount\n curveVolumeQuote: ExactQuoteAmount\n ammVolumeQuote: ExactQuoteAmount\n lbVolumeQuote: ExactQuoteAmount\n volumeByQuoteAsset: [QuoteAssetVolume!]!\n lbVolumeByQuoteAsset: [QuoteAssetVolume!]!\n lastIndexedBlock: Int!\n lastUpdatedTimestamp: Int!\n}\n\ntype ChainDataFreshness {\n deploymentId: ID!\n healthy: Boolean!\n backfilling: Boolean!\n chainId: Int!\n launchpadAddress: Address!\n startBlock: Int!\n chainHead: Int!\n indexedHead: Int!\n sourceHead: Int!\n blockLag: Int!\n configuredBlockLag: Int!\n lastProcessedAt: String\n hasuraReachable: Boolean!\n rpcReachable: Boolean!\n}\n\ntype PortfolioProjectionEvent {\n id: ID!\n kind: String!\n chainId: String!\n wallet: Address!\n blockNumber: String!\n blockHash: String!\n blockTimestamp: String!\n transactionHash: String!\n transactionIndex: String!\n logIndex: String!\n sourceWatermark: String!\n cursor: Cursor!\n}\n\n\"\"\"Canonical-head-bounded invalidation hints; consumers must retain periodic full reconciliation for reorg repair.\"\"\"\ntype PortfolioProjectionEventConnection {\n nodes: [PortfolioProjectionEvent!]!\n pageInfo: PageInfo!\n canonicalBlock: String!\n}\n\nenum EthUsdPriceSource {\n WETH_USDG_SPOT\n}\n\ntype EthUsdPrice {\n price: Decimal!\n source: EthUsdPriceSource!\n observedAt: String!\n observedBlock: String!\n sourceChainId: Int!\n pair: Address!\n reserveTimestamp: Int!\n}\n\ntype ReferencePairMetadata {\n chainId: Int!\n deploymentId: ID!\n protocol: String!\n factory: Address!\n pair: Address!\n token0: Address!\n token1: Address!\n createdBlock: String!\n createdBlockHash: String!\n createdTimestamp: String!\n createdTransactionHash: String!\n}\n\n\"\"\"Current Pons-owned ERC-20 pairing asset, folded from factory events.\"\"\"\ntype PonsPairAsset {\n token: Address!\n approved: Boolean!\n phantomQuote: String\n graduationThreshold: String\n decimals: Int\n updatedBlock: String!\n}\n\ntype Query {\n ponsPairAssets(deploymentId: ID!): [PonsPairAsset!]!\n referencePairMetadata(deploymentId: ID!, pair: Address!): ReferencePairMetadata\n launches(deploymentId: ID!, provider: LaunchProvider, phase: LaunchPhase, first: Int!, after: String): LaunchConnection!\n launch(deploymentId: ID!, token: Address!): LaunchDetail\n trendingLaunches(deploymentId: ID!, provider: LaunchProvider, first: Int!): TrendingLaunchResult!\n \"\"\"Authoritative curve and AMM price history. Liquidity Book trades are exposed through venue-specific analytics, not valuation history.\"\"\"\n launchPriceSeries(deploymentId: ID!, token: Address!, first: Int!, after: String): LaunchPriceSeriesConnection!\n walletLaunchPositions(deploymentId: ID!, wallet: Address!, first: Int!, after: String): WalletLaunchPositionResult!\n walletLiquidityBookPositions(deploymentId: ID!, wallet: Address!, first: Int!, after: String): WalletLiquidityBookPositionResult!\n liquidityBookPosition(deploymentId: ID!, wallet: Address!, pool: Address!, binFirst: Int!, binsAfter: String): LiquidityBookPositionDetail\n protocolStats(deploymentId: ID!, provider: LaunchProvider): ProtocolStats!\n chainDataFreshness(deploymentId: ID!): ChainDataFreshness!\n portfolioProjectionEvents(deploymentId: ID!, first: Int!, after: String): PortfolioProjectionEventConnection!\n ethUsdPrice: EthUsdPrice!\n}\n";
|
|
2
2
|
export declare const CHAIN_DATA_OPERATIONS: {
|
|
3
3
|
readonly LaunchFeed: {
|
|
4
4
|
readonly name: "LaunchFeed";
|
|
5
5
|
readonly type: "query";
|
|
6
6
|
readonly rootField: "launches";
|
|
7
|
-
readonly document: "query LaunchFeed($deploymentId: ID!, $phase: LaunchPhase, $first: Int!, $after: String) {\n launches(deploymentId: $deploymentId, phase: $phase, first: $first, after: $after) {\n nodes { id provider pons { lifecyclePhase curve launchConfigId configSupply phantomQuote { token symbol raw decimals decimal } configEnabledAtLaunchBlock graduationThreshold { token symbol raw decimals decimal } curveFeeBps creatorTaxBps buybackEnabled buybackController poolFeePips tickSpacing creatorFeeRecipient protocolFeeRecipient protocolFeeShareBps buybackBurnBps hookFeeBps maxInternalPriceImpactBps sweptQuote { token symbol raw decimals decimal } sweptTokens sweptAt poolPositionId rescueRecipient rescueQuote { token symbol raw decimals decimal } rescueTokens lastUpdatedBlock lastUpdatedAt } token quoteToken name symbol creator creatorBps curveFeeBps payoutWallet metadataURI phase pool amountRaisedQuote amountRaisedQuoteAsset { token symbol raw decimals decimal } raiseThresholdQuote raiseThresholdQuoteAsset { token symbol raw decimals decimal } curveProgressPct holderCount holderCountPartial volume24hQuote volume24hQuoteAsset { token symbol raw decimals decimal } anchoredVolume24hQuote anchoredVolume24hQuoteAsset { token symbol raw decimals decimal } volume24hHoldingsAnchored volume24hPartial volumeWindowSeconds totalCanonicalVolumeQuote totalCanonicalVolumeQuoteAsset { token symbol raw decimals decimal } volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } totalLbVolumeQuote tradeCount lastCanonicalPrice lastCanonicalPriceBlock createdBlock createdTimestamp graduatedBlock graduatedTimestamp }\n pageInfo { endCursor hasNextPage }\n }\n}";
|
|
8
|
-
readonly sha256Hash: "
|
|
7
|
+
readonly document: "query LaunchFeed($deploymentId: ID!, $provider: LaunchProvider, $phase: LaunchPhase, $first: Int!, $after: String) {\n launches(deploymentId: $deploymentId, provider: $provider, phase: $phase, first: $first, after: $after) {\n nodes { id provider pons { lifecyclePhase curve launchConfigId configSupply phantomQuote { token symbol raw decimals decimal } configEnabledAtLaunchBlock graduationThreshold { token symbol raw decimals decimal } curveFeeBps creatorTaxBps buybackEnabled buybackController poolFeePips tickSpacing creatorFeeRecipient protocolFeeRecipient protocolFeeShareBps buybackBurnBps hookFeeBps maxInternalPriceImpactBps sweptQuote { token symbol raw decimals decimal } sweptTokens sweptAt poolPositionId rescueRecipient rescueQuote { token symbol raw decimals decimal } rescueTokens lastUpdatedBlock lastUpdatedAt } token quoteToken name symbol creator creatorBps curveFeeBps payoutWallet metadataURI phase pool amountRaisedQuote amountRaisedQuoteAsset { token symbol raw decimals decimal } raiseThresholdQuote raiseThresholdQuoteAsset { token symbol raw decimals decimal } curveProgressPct holderCount holderCountPartial volume24hQuote volume24hQuoteAsset { token symbol raw decimals decimal } anchoredVolume24hQuote anchoredVolume24hQuoteAsset { token symbol raw decimals decimal } volume24hHoldingsAnchored volume24hPartial volumeWindowSeconds totalCanonicalVolumeQuote totalCanonicalVolumeQuoteAsset { token symbol raw decimals decimal } volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } totalLbVolumeQuote tradeCount lastCanonicalPrice lastCanonicalPriceBlock createdBlock createdTimestamp graduatedBlock graduatedTimestamp }\n pageInfo { endCursor hasNextPage }\n }\n}";
|
|
8
|
+
readonly sha256Hash: "6987b2a3414e200023540be9f07358807dd509bb53c4a35230fa3b445d64c94e";
|
|
9
9
|
};
|
|
10
10
|
readonly LaunchDetail: {
|
|
11
11
|
readonly name: "LaunchDetail";
|
|
@@ -18,8 +18,8 @@ export declare const CHAIN_DATA_OPERATIONS: {
|
|
|
18
18
|
readonly name: "TrendingLaunches";
|
|
19
19
|
readonly type: "query";
|
|
20
20
|
readonly rootField: "trendingLaunches";
|
|
21
|
-
readonly document: "query TrendingLaunches($deploymentId: ID!, $first: Int!) {\n trendingLaunches(deploymentId: $deploymentId, first: $first) {\n nodes { token name symbol phase lastCanonicalPrice recentVolumeQuote rankVolumeQuote retainedValueQuote holdingsAnchored distinctTraders recentTrades changePct windowSeconds }\n partial minDistinctTraders maxTraderPct holdingsMultiple\n }\n}";
|
|
22
|
-
readonly sha256Hash: "
|
|
21
|
+
readonly document: "query TrendingLaunches($deploymentId: ID!, $provider: LaunchProvider, $first: Int!) {\n trendingLaunches(deploymentId: $deploymentId, provider: $provider, first: $first) {\n nodes { token name symbol phase lastCanonicalPrice recentVolumeQuote rankVolumeQuote retainedValueQuote holdingsAnchored distinctTraders recentTrades changePct windowSeconds }\n partial minDistinctTraders maxTraderPct holdingsMultiple\n }\n}";
|
|
22
|
+
readonly sha256Hash: "0133b5cada9868750d489a54701ebe27a0fb25cbc1a5c569807fbb427c218878";
|
|
23
23
|
};
|
|
24
24
|
readonly LaunchPriceSeries: {
|
|
25
25
|
readonly name: "LaunchPriceSeries";
|
|
@@ -67,8 +67,8 @@ export declare const CHAIN_DATA_OPERATIONS: {
|
|
|
67
67
|
readonly name: "ProtocolStats";
|
|
68
68
|
readonly type: "query";
|
|
69
69
|
readonly rootField: "protocolStats";
|
|
70
|
-
readonly document: "query ProtocolStats($deploymentId: ID
|
|
71
|
-
readonly sha256Hash: "
|
|
70
|
+
readonly document: "query ProtocolStats($deploymentId: ID!, $provider: LaunchProvider) {\n protocolStats(deploymentId: $deploymentId, provider: $provider) { launched graduated bonding poolCount tradeCount tvlQuote tvlPartial volumePartial totalVolumeQuote curveVolumeQuote ammVolumeQuote lbVolumeQuote volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lastIndexedBlock lastUpdatedTimestamp }\n}";
|
|
71
|
+
readonly sha256Hash: "1bdf93bfa441b10997f810453a9216bb41b0deae538319d945979a2c74e348da";
|
|
72
72
|
};
|
|
73
73
|
readonly ChainDataFreshness: {
|
|
74
74
|
readonly name: "ChainDataFreshness";
|
|
@@ -107,16 +107,16 @@ export declare const CHAIN_DATA_OPERATIONS: {
|
|
|
107
107
|
};
|
|
108
108
|
};
|
|
109
109
|
export declare const CHAIN_DATA_OPERATION_IDS: {
|
|
110
|
-
readonly LaunchFeed: "
|
|
110
|
+
readonly LaunchFeed: "6987b2a3414e200023540be9f07358807dd509bb53c4a35230fa3b445d64c94e";
|
|
111
111
|
readonly LaunchDetail: "55d8759a6dc2a12d3804ce913326d435eaa0b253dbf2ca399870e962e02211d8";
|
|
112
|
-
readonly TrendingLaunches: "
|
|
112
|
+
readonly TrendingLaunches: "0133b5cada9868750d489a54701ebe27a0fb25cbc1a5c569807fbb427c218878";
|
|
113
113
|
readonly LaunchPriceSeries: "a26c7a2e4aa1a386b0fe499b9a661263bfd700e36bf5f7b065e975228c21cbb1";
|
|
114
114
|
readonly WalletLaunchPositions: "50296690ad4968a8e1fbef342268eb0907ca753b8fd4ab464e5d6c5339e2e800";
|
|
115
115
|
readonly PortfolioWalletBalances: "d7a6d20786eef66ddd1211cf97f2e2eba2e445784dc6893ed6f6c4a5d4b511e5";
|
|
116
116
|
readonly WalletLiquidityBookPositions: "7aac47e7b94c774421ebdbe4f24130ba885f23384a51892c043b75020b05e358";
|
|
117
117
|
readonly PortfolioWalletLiquidityPositions: "f41113a529249e6a0a2eceeda185a443ac920b569c36fbfb56cf17eac086da83";
|
|
118
118
|
readonly LiquidityBookPosition: "26099c27439338395b45046b0cc5a0604ab5c8deaab7b4154bd1eb6b68b55056";
|
|
119
|
-
readonly ProtocolStats: "
|
|
119
|
+
readonly ProtocolStats: "1bdf93bfa441b10997f810453a9216bb41b0deae538319d945979a2c74e348da";
|
|
120
120
|
readonly ChainDataFreshness: "8eaf5642951345717c009269cc38880998cc4d17c05fd7bff3a78ee37cea1596";
|
|
121
121
|
readonly PortfolioProjectionEvents: "d9c94fe7ddb263121e38956a8e6870a5c528e829c461b33154777f27122c803f";
|
|
122
122
|
readonly EthUsdPrice: "0bfa48cc75fef63d384cfa839d346943c14850cb6fdcbe49be6d8bc03d366369";
|
|
@@ -127,8 +127,8 @@ export declare const CHAIN_DATA_PERSISTED_QUERY_MANIFEST: {
|
|
|
127
127
|
readonly format: "apollo-persisted-query-manifest";
|
|
128
128
|
readonly version: 1;
|
|
129
129
|
readonly operations: readonly [{
|
|
130
|
-
readonly id: "
|
|
131
|
-
readonly body: "query LaunchFeed($deploymentId: ID!, $phase: LaunchPhase, $first: Int!, $after: String) {\n launches(deploymentId: $deploymentId, phase: $phase, first: $first, after: $after) {\n nodes { id provider pons { lifecyclePhase curve launchConfigId configSupply phantomQuote { token symbol raw decimals decimal } configEnabledAtLaunchBlock graduationThreshold { token symbol raw decimals decimal } curveFeeBps creatorTaxBps buybackEnabled buybackController poolFeePips tickSpacing creatorFeeRecipient protocolFeeRecipient protocolFeeShareBps buybackBurnBps hookFeeBps maxInternalPriceImpactBps sweptQuote { token symbol raw decimals decimal } sweptTokens sweptAt poolPositionId rescueRecipient rescueQuote { token symbol raw decimals decimal } rescueTokens lastUpdatedBlock lastUpdatedAt } token quoteToken name symbol creator creatorBps curveFeeBps payoutWallet metadataURI phase pool amountRaisedQuote amountRaisedQuoteAsset { token symbol raw decimals decimal } raiseThresholdQuote raiseThresholdQuoteAsset { token symbol raw decimals decimal } curveProgressPct holderCount holderCountPartial volume24hQuote volume24hQuoteAsset { token symbol raw decimals decimal } anchoredVolume24hQuote anchoredVolume24hQuoteAsset { token symbol raw decimals decimal } volume24hHoldingsAnchored volume24hPartial volumeWindowSeconds totalCanonicalVolumeQuote totalCanonicalVolumeQuoteAsset { token symbol raw decimals decimal } volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } totalLbVolumeQuote tradeCount lastCanonicalPrice lastCanonicalPriceBlock createdBlock createdTimestamp graduatedBlock graduatedTimestamp }\n pageInfo { endCursor hasNextPage }\n }\n}";
|
|
130
|
+
readonly id: "6987b2a3414e200023540be9f07358807dd509bb53c4a35230fa3b445d64c94e";
|
|
131
|
+
readonly body: "query LaunchFeed($deploymentId: ID!, $provider: LaunchProvider, $phase: LaunchPhase, $first: Int!, $after: String) {\n launches(deploymentId: $deploymentId, provider: $provider, phase: $phase, first: $first, after: $after) {\n nodes { id provider pons { lifecyclePhase curve launchConfigId configSupply phantomQuote { token symbol raw decimals decimal } configEnabledAtLaunchBlock graduationThreshold { token symbol raw decimals decimal } curveFeeBps creatorTaxBps buybackEnabled buybackController poolFeePips tickSpacing creatorFeeRecipient protocolFeeRecipient protocolFeeShareBps buybackBurnBps hookFeeBps maxInternalPriceImpactBps sweptQuote { token symbol raw decimals decimal } sweptTokens sweptAt poolPositionId rescueRecipient rescueQuote { token symbol raw decimals decimal } rescueTokens lastUpdatedBlock lastUpdatedAt } token quoteToken name symbol creator creatorBps curveFeeBps payoutWallet metadataURI phase pool amountRaisedQuote amountRaisedQuoteAsset { token symbol raw decimals decimal } raiseThresholdQuote raiseThresholdQuoteAsset { token symbol raw decimals decimal } curveProgressPct holderCount holderCountPartial volume24hQuote volume24hQuoteAsset { token symbol raw decimals decimal } anchoredVolume24hQuote anchoredVolume24hQuoteAsset { token symbol raw decimals decimal } volume24hHoldingsAnchored volume24hPartial volumeWindowSeconds totalCanonicalVolumeQuote totalCanonicalVolumeQuoteAsset { token symbol raw decimals decimal } volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } totalLbVolumeQuote tradeCount lastCanonicalPrice lastCanonicalPriceBlock createdBlock createdTimestamp graduatedBlock graduatedTimestamp }\n pageInfo { endCursor hasNextPage }\n }\n}";
|
|
132
132
|
readonly name: "LaunchFeed";
|
|
133
133
|
readonly type: "query";
|
|
134
134
|
}, {
|
|
@@ -137,8 +137,8 @@ export declare const CHAIN_DATA_PERSISTED_QUERY_MANIFEST: {
|
|
|
137
137
|
readonly name: "LaunchDetail";
|
|
138
138
|
readonly type: "query";
|
|
139
139
|
}, {
|
|
140
|
-
readonly id: "
|
|
141
|
-
readonly body: "query TrendingLaunches($deploymentId: ID!, $first: Int!) {\n trendingLaunches(deploymentId: $deploymentId, first: $first) {\n nodes { token name symbol phase lastCanonicalPrice recentVolumeQuote rankVolumeQuote retainedValueQuote holdingsAnchored distinctTraders recentTrades changePct windowSeconds }\n partial minDistinctTraders maxTraderPct holdingsMultiple\n }\n}";
|
|
140
|
+
readonly id: "0133b5cada9868750d489a54701ebe27a0fb25cbc1a5c569807fbb427c218878";
|
|
141
|
+
readonly body: "query TrendingLaunches($deploymentId: ID!, $provider: LaunchProvider, $first: Int!) {\n trendingLaunches(deploymentId: $deploymentId, provider: $provider, first: $first) {\n nodes { token name symbol phase lastCanonicalPrice recentVolumeQuote rankVolumeQuote retainedValueQuote holdingsAnchored distinctTraders recentTrades changePct windowSeconds }\n partial minDistinctTraders maxTraderPct holdingsMultiple\n }\n}";
|
|
142
142
|
readonly name: "TrendingLaunches";
|
|
143
143
|
readonly type: "query";
|
|
144
144
|
}, {
|
|
@@ -172,8 +172,8 @@ export declare const CHAIN_DATA_PERSISTED_QUERY_MANIFEST: {
|
|
|
172
172
|
readonly name: "LiquidityBookPosition";
|
|
173
173
|
readonly type: "query";
|
|
174
174
|
}, {
|
|
175
|
-
readonly id: "
|
|
176
|
-
readonly body: "query ProtocolStats($deploymentId: ID
|
|
175
|
+
readonly id: "1bdf93bfa441b10997f810453a9216bb41b0deae538319d945979a2c74e348da";
|
|
176
|
+
readonly body: "query ProtocolStats($deploymentId: ID!, $provider: LaunchProvider) {\n protocolStats(deploymentId: $deploymentId, provider: $provider) { launched graduated bonding poolCount tradeCount tvlQuote tvlPartial volumePartial totalVolumeQuote curveVolumeQuote ammVolumeQuote lbVolumeQuote volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lastIndexedBlock lastUpdatedTimestamp }\n}";
|
|
177
177
|
readonly name: "ProtocolStats";
|
|
178
178
|
readonly type: "query";
|
|
179
179
|
}, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations.generated.d.ts","sourceRoot":"","sources":["../src/operations.generated.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,qBAAqB,
|
|
1
|
+
{"version":3,"file":"operations.generated.d.ts","sourceRoot":"","sources":["../src/operations.generated.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,qBAAqB,8zhBAA8zhB,CAAC;AAEj2hB,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0GxB,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;CAgB3B,CAAC;AAEX,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+FtC,CAAC;AAEX,MAAM,MAAM,sBAAsB,GAAG,MAAM,OAAO,qBAAqB,CAAC;AACxE,MAAM,MAAM,2BAA2B,GAAG,CAAC,OAAO,qBAAqB,CAAC,CAAC,sBAAsB,CAAC,CAAC"}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
/* This file is generated by pnpm --filter @reptilianhq/chain-data-contract generate. */
|
|
2
|
-
export const CHAIN_DATA_SCHEMA_SDL = "\"\"\"\nAn EVM address normalized to lowercase by the gateway.\n\"\"\"\nscalar Address\n\n\"\"\"\nAn opaque cursor returned by pageInfo. Consumers must return it unchanged.\n\"\"\"\nscalar Cursor\n\n\"\"\"\nAn exact quote-token amount serialized as { wei: String!, decimal: String! }.\nThe legacy `wei` key contains exact raw base units for the identified quote\nasset, including non-18-decimal ERC-20 assets. Never coerce either value to a\nJavaScript number.\n\"\"\"\nscalar ExactQuoteAmount\n\n\"\"\"\nAn exact launch-token amount serialized as { raw: String!, decimal: String! }.\nNever coerce raw or decimal values to a JavaScript number.\n\"\"\"\nscalar ExactTokenAmount\n\n\"\"\"\nAn exact decimal string. Consumers choose display precision at the UI boundary.\n\"\"\"\nscalar Decimal\n\n\"\"\"An exact amount denominated in one explicit ERC-20 quote asset.\"\"\"\ntype ExactAssetAmount {\n token: Address!\n symbol: String\n raw: String!\n decimals: Int\n decimal: Decimal\n}\n\ntype QuoteAssetVolume {\n amount: ExactAssetAmount!\n tradeCount: Int!\n}\n\nenum PonsLifecyclePhase {\n bonding\n swept\n pool_created\n rescued\n}\n\ntype PonsLaunchState {\n lifecyclePhase: PonsLifecyclePhase!\n curve: Address!\n launchConfigId: String!\n configSupply: ExactTokenAmount!\n phantomQuote: ExactAssetAmount!\n configEnabledAtLaunchBlock: Boolean!\n graduationThreshold: ExactAssetAmount!\n curveFeeBps: Int!\n creatorTaxBps: Int!\n buybackEnabled: Boolean!\n buybackController: Address\n poolFeePips: Int!\n tickSpacing: Int!\n creatorFeeRecipient: Address!\n protocolFeeRecipient: Address!\n protocolFeeShareBps: Int!\n buybackBurnBps: Int!\n hookFeeBps: Int!\n maxInternalPriceImpactBps: Int!\n sweptQuote: ExactAssetAmount!\n sweptTokens: ExactTokenAmount!\n sweptAt: String\n poolPositionId: String\n rescueRecipient: Address\n rescueQuote: ExactAssetAmount\n rescueTokens: ExactTokenAmount\n lastUpdatedBlock: String!\n lastUpdatedAt: String!\n}\n\nenum LaunchPhase {\n BONDING\n GRADUATED\n}\n\nenum IndexedLaunchPhase {\n bonding\n graduated\n}\n\nenum TradeVenue {\n curve\n amm\n lb\n}\n\nenum TradeSide {\n buy\n sell\n}\n\ntype PageInfo {\n endCursor: Cursor\n hasNextPage: Boolean!\n}\n\ntype LaunchSummary {\n id: ID!\n provider: LaunchProvider!\n pons: PonsLaunchState\n token: Address!\n quoteToken: Address!\n name: String\n symbol: String\n creator: Address!\n creatorBps: Int!\n curveFeeBps: Int!\n payoutWallet: Address!\n metadataURI: String!\n phase: IndexedLaunchPhase!\n pool: Address\n amountRaisedQuote: ExactQuoteAmount!\n amountRaisedQuoteAsset: ExactAssetAmount!\n raiseThresholdQuote: ExactQuoteAmount!\n raiseThresholdQuoteAsset: ExactAssetAmount!\n curveProgressPct: Decimal\n holderCount: Int!\n holderCountPartial: Boolean!\n volume24hQuote: ExactQuoteAmount!\n volume24hQuoteAsset: ExactAssetAmount!\n anchoredVolume24hQuote: ExactQuoteAmount!\n anchoredVolume24hQuoteAsset: ExactAssetAmount!\n volume24hHoldingsAnchored: Boolean!\n volume24hPartial: Boolean!\n volumeWindowSeconds: Int!\n totalCanonicalVolumeQuote: ExactQuoteAmount!\n totalCanonicalVolumeQuoteAsset: ExactAssetAmount!\n volumeByQuoteAsset: [QuoteAssetVolume!]!\n lbVolumeByQuoteAsset: [QuoteAssetVolume!]!\n \"\"\"Legacy 18-decimal projection. Use lbVolumeByQuoteAsset for LB accounting.\"\"\"\n totalLbVolumeQuote: ExactQuoteAmount!\n tradeCount: Int!\n lastCanonicalPrice: Decimal\n lastCanonicalPriceBlock: Int\n createdBlock: Int!\n createdTimestamp: Int!\n graduatedBlock: Int\n graduatedTimestamp: Int\n}\n\nenum LaunchProvider {\n launchonblock\n pons\n}\n\ntype LaunchConnection {\n nodes: [LaunchSummary!]!\n pageInfo: PageInfo!\n}\n\ntype LaunchPool {\n address: Address!\n poolType: String!\n token0: Address!\n token1: Address!\n quoteIsToken1: Boolean!\n quoteToken: Address!\n ignoredForRouting: Boolean!\n binStep: String\n reserveToken: ExactTokenAmount\n reserveQuote: ExactQuoteAmount\n tvlQuote: ExactQuoteAmount\n reserveQuoteAsset: ExactAssetAmount\n tvlQuoteAsset: ExactAssetAmount\n reserveSource: String!\n createdBlock: Int!\n lastUpdatedBlock: Int!\n}\n\nenum ExternalMarketProtocol {\n uniswap_v2\n uniswap_v3\n uniswap_v4\n}\n\n\"\"\"A Uniswap market whose token0 or token1 is a launch from this exact deployment.\"\"\"\ntype LaunchExternalMarket {\n id: ID!\n protocol: ExternalMarketProtocol!\n \"\"\"The v2/v3 factory or v4 PoolManager that emitted the creation event.\"\"\"\n venueAddress: Address!\n \"\"\"The pair/pool contract for v2/v3. V4 pools live inside PoolManager and have no address.\"\"\"\n poolAddress: Address\n \"\"\"The bytes32 PoolId for v4. Null for address-identified v2/v3 markets.\"\"\"\n poolId: String\n token0: Address!\n token1: Address!\n feePips: Int\n tickSpacing: Int\n hooks: Address\n createdBlock: Int!\n createdTransactionHash: String!\n createdLogIndex: Int!\n}\n\ntype LaunchTrade {\n id: ID!\n venue: TradeVenue!\n side: TradeSide!\n sender: Address!\n recipient: Address!\n attributedWallet: Address\n quoteToken: Address!\n quoteAmount: ExactQuoteAmount!\n quoteAmountAsset: ExactAssetAmount!\n tokenAmount: ExactTokenAmount!\n price: Decimal\n blockNumber: Int!\n blockTimestamp: Int!\n transactionHash: String!\n logIndex: Int!\n}\n\ntype LaunchFeeEvent {\n id: ID!\n kind: String!\n economicType: String!\n pair: Address\n quoteToken: Address!\n creatorTokenAmount: ExactTokenAmount!\n creatorQuoteAmount: ExactQuoteAmount!\n creatorQuoteAmountAsset: ExactAssetAmount!\n protocolTokenAmount: ExactTokenAmount!\n protocolQuoteAmount: ExactQuoteAmount!\n protocolQuoteAmountAsset: ExactAssetAmount!\n payoutAmount: ExactQuoteAmount!\n payoutStatus: String\n blockNumber: Int!\n blockTimestamp: Int!\n transactionHash: String!\n}\n\ntype SupplySlice {\n amount: ExactTokenAmount!\n \"\"\"Floor(amount * 10_000 / originalSupply). Exact raw amounts remain authoritative.\"\"\"\n basisPoints: Int!\n}\n\ntype SupplyDistribution {\n originalSupply: ExactTokenAmount!\n bondingCurveCustody: SupplySlice!\n graduationPoolLiquidity: SupplySlice!\n lbLiquidity: SupplySlice!\n \"\"\"Pool token custody excluded from tradable reserves, including accrued protocol fees.\"\"\"\n poolNonLiquidityCustody: SupplySlice!\n lockedDead: SupplySlice!\n \"\"\"Known Launchpad/Router custody outside the active bonding-curve inventory.\"\"\"\n otherProtocolCustody: SupplySlice!\n \"\"\"All supply outside known protocol and dead-address custody.\"\"\"\n userHeld: SupplySlice!\n reconciled: Boolean!\n partial: Boolean!\n}\n\ntype LaunchDetail {\n id: ID!\n provider: LaunchProvider!\n pons: PonsLaunchState\n token: Address!\n quoteToken: Address!\n name: String\n symbol: String\n creator: Address!\n creatorBps: Int!\n curveFeeBps: Int!\n payoutWallet: Address!\n metadataURI: String!\n phase: IndexedLaunchPhase!\n pool: Address\n amountRaisedQuote: ExactQuoteAmount!\n amountRaisedQuoteAsset: ExactAssetAmount!\n raiseThresholdQuote: ExactQuoteAmount!\n raiseThresholdQuoteAsset: ExactAssetAmount!\n curveProgressPct: Decimal\n holderCount: Int!\n holderCountPartial: Boolean!\n volume24hQuote: ExactQuoteAmount!\n volume24hQuoteAsset: ExactAssetAmount!\n anchoredVolume24hQuote: ExactQuoteAmount!\n anchoredVolume24hQuoteAsset: ExactAssetAmount!\n volume24hHoldingsAnchored: Boolean!\n volume24hPartial: Boolean!\n volumeWindowSeconds: Int!\n totalCanonicalVolumeQuote: ExactQuoteAmount!\n totalCanonicalVolumeQuoteAsset: ExactAssetAmount!\n volumeByQuoteAsset: [QuoteAssetVolume!]!\n lbVolumeByQuoteAsset: [QuoteAssetVolume!]!\n \"\"\"Legacy 18-decimal projection. Use lbVolumeByQuoteAsset for LB accounting.\"\"\"\n totalLbVolumeQuote: ExactQuoteAmount!\n tradeCount: Int!\n lastCanonicalPrice: Decimal\n lastCanonicalPriceBlock: Int\n createdBlock: Int!\n createdTimestamp: Int!\n graduatedBlock: Int\n graduatedTimestamp: Int\n pools: [LaunchPool!]!\n poolsPartial: Boolean!\n externalMarkets: [LaunchExternalMarket!]!\n externalMarketsPartial: Boolean!\n supplyDistribution: SupplyDistribution!\n recentTrades: [LaunchTrade!]!\n fees: [LaunchFeeEvent!]!\n}\n\ntype TrendingLaunch {\n token: Address!\n name: String\n symbol: String\n phase: IndexedLaunchPhase!\n lastCanonicalPrice: Decimal\n recentVolumeQuote: ExactQuoteAmount!\n rankVolumeQuote: ExactQuoteAmount!\n retainedValueQuote: ExactQuoteAmount\n holdingsAnchored: Boolean!\n distinctTraders: Int!\n recentTrades: Int!\n changePct: Decimal!\n windowSeconds: Int!\n}\n\ntype TrendingLaunchResult {\n nodes: [TrendingLaunch!]!\n partial: Boolean!\n minDistinctTraders: Int!\n maxTraderPct: Int!\n holdingsMultiple: Int!\n}\n\ntype LaunchPricePoint {\n cursor: Cursor!\n timestamp: Int!\n blockNumber: Int!\n price: Decimal\n volumeQuote: ExactQuoteAmount!\n volumeQuoteAsset: ExactAssetAmount!\n venue: TradeVenue!\n side: TradeSide!\n transactionHash: String!\n}\n\ntype LaunchPriceSeriesConnection {\n nodes: [LaunchPricePoint!]!\n pageInfo: PageInfo!\n}\n\ntype WalletLaunchPosition {\n \"\"\"CAIP-style chain-local token identity used by portfolio observation consumers.\"\"\"\n tokenIdentity: ID!\n token: Address!\n name: String\n symbol: String\n decimals: Int\n phase: IndexedLaunchPhase!\n balance: ExactTokenAmount!\n \"\"\"Exact display amount when token decimals are known.\"\"\"\n amountDisplay: Decimal\n tokenBalance: String!\n \"\"\"Exact quote asset used by this launch and all quote-denominated position fields.\"\"\"\n quoteToken: Address!\n valueQuote: ExactQuoteAmount!\n valueQuoteAsset: ExactAssetAmount!\n investedQuote: ExactQuoteAmount!\n investedQuoteAsset: ExactAssetAmount!\n proceedsQuote: ExactQuoteAmount!\n proceedsQuoteAsset: ExactAssetAmount!\n pnlQuote: ExactQuoteAmount!\n pnlQuoteAsset: ExactAssetAmount!\n lastCanonicalPrice: Decimal\n \"\"\"Exact ERC-20 quote asset for lastCanonicalPrice; null when price is unavailable.\"\"\"\n lastCanonicalPriceQuoteToken: Address\n \"\"\"Display quote units per display token unit, normalized with both ERC-20 decimal scales.\"\"\"\n lastCanonicalUnitPrice: Decimal\n lastCanonicalPriceBlock: String\n \"\"\"Timestamp of the exact canonical trade that produced lastCanonicalPrice.\"\"\"\n lastCanonicalPriceObservedAt: String\n \"\"\"Deterministic watermark of the indexed wallet balance row.\"\"\"\n sourceWatermark: String!\n observedAtBlock: String!\n observedAt: String!\n buyCount: Int!\n sellCount: Int!\n}\n\ntype WalletLaunchPositionTotals {\n \"\"\"Legacy wrapped-native-only totals. Null when the portfolio contains another quote asset.\"\"\"\n valueQuote: ExactQuoteAmount!\n investedQuote: ExactQuoteAmount!\n proceedsQuote: ExactQuoteAmount!\n pnlQuote: ExactQuoteAmount!\n}\n\ntype WalletLaunchPositionAssetTotals {\n quoteToken: Address!\n valueQuoteAsset: ExactAssetAmount!\n investedQuoteAsset: ExactAssetAmount!\n proceedsQuoteAsset: ExactAssetAmount!\n pnlQuoteAsset: ExactAssetAmount!\n}\n\n\"\"\"Indexer checkpoint observed by the gateway while capturing one bounded page.\"\"\"\ntype PortfolioObservationWatermark {\n sourceWatermark: String!\n observedAtBlock: String!\n observedAt: String!\n}\n\ntype WalletLaunchPositionResult {\n wallet: Address!\n partial: Boolean!\n observationWatermark: PortfolioObservationWatermark\n positions: [WalletLaunchPosition!]!\n pageInfo: PageInfo!\n \"\"\"Legacy wrapped-native totals, withheld for partial scans or portfolios containing another quote asset.\"\"\"\n totals: WalletLaunchPositionTotals\n \"\"\"Complete totals grouped by exact quote asset; null when the totals scan is partial.\"\"\"\n totalsByQuoteAsset: [WalletLaunchPositionAssetTotals!]\n}\n\n\"\"\"An LB pair indexed from the configured factory, whether or not either token belongs to the configured launchpad deployment.\"\"\"\ntype LiquidityBookPair {\n address: Address!\n token0: Address!\n token1: Address!\n binStep: String!\n activeBinId: String\n createdBlock: String!\n lastUpdatedBlock: String!\n}\n\n\"\"\"Event-folded ERC-1155 receipt ownership for one wallet in one LB pair.\"\"\"\ntype LiquidityBookPosition {\n poolAddress: Address!\n walletAddress: Address!\n activeBinCount: String!\n totalReceiptBalance: String!\n lastUpdatedBlock: String!\n lastUpdatedBlockHash: String!\n lastUpdatedTimestamp: String!\n lastUpdatedTransactionHash: String!\n pair: LiquidityBookPair\n \"\"\"Exact checkpoint-bound underlying assets; null unless every active bin is resolved.\"\"\"\n underlyingAssets: [PortfolioUnderlyingAsset!]\n}\n\ntype PortfolioUnderlyingAsset {\n tokenIdentity: ID!\n token: Address!\n decimals: Int!\n amountRaw: String!\n amountDisplay: Decimal!\n lastCanonicalPrice: Decimal\n lastCanonicalPriceQuoteToken: Address\n lastCanonicalUnitPrice: Decimal\n lastCanonicalPriceBlock: String\n lastCanonicalPriceObservedAt: String\n}\n\ntype WalletLiquidityBookPositionResult {\n wallet: Address!\n partial: Boolean!\n observationWatermark: PortfolioObservationWatermark\n positions: [LiquidityBookPosition!]!\n pageInfo: PageInfo!\n}\n\ntype LiquidityBookPositionBin {\n cursor: Cursor!\n binId: String!\n receiptBalance: String!\n lastUpdatedBlock: String!\n lastUpdatedBlockHash: String!\n lastUpdatedTimestamp: String!\n lastUpdatedTransactionHash: String!\n}\n\ntype LiquidityBookPositionDetail {\n position: LiquidityBookPosition!\n bins: [LiquidityBookPositionBin!]!\n binsPageInfo: PageInfo!\n partial: Boolean!\n}\n\ntype ProtocolStats {\n launched: Int!\n graduated: Int!\n bonding: Int!\n poolCount: Int!\n tradeCount: Int!\n tvlQuote: ExactQuoteAmount\n tvlPartial: Boolean!\n volumePartial: Boolean!\n totalVolumeQuote: ExactQuoteAmount\n curveVolumeQuote: ExactQuoteAmount\n ammVolumeQuote: ExactQuoteAmount\n lbVolumeQuote: ExactQuoteAmount\n volumeByQuoteAsset: [QuoteAssetVolume!]!\n lbVolumeByQuoteAsset: [QuoteAssetVolume!]!\n lastIndexedBlock: Int!\n lastUpdatedTimestamp: Int!\n}\n\ntype ChainDataFreshness {\n deploymentId: ID!\n healthy: Boolean!\n backfilling: Boolean!\n chainId: Int!\n launchpadAddress: Address!\n startBlock: Int!\n chainHead: Int!\n indexedHead: Int!\n sourceHead: Int!\n blockLag: Int!\n configuredBlockLag: Int!\n lastProcessedAt: String\n hasuraReachable: Boolean!\n rpcReachable: Boolean!\n}\n\ntype PortfolioProjectionEvent {\n id: ID!\n kind: String!\n chainId: String!\n wallet: Address!\n blockNumber: String!\n blockHash: String!\n blockTimestamp: String!\n transactionHash: String!\n transactionIndex: String!\n logIndex: String!\n sourceWatermark: String!\n cursor: Cursor!\n}\n\n\"\"\"Canonical-head-bounded invalidation hints; consumers must retain periodic full reconciliation for reorg repair.\"\"\"\ntype PortfolioProjectionEventConnection {\n nodes: [PortfolioProjectionEvent!]!\n pageInfo: PageInfo!\n canonicalBlock: String!\n}\n\nenum EthUsdPriceSource {\n WETH_USDG_SPOT\n}\n\ntype EthUsdPrice {\n price: Decimal!\n source: EthUsdPriceSource!\n observedAt: String!\n observedBlock: String!\n sourceChainId: Int!\n pair: Address!\n reserveTimestamp: Int!\n}\n\ntype ReferencePairMetadata {\n chainId: Int!\n deploymentId: ID!\n protocol: String!\n factory: Address!\n pair: Address!\n token0: Address!\n token1: Address!\n createdBlock: String!\n createdBlockHash: String!\n createdTimestamp: String!\n createdTransactionHash: String!\n}\n\n\"\"\"Current Pons-owned ERC-20 pairing asset, folded from factory events.\"\"\"\ntype PonsPairAsset {\n token: Address!\n approved: Boolean!\n phantomQuote: String\n graduationThreshold: String\n decimals: Int\n updatedBlock: String!\n}\n\ntype Query {\n ponsPairAssets(deploymentId: ID!): [PonsPairAsset!]!\n referencePairMetadata(deploymentId: ID!, pair: Address!): ReferencePairMetadata\n launches(deploymentId: ID!, phase: LaunchPhase, first: Int!, after: String): LaunchConnection!\n launch(deploymentId: ID!, token: Address!): LaunchDetail\n trendingLaunches(deploymentId: ID!, first: Int!): TrendingLaunchResult!\n \"\"\"Authoritative curve and AMM price history. Liquidity Book trades are exposed through venue-specific analytics, not valuation history.\"\"\"\n launchPriceSeries(deploymentId: ID!, token: Address!, first: Int!, after: String): LaunchPriceSeriesConnection!\n walletLaunchPositions(deploymentId: ID!, wallet: Address!, first: Int!, after: String): WalletLaunchPositionResult!\n walletLiquidityBookPositions(deploymentId: ID!, wallet: Address!, first: Int!, after: String): WalletLiquidityBookPositionResult!\n liquidityBookPosition(deploymentId: ID!, wallet: Address!, pool: Address!, binFirst: Int!, binsAfter: String): LiquidityBookPositionDetail\n protocolStats(deploymentId: ID!): ProtocolStats!\n chainDataFreshness(deploymentId: ID!): ChainDataFreshness!\n portfolioProjectionEvents(deploymentId: ID!, first: Int!, after: String): PortfolioProjectionEventConnection!\n ethUsdPrice: EthUsdPrice!\n}\n";
|
|
2
|
+
export const CHAIN_DATA_SCHEMA_SDL = "\"\"\"\nAn EVM address normalized to lowercase by the gateway.\n\"\"\"\nscalar Address\n\n\"\"\"\nAn opaque cursor returned by pageInfo. Consumers must return it unchanged.\n\"\"\"\nscalar Cursor\n\n\"\"\"\nAn exact quote-token amount serialized as { wei: String!, decimal: String! }.\nThe legacy `wei` key contains exact raw base units for the identified quote\nasset, including non-18-decimal ERC-20 assets. Never coerce either value to a\nJavaScript number.\n\"\"\"\nscalar ExactQuoteAmount\n\n\"\"\"\nAn exact launch-token amount serialized as { raw: String!, decimal: String! }.\nNever coerce raw or decimal values to a JavaScript number.\n\"\"\"\nscalar ExactTokenAmount\n\n\"\"\"\nAn exact decimal string. Consumers choose display precision at the UI boundary.\n\"\"\"\nscalar Decimal\n\n\"\"\"An exact amount denominated in one explicit ERC-20 quote asset.\"\"\"\ntype ExactAssetAmount {\n token: Address!\n symbol: String\n raw: String!\n decimals: Int\n decimal: Decimal\n}\n\ntype QuoteAssetVolume {\n amount: ExactAssetAmount!\n tradeCount: Int!\n}\n\nenum PonsLifecyclePhase {\n bonding\n swept\n pool_created\n rescued\n}\n\ntype PonsLaunchState {\n lifecyclePhase: PonsLifecyclePhase!\n curve: Address!\n launchConfigId: String!\n configSupply: ExactTokenAmount!\n phantomQuote: ExactAssetAmount!\n configEnabledAtLaunchBlock: Boolean!\n graduationThreshold: ExactAssetAmount!\n curveFeeBps: Int!\n creatorTaxBps: Int!\n buybackEnabled: Boolean!\n buybackController: Address\n poolFeePips: Int!\n tickSpacing: Int!\n creatorFeeRecipient: Address!\n protocolFeeRecipient: Address!\n protocolFeeShareBps: Int!\n buybackBurnBps: Int!\n hookFeeBps: Int!\n maxInternalPriceImpactBps: Int!\n sweptQuote: ExactAssetAmount!\n sweptTokens: ExactTokenAmount!\n sweptAt: String\n poolPositionId: String\n rescueRecipient: Address\n rescueQuote: ExactAssetAmount\n rescueTokens: ExactTokenAmount\n lastUpdatedBlock: String!\n lastUpdatedAt: String!\n}\n\nenum LaunchPhase {\n BONDING\n GRADUATED\n}\n\nenum IndexedLaunchPhase {\n bonding\n graduated\n}\n\nenum TradeVenue {\n curve\n amm\n lb\n}\n\nenum TradeSide {\n buy\n sell\n}\n\ntype PageInfo {\n endCursor: Cursor\n hasNextPage: Boolean!\n}\n\ntype LaunchSummary {\n id: ID!\n provider: LaunchProvider!\n pons: PonsLaunchState\n token: Address!\n quoteToken: Address!\n name: String\n symbol: String\n creator: Address!\n creatorBps: Int!\n curveFeeBps: Int!\n payoutWallet: Address!\n metadataURI: String!\n phase: IndexedLaunchPhase!\n pool: Address\n amountRaisedQuote: ExactQuoteAmount!\n amountRaisedQuoteAsset: ExactAssetAmount!\n raiseThresholdQuote: ExactQuoteAmount!\n raiseThresholdQuoteAsset: ExactAssetAmount!\n curveProgressPct: Decimal\n holderCount: Int!\n holderCountPartial: Boolean!\n volume24hQuote: ExactQuoteAmount!\n volume24hQuoteAsset: ExactAssetAmount!\n anchoredVolume24hQuote: ExactQuoteAmount!\n anchoredVolume24hQuoteAsset: ExactAssetAmount!\n volume24hHoldingsAnchored: Boolean!\n volume24hPartial: Boolean!\n volumeWindowSeconds: Int!\n totalCanonicalVolumeQuote: ExactQuoteAmount!\n totalCanonicalVolumeQuoteAsset: ExactAssetAmount!\n volumeByQuoteAsset: [QuoteAssetVolume!]!\n lbVolumeByQuoteAsset: [QuoteAssetVolume!]!\n \"\"\"Legacy 18-decimal projection. Use lbVolumeByQuoteAsset for LB accounting.\"\"\"\n totalLbVolumeQuote: ExactQuoteAmount!\n tradeCount: Int!\n lastCanonicalPrice: Decimal\n lastCanonicalPriceBlock: Int\n createdBlock: Int!\n createdTimestamp: Int!\n graduatedBlock: Int\n graduatedTimestamp: Int\n}\n\nenum LaunchProvider {\n launchonblock\n pons\n}\n\ntype LaunchConnection {\n nodes: [LaunchSummary!]!\n pageInfo: PageInfo!\n}\n\ntype LaunchPool {\n address: Address!\n poolType: String!\n token0: Address!\n token1: Address!\n quoteIsToken1: Boolean!\n quoteToken: Address!\n ignoredForRouting: Boolean!\n binStep: String\n reserveToken: ExactTokenAmount\n reserveQuote: ExactQuoteAmount\n tvlQuote: ExactQuoteAmount\n reserveQuoteAsset: ExactAssetAmount\n tvlQuoteAsset: ExactAssetAmount\n reserveSource: String!\n createdBlock: Int!\n lastUpdatedBlock: Int!\n}\n\nenum ExternalMarketProtocol {\n uniswap_v2\n uniswap_v3\n uniswap_v4\n}\n\n\"\"\"A Uniswap market whose token0 or token1 is a launch from this exact deployment.\"\"\"\ntype LaunchExternalMarket {\n id: ID!\n protocol: ExternalMarketProtocol!\n \"\"\"The v2/v3 factory or v4 PoolManager that emitted the creation event.\"\"\"\n venueAddress: Address!\n \"\"\"The pair/pool contract for v2/v3. V4 pools live inside PoolManager and have no address.\"\"\"\n poolAddress: Address\n \"\"\"The bytes32 PoolId for v4. Null for address-identified v2/v3 markets.\"\"\"\n poolId: String\n token0: Address!\n token1: Address!\n feePips: Int\n tickSpacing: Int\n hooks: Address\n createdBlock: Int!\n createdTransactionHash: String!\n createdLogIndex: Int!\n}\n\ntype LaunchTrade {\n id: ID!\n venue: TradeVenue!\n side: TradeSide!\n sender: Address!\n recipient: Address!\n attributedWallet: Address\n quoteToken: Address!\n quoteAmount: ExactQuoteAmount!\n quoteAmountAsset: ExactAssetAmount!\n tokenAmount: ExactTokenAmount!\n price: Decimal\n blockNumber: Int!\n blockTimestamp: Int!\n transactionHash: String!\n logIndex: Int!\n}\n\ntype LaunchFeeEvent {\n id: ID!\n kind: String!\n economicType: String!\n pair: Address\n quoteToken: Address!\n creatorTokenAmount: ExactTokenAmount!\n creatorQuoteAmount: ExactQuoteAmount!\n creatorQuoteAmountAsset: ExactAssetAmount!\n protocolTokenAmount: ExactTokenAmount!\n protocolQuoteAmount: ExactQuoteAmount!\n protocolQuoteAmountAsset: ExactAssetAmount!\n payoutAmount: ExactQuoteAmount!\n payoutStatus: String\n blockNumber: Int!\n blockTimestamp: Int!\n transactionHash: String!\n}\n\ntype SupplySlice {\n amount: ExactTokenAmount!\n \"\"\"Floor(amount * 10_000 / originalSupply). Exact raw amounts remain authoritative.\"\"\"\n basisPoints: Int!\n}\n\ntype SupplyDistribution {\n originalSupply: ExactTokenAmount!\n bondingCurveCustody: SupplySlice!\n graduationPoolLiquidity: SupplySlice!\n lbLiquidity: SupplySlice!\n \"\"\"Pool token custody excluded from tradable reserves, including accrued protocol fees.\"\"\"\n poolNonLiquidityCustody: SupplySlice!\n lockedDead: SupplySlice!\n \"\"\"Known Launchpad/Router custody outside the active bonding-curve inventory.\"\"\"\n otherProtocolCustody: SupplySlice!\n \"\"\"All supply outside known protocol and dead-address custody.\"\"\"\n userHeld: SupplySlice!\n reconciled: Boolean!\n partial: Boolean!\n}\n\ntype LaunchDetail {\n id: ID!\n provider: LaunchProvider!\n pons: PonsLaunchState\n token: Address!\n quoteToken: Address!\n name: String\n symbol: String\n creator: Address!\n creatorBps: Int!\n curveFeeBps: Int!\n payoutWallet: Address!\n metadataURI: String!\n phase: IndexedLaunchPhase!\n pool: Address\n amountRaisedQuote: ExactQuoteAmount!\n amountRaisedQuoteAsset: ExactAssetAmount!\n raiseThresholdQuote: ExactQuoteAmount!\n raiseThresholdQuoteAsset: ExactAssetAmount!\n curveProgressPct: Decimal\n holderCount: Int!\n holderCountPartial: Boolean!\n volume24hQuote: ExactQuoteAmount!\n volume24hQuoteAsset: ExactAssetAmount!\n anchoredVolume24hQuote: ExactQuoteAmount!\n anchoredVolume24hQuoteAsset: ExactAssetAmount!\n volume24hHoldingsAnchored: Boolean!\n volume24hPartial: Boolean!\n volumeWindowSeconds: Int!\n totalCanonicalVolumeQuote: ExactQuoteAmount!\n totalCanonicalVolumeQuoteAsset: ExactAssetAmount!\n volumeByQuoteAsset: [QuoteAssetVolume!]!\n lbVolumeByQuoteAsset: [QuoteAssetVolume!]!\n \"\"\"Legacy 18-decimal projection. Use lbVolumeByQuoteAsset for LB accounting.\"\"\"\n totalLbVolumeQuote: ExactQuoteAmount!\n tradeCount: Int!\n lastCanonicalPrice: Decimal\n lastCanonicalPriceBlock: Int\n createdBlock: Int!\n createdTimestamp: Int!\n graduatedBlock: Int\n graduatedTimestamp: Int\n pools: [LaunchPool!]!\n poolsPartial: Boolean!\n externalMarkets: [LaunchExternalMarket!]!\n externalMarketsPartial: Boolean!\n supplyDistribution: SupplyDistribution!\n recentTrades: [LaunchTrade!]!\n fees: [LaunchFeeEvent!]!\n}\n\ntype TrendingLaunch {\n token: Address!\n name: String\n symbol: String\n phase: IndexedLaunchPhase!\n lastCanonicalPrice: Decimal\n recentVolumeQuote: ExactQuoteAmount!\n rankVolumeQuote: ExactQuoteAmount!\n retainedValueQuote: ExactQuoteAmount\n holdingsAnchored: Boolean!\n distinctTraders: Int!\n recentTrades: Int!\n changePct: Decimal!\n windowSeconds: Int!\n}\n\ntype TrendingLaunchResult {\n nodes: [TrendingLaunch!]!\n partial: Boolean!\n minDistinctTraders: Int!\n maxTraderPct: Int!\n holdingsMultiple: Int!\n}\n\ntype LaunchPricePoint {\n cursor: Cursor!\n timestamp: Int!\n blockNumber: Int!\n price: Decimal\n volumeQuote: ExactQuoteAmount!\n volumeQuoteAsset: ExactAssetAmount!\n venue: TradeVenue!\n side: TradeSide!\n transactionHash: String!\n}\n\ntype LaunchPriceSeriesConnection {\n nodes: [LaunchPricePoint!]!\n pageInfo: PageInfo!\n}\n\ntype WalletLaunchPosition {\n \"\"\"CAIP-style chain-local token identity used by portfolio observation consumers.\"\"\"\n tokenIdentity: ID!\n token: Address!\n name: String\n symbol: String\n decimals: Int\n phase: IndexedLaunchPhase!\n balance: ExactTokenAmount!\n \"\"\"Exact display amount when token decimals are known.\"\"\"\n amountDisplay: Decimal\n tokenBalance: String!\n \"\"\"Exact quote asset used by this launch and all quote-denominated position fields.\"\"\"\n quoteToken: Address!\n valueQuote: ExactQuoteAmount!\n valueQuoteAsset: ExactAssetAmount!\n investedQuote: ExactQuoteAmount!\n investedQuoteAsset: ExactAssetAmount!\n proceedsQuote: ExactQuoteAmount!\n proceedsQuoteAsset: ExactAssetAmount!\n pnlQuote: ExactQuoteAmount!\n pnlQuoteAsset: ExactAssetAmount!\n lastCanonicalPrice: Decimal\n \"\"\"Exact ERC-20 quote asset for lastCanonicalPrice; null when price is unavailable.\"\"\"\n lastCanonicalPriceQuoteToken: Address\n \"\"\"Display quote units per display token unit, normalized with both ERC-20 decimal scales.\"\"\"\n lastCanonicalUnitPrice: Decimal\n lastCanonicalPriceBlock: String\n \"\"\"Timestamp of the exact canonical trade that produced lastCanonicalPrice.\"\"\"\n lastCanonicalPriceObservedAt: String\n \"\"\"Deterministic watermark of the indexed wallet balance row.\"\"\"\n sourceWatermark: String!\n observedAtBlock: String!\n observedAt: String!\n buyCount: Int!\n sellCount: Int!\n}\n\ntype WalletLaunchPositionTotals {\n \"\"\"Legacy wrapped-native-only totals. Null when the portfolio contains another quote asset.\"\"\"\n valueQuote: ExactQuoteAmount!\n investedQuote: ExactQuoteAmount!\n proceedsQuote: ExactQuoteAmount!\n pnlQuote: ExactQuoteAmount!\n}\n\ntype WalletLaunchPositionAssetTotals {\n quoteToken: Address!\n valueQuoteAsset: ExactAssetAmount!\n investedQuoteAsset: ExactAssetAmount!\n proceedsQuoteAsset: ExactAssetAmount!\n pnlQuoteAsset: ExactAssetAmount!\n}\n\n\"\"\"Indexer checkpoint observed by the gateway while capturing one bounded page.\"\"\"\ntype PortfolioObservationWatermark {\n sourceWatermark: String!\n observedAtBlock: String!\n observedAt: String!\n}\n\ntype WalletLaunchPositionResult {\n wallet: Address!\n partial: Boolean!\n observationWatermark: PortfolioObservationWatermark\n positions: [WalletLaunchPosition!]!\n pageInfo: PageInfo!\n \"\"\"Legacy wrapped-native totals, withheld for partial scans or portfolios containing another quote asset.\"\"\"\n totals: WalletLaunchPositionTotals\n \"\"\"Complete totals grouped by exact quote asset; null when the totals scan is partial.\"\"\"\n totalsByQuoteAsset: [WalletLaunchPositionAssetTotals!]\n}\n\n\"\"\"An LB pair indexed from the configured factory, whether or not either token belongs to the configured launchpad deployment.\"\"\"\ntype LiquidityBookPair {\n address: Address!\n token0: Address!\n token1: Address!\n binStep: String!\n activeBinId: String\n createdBlock: String!\n lastUpdatedBlock: String!\n}\n\n\"\"\"Event-folded ERC-1155 receipt ownership for one wallet in one LB pair.\"\"\"\ntype LiquidityBookPosition {\n poolAddress: Address!\n walletAddress: Address!\n activeBinCount: String!\n totalReceiptBalance: String!\n lastUpdatedBlock: String!\n lastUpdatedBlockHash: String!\n lastUpdatedTimestamp: String!\n lastUpdatedTransactionHash: String!\n pair: LiquidityBookPair\n \"\"\"Exact checkpoint-bound underlying assets; null unless every active bin is resolved.\"\"\"\n underlyingAssets: [PortfolioUnderlyingAsset!]\n}\n\ntype PortfolioUnderlyingAsset {\n tokenIdentity: ID!\n token: Address!\n decimals: Int!\n amountRaw: String!\n amountDisplay: Decimal!\n lastCanonicalPrice: Decimal\n lastCanonicalPriceQuoteToken: Address\n lastCanonicalUnitPrice: Decimal\n lastCanonicalPriceBlock: String\n lastCanonicalPriceObservedAt: String\n}\n\ntype WalletLiquidityBookPositionResult {\n wallet: Address!\n partial: Boolean!\n observationWatermark: PortfolioObservationWatermark\n positions: [LiquidityBookPosition!]!\n pageInfo: PageInfo!\n}\n\ntype LiquidityBookPositionBin {\n cursor: Cursor!\n binId: String!\n receiptBalance: String!\n lastUpdatedBlock: String!\n lastUpdatedBlockHash: String!\n lastUpdatedTimestamp: String!\n lastUpdatedTransactionHash: String!\n}\n\ntype LiquidityBookPositionDetail {\n position: LiquidityBookPosition!\n bins: [LiquidityBookPositionBin!]!\n binsPageInfo: PageInfo!\n partial: Boolean!\n}\n\ntype ProtocolStats {\n launched: Int!\n graduated: Int!\n bonding: Int!\n poolCount: Int!\n tradeCount: Int!\n tvlQuote: ExactQuoteAmount\n tvlPartial: Boolean!\n volumePartial: Boolean!\n totalVolumeQuote: ExactQuoteAmount\n curveVolumeQuote: ExactQuoteAmount\n ammVolumeQuote: ExactQuoteAmount\n lbVolumeQuote: ExactQuoteAmount\n volumeByQuoteAsset: [QuoteAssetVolume!]!\n lbVolumeByQuoteAsset: [QuoteAssetVolume!]!\n lastIndexedBlock: Int!\n lastUpdatedTimestamp: Int!\n}\n\ntype ChainDataFreshness {\n deploymentId: ID!\n healthy: Boolean!\n backfilling: Boolean!\n chainId: Int!\n launchpadAddress: Address!\n startBlock: Int!\n chainHead: Int!\n indexedHead: Int!\n sourceHead: Int!\n blockLag: Int!\n configuredBlockLag: Int!\n lastProcessedAt: String\n hasuraReachable: Boolean!\n rpcReachable: Boolean!\n}\n\ntype PortfolioProjectionEvent {\n id: ID!\n kind: String!\n chainId: String!\n wallet: Address!\n blockNumber: String!\n blockHash: String!\n blockTimestamp: String!\n transactionHash: String!\n transactionIndex: String!\n logIndex: String!\n sourceWatermark: String!\n cursor: Cursor!\n}\n\n\"\"\"Canonical-head-bounded invalidation hints; consumers must retain periodic full reconciliation for reorg repair.\"\"\"\ntype PortfolioProjectionEventConnection {\n nodes: [PortfolioProjectionEvent!]!\n pageInfo: PageInfo!\n canonicalBlock: String!\n}\n\nenum EthUsdPriceSource {\n WETH_USDG_SPOT\n}\n\ntype EthUsdPrice {\n price: Decimal!\n source: EthUsdPriceSource!\n observedAt: String!\n observedBlock: String!\n sourceChainId: Int!\n pair: Address!\n reserveTimestamp: Int!\n}\n\ntype ReferencePairMetadata {\n chainId: Int!\n deploymentId: ID!\n protocol: String!\n factory: Address!\n pair: Address!\n token0: Address!\n token1: Address!\n createdBlock: String!\n createdBlockHash: String!\n createdTimestamp: String!\n createdTransactionHash: String!\n}\n\n\"\"\"Current Pons-owned ERC-20 pairing asset, folded from factory events.\"\"\"\ntype PonsPairAsset {\n token: Address!\n approved: Boolean!\n phantomQuote: String\n graduationThreshold: String\n decimals: Int\n updatedBlock: String!\n}\n\ntype Query {\n ponsPairAssets(deploymentId: ID!): [PonsPairAsset!]!\n referencePairMetadata(deploymentId: ID!, pair: Address!): ReferencePairMetadata\n launches(deploymentId: ID!, provider: LaunchProvider, phase: LaunchPhase, first: Int!, after: String): LaunchConnection!\n launch(deploymentId: ID!, token: Address!): LaunchDetail\n trendingLaunches(deploymentId: ID!, provider: LaunchProvider, first: Int!): TrendingLaunchResult!\n \"\"\"Authoritative curve and AMM price history. Liquidity Book trades are exposed through venue-specific analytics, not valuation history.\"\"\"\n launchPriceSeries(deploymentId: ID!, token: Address!, first: Int!, after: String): LaunchPriceSeriesConnection!\n walletLaunchPositions(deploymentId: ID!, wallet: Address!, first: Int!, after: String): WalletLaunchPositionResult!\n walletLiquidityBookPositions(deploymentId: ID!, wallet: Address!, first: Int!, after: String): WalletLiquidityBookPositionResult!\n liquidityBookPosition(deploymentId: ID!, wallet: Address!, pool: Address!, binFirst: Int!, binsAfter: String): LiquidityBookPositionDetail\n protocolStats(deploymentId: ID!, provider: LaunchProvider): ProtocolStats!\n chainDataFreshness(deploymentId: ID!): ChainDataFreshness!\n portfolioProjectionEvents(deploymentId: ID!, first: Int!, after: String): PortfolioProjectionEventConnection!\n ethUsdPrice: EthUsdPrice!\n}\n";
|
|
3
3
|
export const CHAIN_DATA_OPERATIONS = {
|
|
4
4
|
"LaunchFeed": {
|
|
5
5
|
"name": "LaunchFeed",
|
|
6
6
|
"type": "query",
|
|
7
7
|
"rootField": "launches",
|
|
8
|
-
"document": "query LaunchFeed($deploymentId: ID!, $phase: LaunchPhase, $first: Int!, $after: String) {\n launches(deploymentId: $deploymentId, phase: $phase, first: $first, after: $after) {\n nodes { id provider pons { lifecyclePhase curve launchConfigId configSupply phantomQuote { token symbol raw decimals decimal } configEnabledAtLaunchBlock graduationThreshold { token symbol raw decimals decimal } curveFeeBps creatorTaxBps buybackEnabled buybackController poolFeePips tickSpacing creatorFeeRecipient protocolFeeRecipient protocolFeeShareBps buybackBurnBps hookFeeBps maxInternalPriceImpactBps sweptQuote { token symbol raw decimals decimal } sweptTokens sweptAt poolPositionId rescueRecipient rescueQuote { token symbol raw decimals decimal } rescueTokens lastUpdatedBlock lastUpdatedAt } token quoteToken name symbol creator creatorBps curveFeeBps payoutWallet metadataURI phase pool amountRaisedQuote amountRaisedQuoteAsset { token symbol raw decimals decimal } raiseThresholdQuote raiseThresholdQuoteAsset { token symbol raw decimals decimal } curveProgressPct holderCount holderCountPartial volume24hQuote volume24hQuoteAsset { token symbol raw decimals decimal } anchoredVolume24hQuote anchoredVolume24hQuoteAsset { token symbol raw decimals decimal } volume24hHoldingsAnchored volume24hPartial volumeWindowSeconds totalCanonicalVolumeQuote totalCanonicalVolumeQuoteAsset { token symbol raw decimals decimal } volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } totalLbVolumeQuote tradeCount lastCanonicalPrice lastCanonicalPriceBlock createdBlock createdTimestamp graduatedBlock graduatedTimestamp }\n pageInfo { endCursor hasNextPage }\n }\n}",
|
|
9
|
-
"sha256Hash": "
|
|
8
|
+
"document": "query LaunchFeed($deploymentId: ID!, $provider: LaunchProvider, $phase: LaunchPhase, $first: Int!, $after: String) {\n launches(deploymentId: $deploymentId, provider: $provider, phase: $phase, first: $first, after: $after) {\n nodes { id provider pons { lifecyclePhase curve launchConfigId configSupply phantomQuote { token symbol raw decimals decimal } configEnabledAtLaunchBlock graduationThreshold { token symbol raw decimals decimal } curveFeeBps creatorTaxBps buybackEnabled buybackController poolFeePips tickSpacing creatorFeeRecipient protocolFeeRecipient protocolFeeShareBps buybackBurnBps hookFeeBps maxInternalPriceImpactBps sweptQuote { token symbol raw decimals decimal } sweptTokens sweptAt poolPositionId rescueRecipient rescueQuote { token symbol raw decimals decimal } rescueTokens lastUpdatedBlock lastUpdatedAt } token quoteToken name symbol creator creatorBps curveFeeBps payoutWallet metadataURI phase pool amountRaisedQuote amountRaisedQuoteAsset { token symbol raw decimals decimal } raiseThresholdQuote raiseThresholdQuoteAsset { token symbol raw decimals decimal } curveProgressPct holderCount holderCountPartial volume24hQuote volume24hQuoteAsset { token symbol raw decimals decimal } anchoredVolume24hQuote anchoredVolume24hQuoteAsset { token symbol raw decimals decimal } volume24hHoldingsAnchored volume24hPartial volumeWindowSeconds totalCanonicalVolumeQuote totalCanonicalVolumeQuoteAsset { token symbol raw decimals decimal } volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } totalLbVolumeQuote tradeCount lastCanonicalPrice lastCanonicalPriceBlock createdBlock createdTimestamp graduatedBlock graduatedTimestamp }\n pageInfo { endCursor hasNextPage }\n }\n}",
|
|
9
|
+
"sha256Hash": "6987b2a3414e200023540be9f07358807dd509bb53c4a35230fa3b445d64c94e"
|
|
10
10
|
},
|
|
11
11
|
"LaunchDetail": {
|
|
12
12
|
"name": "LaunchDetail",
|
|
@@ -19,8 +19,8 @@ export const CHAIN_DATA_OPERATIONS = {
|
|
|
19
19
|
"name": "TrendingLaunches",
|
|
20
20
|
"type": "query",
|
|
21
21
|
"rootField": "trendingLaunches",
|
|
22
|
-
"document": "query TrendingLaunches($deploymentId: ID!, $first: Int!) {\n trendingLaunches(deploymentId: $deploymentId, first: $first) {\n nodes { token name symbol phase lastCanonicalPrice recentVolumeQuote rankVolumeQuote retainedValueQuote holdingsAnchored distinctTraders recentTrades changePct windowSeconds }\n partial minDistinctTraders maxTraderPct holdingsMultiple\n }\n}",
|
|
23
|
-
"sha256Hash": "
|
|
22
|
+
"document": "query TrendingLaunches($deploymentId: ID!, $provider: LaunchProvider, $first: Int!) {\n trendingLaunches(deploymentId: $deploymentId, provider: $provider, first: $first) {\n nodes { token name symbol phase lastCanonicalPrice recentVolumeQuote rankVolumeQuote retainedValueQuote holdingsAnchored distinctTraders recentTrades changePct windowSeconds }\n partial minDistinctTraders maxTraderPct holdingsMultiple\n }\n}",
|
|
23
|
+
"sha256Hash": "0133b5cada9868750d489a54701ebe27a0fb25cbc1a5c569807fbb427c218878"
|
|
24
24
|
},
|
|
25
25
|
"LaunchPriceSeries": {
|
|
26
26
|
"name": "LaunchPriceSeries",
|
|
@@ -68,8 +68,8 @@ export const CHAIN_DATA_OPERATIONS = {
|
|
|
68
68
|
"name": "ProtocolStats",
|
|
69
69
|
"type": "query",
|
|
70
70
|
"rootField": "protocolStats",
|
|
71
|
-
"document": "query ProtocolStats($deploymentId: ID
|
|
72
|
-
"sha256Hash": "
|
|
71
|
+
"document": "query ProtocolStats($deploymentId: ID!, $provider: LaunchProvider) {\n protocolStats(deploymentId: $deploymentId, provider: $provider) { launched graduated bonding poolCount tradeCount tvlQuote tvlPartial volumePartial totalVolumeQuote curveVolumeQuote ammVolumeQuote lbVolumeQuote volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lastIndexedBlock lastUpdatedTimestamp }\n}",
|
|
72
|
+
"sha256Hash": "1bdf93bfa441b10997f810453a9216bb41b0deae538319d945979a2c74e348da"
|
|
73
73
|
},
|
|
74
74
|
"ChainDataFreshness": {
|
|
75
75
|
"name": "ChainDataFreshness",
|
|
@@ -108,16 +108,16 @@ export const CHAIN_DATA_OPERATIONS = {
|
|
|
108
108
|
}
|
|
109
109
|
};
|
|
110
110
|
export const CHAIN_DATA_OPERATION_IDS = {
|
|
111
|
-
"LaunchFeed": "
|
|
111
|
+
"LaunchFeed": "6987b2a3414e200023540be9f07358807dd509bb53c4a35230fa3b445d64c94e",
|
|
112
112
|
"LaunchDetail": "55d8759a6dc2a12d3804ce913326d435eaa0b253dbf2ca399870e962e02211d8",
|
|
113
|
-
"TrendingLaunches": "
|
|
113
|
+
"TrendingLaunches": "0133b5cada9868750d489a54701ebe27a0fb25cbc1a5c569807fbb427c218878",
|
|
114
114
|
"LaunchPriceSeries": "a26c7a2e4aa1a386b0fe499b9a661263bfd700e36bf5f7b065e975228c21cbb1",
|
|
115
115
|
"WalletLaunchPositions": "50296690ad4968a8e1fbef342268eb0907ca753b8fd4ab464e5d6c5339e2e800",
|
|
116
116
|
"PortfolioWalletBalances": "d7a6d20786eef66ddd1211cf97f2e2eba2e445784dc6893ed6f6c4a5d4b511e5",
|
|
117
117
|
"WalletLiquidityBookPositions": "7aac47e7b94c774421ebdbe4f24130ba885f23384a51892c043b75020b05e358",
|
|
118
118
|
"PortfolioWalletLiquidityPositions": "f41113a529249e6a0a2eceeda185a443ac920b569c36fbfb56cf17eac086da83",
|
|
119
119
|
"LiquidityBookPosition": "26099c27439338395b45046b0cc5a0604ab5c8deaab7b4154bd1eb6b68b55056",
|
|
120
|
-
"ProtocolStats": "
|
|
120
|
+
"ProtocolStats": "1bdf93bfa441b10997f810453a9216bb41b0deae538319d945979a2c74e348da",
|
|
121
121
|
"ChainDataFreshness": "8eaf5642951345717c009269cc38880998cc4d17c05fd7bff3a78ee37cea1596",
|
|
122
122
|
"PortfolioProjectionEvents": "d9c94fe7ddb263121e38956a8e6870a5c528e829c461b33154777f27122c803f",
|
|
123
123
|
"EthUsdPrice": "0bfa48cc75fef63d384cfa839d346943c14850cb6fdcbe49be6d8bc03d366369",
|
|
@@ -129,8 +129,8 @@ export const CHAIN_DATA_PERSISTED_QUERY_MANIFEST = {
|
|
|
129
129
|
"version": 1,
|
|
130
130
|
"operations": [
|
|
131
131
|
{
|
|
132
|
-
"id": "
|
|
133
|
-
"body": "query LaunchFeed($deploymentId: ID!, $phase: LaunchPhase, $first: Int!, $after: String) {\n launches(deploymentId: $deploymentId, phase: $phase, first: $first, after: $after) {\n nodes { id provider pons { lifecyclePhase curve launchConfigId configSupply phantomQuote { token symbol raw decimals decimal } configEnabledAtLaunchBlock graduationThreshold { token symbol raw decimals decimal } curveFeeBps creatorTaxBps buybackEnabled buybackController poolFeePips tickSpacing creatorFeeRecipient protocolFeeRecipient protocolFeeShareBps buybackBurnBps hookFeeBps maxInternalPriceImpactBps sweptQuote { token symbol raw decimals decimal } sweptTokens sweptAt poolPositionId rescueRecipient rescueQuote { token symbol raw decimals decimal } rescueTokens lastUpdatedBlock lastUpdatedAt } token quoteToken name symbol creator creatorBps curveFeeBps payoutWallet metadataURI phase pool amountRaisedQuote amountRaisedQuoteAsset { token symbol raw decimals decimal } raiseThresholdQuote raiseThresholdQuoteAsset { token symbol raw decimals decimal } curveProgressPct holderCount holderCountPartial volume24hQuote volume24hQuoteAsset { token symbol raw decimals decimal } anchoredVolume24hQuote anchoredVolume24hQuoteAsset { token symbol raw decimals decimal } volume24hHoldingsAnchored volume24hPartial volumeWindowSeconds totalCanonicalVolumeQuote totalCanonicalVolumeQuoteAsset { token symbol raw decimals decimal } volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } totalLbVolumeQuote tradeCount lastCanonicalPrice lastCanonicalPriceBlock createdBlock createdTimestamp graduatedBlock graduatedTimestamp }\n pageInfo { endCursor hasNextPage }\n }\n}",
|
|
132
|
+
"id": "6987b2a3414e200023540be9f07358807dd509bb53c4a35230fa3b445d64c94e",
|
|
133
|
+
"body": "query LaunchFeed($deploymentId: ID!, $provider: LaunchProvider, $phase: LaunchPhase, $first: Int!, $after: String) {\n launches(deploymentId: $deploymentId, provider: $provider, phase: $phase, first: $first, after: $after) {\n nodes { id provider pons { lifecyclePhase curve launchConfigId configSupply phantomQuote { token symbol raw decimals decimal } configEnabledAtLaunchBlock graduationThreshold { token symbol raw decimals decimal } curveFeeBps creatorTaxBps buybackEnabled buybackController poolFeePips tickSpacing creatorFeeRecipient protocolFeeRecipient protocolFeeShareBps buybackBurnBps hookFeeBps maxInternalPriceImpactBps sweptQuote { token symbol raw decimals decimal } sweptTokens sweptAt poolPositionId rescueRecipient rescueQuote { token symbol raw decimals decimal } rescueTokens lastUpdatedBlock lastUpdatedAt } token quoteToken name symbol creator creatorBps curveFeeBps payoutWallet metadataURI phase pool amountRaisedQuote amountRaisedQuoteAsset { token symbol raw decimals decimal } raiseThresholdQuote raiseThresholdQuoteAsset { token symbol raw decimals decimal } curveProgressPct holderCount holderCountPartial volume24hQuote volume24hQuoteAsset { token symbol raw decimals decimal } anchoredVolume24hQuote anchoredVolume24hQuoteAsset { token symbol raw decimals decimal } volume24hHoldingsAnchored volume24hPartial volumeWindowSeconds totalCanonicalVolumeQuote totalCanonicalVolumeQuoteAsset { token symbol raw decimals decimal } volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } totalLbVolumeQuote tradeCount lastCanonicalPrice lastCanonicalPriceBlock createdBlock createdTimestamp graduatedBlock graduatedTimestamp }\n pageInfo { endCursor hasNextPage }\n }\n}",
|
|
134
134
|
"name": "LaunchFeed",
|
|
135
135
|
"type": "query"
|
|
136
136
|
},
|
|
@@ -141,8 +141,8 @@ export const CHAIN_DATA_PERSISTED_QUERY_MANIFEST = {
|
|
|
141
141
|
"type": "query"
|
|
142
142
|
},
|
|
143
143
|
{
|
|
144
|
-
"id": "
|
|
145
|
-
"body": "query TrendingLaunches($deploymentId: ID!, $first: Int!) {\n trendingLaunches(deploymentId: $deploymentId, first: $first) {\n nodes { token name symbol phase lastCanonicalPrice recentVolumeQuote rankVolumeQuote retainedValueQuote holdingsAnchored distinctTraders recentTrades changePct windowSeconds }\n partial minDistinctTraders maxTraderPct holdingsMultiple\n }\n}",
|
|
144
|
+
"id": "0133b5cada9868750d489a54701ebe27a0fb25cbc1a5c569807fbb427c218878",
|
|
145
|
+
"body": "query TrendingLaunches($deploymentId: ID!, $provider: LaunchProvider, $first: Int!) {\n trendingLaunches(deploymentId: $deploymentId, provider: $provider, first: $first) {\n nodes { token name symbol phase lastCanonicalPrice recentVolumeQuote rankVolumeQuote retainedValueQuote holdingsAnchored distinctTraders recentTrades changePct windowSeconds }\n partial minDistinctTraders maxTraderPct holdingsMultiple\n }\n}",
|
|
146
146
|
"name": "TrendingLaunches",
|
|
147
147
|
"type": "query"
|
|
148
148
|
},
|
|
@@ -183,8 +183,8 @@ export const CHAIN_DATA_PERSISTED_QUERY_MANIFEST = {
|
|
|
183
183
|
"type": "query"
|
|
184
184
|
},
|
|
185
185
|
{
|
|
186
|
-
"id": "
|
|
187
|
-
"body": "query ProtocolStats($deploymentId: ID
|
|
186
|
+
"id": "1bdf93bfa441b10997f810453a9216bb41b0deae538319d945979a2c74e348da",
|
|
187
|
+
"body": "query ProtocolStats($deploymentId: ID!, $provider: LaunchProvider) {\n protocolStats(deploymentId: $deploymentId, provider: $provider) { launched graduated bonding poolCount tradeCount tvlQuote tvlPartial volumePartial totalVolumeQuote curveVolumeQuote ammVolumeQuote lbVolumeQuote volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lastIndexedBlock lastUpdatedTimestamp }\n}",
|
|
188
188
|
"name": "ProtocolStats",
|
|
189
189
|
"type": "query"
|
|
190
190
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations.generated.js","sourceRoot":"","sources":["../src/operations.generated.ts"],"names":[],"mappings":"AAAA,wFAAwF;AAExF,MAAM,CAAC,MAAM,qBAAqB,GAAG,
|
|
1
|
+
{"version":3,"file":"operations.generated.js","sourceRoot":"","sources":["../src/operations.generated.ts"],"names":[],"mappings":"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"}
|
|
@@ -18,6 +18,7 @@ export type TradeSide = 'buy' | 'sell';
|
|
|
18
18
|
export type TradeVenue = 'amm' | 'curve' | 'lb';
|
|
19
19
|
export type LaunchFeedQueryVariables = Exact<{
|
|
20
20
|
deploymentId: string | number;
|
|
21
|
+
provider?: LaunchProvider | null | undefined;
|
|
21
22
|
phase?: LaunchPhase | null | undefined;
|
|
22
23
|
first: number;
|
|
23
24
|
after?: string | null | undefined;
|
|
@@ -565,6 +566,7 @@ export type LaunchDetailQuery = {
|
|
|
565
566
|
};
|
|
566
567
|
export type TrendingLaunchesQueryVariables = Exact<{
|
|
567
568
|
deploymentId: string | number;
|
|
569
|
+
provider?: LaunchProvider | null | undefined;
|
|
568
570
|
first: number;
|
|
569
571
|
}>;
|
|
570
572
|
export type TrendingLaunchesQuery = {
|
|
@@ -957,6 +959,7 @@ export type LiquidityBookPositionQuery = {
|
|
|
957
959
|
};
|
|
958
960
|
export type ProtocolStatsQueryVariables = Exact<{
|
|
959
961
|
deploymentId: string | number;
|
|
962
|
+
provider?: LaunchProvider | null | undefined;
|
|
960
963
|
}>;
|
|
961
964
|
export type ProtocolStatsQuery = {
|
|
962
965
|
protocolStats: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.generated.d.ts","sourceRoot":"","sources":["../src/types.generated.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"types.generated.d.ts","sourceRoot":"","sources":["../src/types.generated.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reptilianhq/chain-data-contract",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"description": "Generated GraphQL schema, persisted operations, and TypeScript result contracts for Reptilian chain data",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -51,6 +51,6 @@
|
|
|
51
51
|
"reptilianRelease": {
|
|
52
52
|
"schemaVersion": 1,
|
|
53
53
|
"group": "chain-data-contract",
|
|
54
|
-
"sourceSha": "
|
|
54
|
+
"sourceSha": "721a8c56e1e6e1735b76387a650beb6414d88957"
|
|
55
55
|
}
|
|
56
56
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
/* This file is generated by pnpm --filter @reptilianhq/chain-data-contract generate. */
|
|
2
2
|
|
|
3
|
-
export const CHAIN_DATA_SCHEMA_SDL = "\"\"\"\nAn EVM address normalized to lowercase by the gateway.\n\"\"\"\nscalar Address\n\n\"\"\"\nAn opaque cursor returned by pageInfo. Consumers must return it unchanged.\n\"\"\"\nscalar Cursor\n\n\"\"\"\nAn exact quote-token amount serialized as { wei: String!, decimal: String! }.\nThe legacy `wei` key contains exact raw base units for the identified quote\nasset, including non-18-decimal ERC-20 assets. Never coerce either value to a\nJavaScript number.\n\"\"\"\nscalar ExactQuoteAmount\n\n\"\"\"\nAn exact launch-token amount serialized as { raw: String!, decimal: String! }.\nNever coerce raw or decimal values to a JavaScript number.\n\"\"\"\nscalar ExactTokenAmount\n\n\"\"\"\nAn exact decimal string. Consumers choose display precision at the UI boundary.\n\"\"\"\nscalar Decimal\n\n\"\"\"An exact amount denominated in one explicit ERC-20 quote asset.\"\"\"\ntype ExactAssetAmount {\n token: Address!\n symbol: String\n raw: String!\n decimals: Int\n decimal: Decimal\n}\n\ntype QuoteAssetVolume {\n amount: ExactAssetAmount!\n tradeCount: Int!\n}\n\nenum PonsLifecyclePhase {\n bonding\n swept\n pool_created\n rescued\n}\n\ntype PonsLaunchState {\n lifecyclePhase: PonsLifecyclePhase!\n curve: Address!\n launchConfigId: String!\n configSupply: ExactTokenAmount!\n phantomQuote: ExactAssetAmount!\n configEnabledAtLaunchBlock: Boolean!\n graduationThreshold: ExactAssetAmount!\n curveFeeBps: Int!\n creatorTaxBps: Int!\n buybackEnabled: Boolean!\n buybackController: Address\n poolFeePips: Int!\n tickSpacing: Int!\n creatorFeeRecipient: Address!\n protocolFeeRecipient: Address!\n protocolFeeShareBps: Int!\n buybackBurnBps: Int!\n hookFeeBps: Int!\n maxInternalPriceImpactBps: Int!\n sweptQuote: ExactAssetAmount!\n sweptTokens: ExactTokenAmount!\n sweptAt: String\n poolPositionId: String\n rescueRecipient: Address\n rescueQuote: ExactAssetAmount\n rescueTokens: ExactTokenAmount\n lastUpdatedBlock: String!\n lastUpdatedAt: String!\n}\n\nenum LaunchPhase {\n BONDING\n GRADUATED\n}\n\nenum IndexedLaunchPhase {\n bonding\n graduated\n}\n\nenum TradeVenue {\n curve\n amm\n lb\n}\n\nenum TradeSide {\n buy\n sell\n}\n\ntype PageInfo {\n endCursor: Cursor\n hasNextPage: Boolean!\n}\n\ntype LaunchSummary {\n id: ID!\n provider: LaunchProvider!\n pons: PonsLaunchState\n token: Address!\n quoteToken: Address!\n name: String\n symbol: String\n creator: Address!\n creatorBps: Int!\n curveFeeBps: Int!\n payoutWallet: Address!\n metadataURI: String!\n phase: IndexedLaunchPhase!\n pool: Address\n amountRaisedQuote: ExactQuoteAmount!\n amountRaisedQuoteAsset: ExactAssetAmount!\n raiseThresholdQuote: ExactQuoteAmount!\n raiseThresholdQuoteAsset: ExactAssetAmount!\n curveProgressPct: Decimal\n holderCount: Int!\n holderCountPartial: Boolean!\n volume24hQuote: ExactQuoteAmount!\n volume24hQuoteAsset: ExactAssetAmount!\n anchoredVolume24hQuote: ExactQuoteAmount!\n anchoredVolume24hQuoteAsset: ExactAssetAmount!\n volume24hHoldingsAnchored: Boolean!\n volume24hPartial: Boolean!\n volumeWindowSeconds: Int!\n totalCanonicalVolumeQuote: ExactQuoteAmount!\n totalCanonicalVolumeQuoteAsset: ExactAssetAmount!\n volumeByQuoteAsset: [QuoteAssetVolume!]!\n lbVolumeByQuoteAsset: [QuoteAssetVolume!]!\n \"\"\"Legacy 18-decimal projection. Use lbVolumeByQuoteAsset for LB accounting.\"\"\"\n totalLbVolumeQuote: ExactQuoteAmount!\n tradeCount: Int!\n lastCanonicalPrice: Decimal\n lastCanonicalPriceBlock: Int\n createdBlock: Int!\n createdTimestamp: Int!\n graduatedBlock: Int\n graduatedTimestamp: Int\n}\n\nenum LaunchProvider {\n launchonblock\n pons\n}\n\ntype LaunchConnection {\n nodes: [LaunchSummary!]!\n pageInfo: PageInfo!\n}\n\ntype LaunchPool {\n address: Address!\n poolType: String!\n token0: Address!\n token1: Address!\n quoteIsToken1: Boolean!\n quoteToken: Address!\n ignoredForRouting: Boolean!\n binStep: String\n reserveToken: ExactTokenAmount\n reserveQuote: ExactQuoteAmount\n tvlQuote: ExactQuoteAmount\n reserveQuoteAsset: ExactAssetAmount\n tvlQuoteAsset: ExactAssetAmount\n reserveSource: String!\n createdBlock: Int!\n lastUpdatedBlock: Int!\n}\n\nenum ExternalMarketProtocol {\n uniswap_v2\n uniswap_v3\n uniswap_v4\n}\n\n\"\"\"A Uniswap market whose token0 or token1 is a launch from this exact deployment.\"\"\"\ntype LaunchExternalMarket {\n id: ID!\n protocol: ExternalMarketProtocol!\n \"\"\"The v2/v3 factory or v4 PoolManager that emitted the creation event.\"\"\"\n venueAddress: Address!\n \"\"\"The pair/pool contract for v2/v3. V4 pools live inside PoolManager and have no address.\"\"\"\n poolAddress: Address\n \"\"\"The bytes32 PoolId for v4. Null for address-identified v2/v3 markets.\"\"\"\n poolId: String\n token0: Address!\n token1: Address!\n feePips: Int\n tickSpacing: Int\n hooks: Address\n createdBlock: Int!\n createdTransactionHash: String!\n createdLogIndex: Int!\n}\n\ntype LaunchTrade {\n id: ID!\n venue: TradeVenue!\n side: TradeSide!\n sender: Address!\n recipient: Address!\n attributedWallet: Address\n quoteToken: Address!\n quoteAmount: ExactQuoteAmount!\n quoteAmountAsset: ExactAssetAmount!\n tokenAmount: ExactTokenAmount!\n price: Decimal\n blockNumber: Int!\n blockTimestamp: Int!\n transactionHash: String!\n logIndex: Int!\n}\n\ntype LaunchFeeEvent {\n id: ID!\n kind: String!\n economicType: String!\n pair: Address\n quoteToken: Address!\n creatorTokenAmount: ExactTokenAmount!\n creatorQuoteAmount: ExactQuoteAmount!\n creatorQuoteAmountAsset: ExactAssetAmount!\n protocolTokenAmount: ExactTokenAmount!\n protocolQuoteAmount: ExactQuoteAmount!\n protocolQuoteAmountAsset: ExactAssetAmount!\n payoutAmount: ExactQuoteAmount!\n payoutStatus: String\n blockNumber: Int!\n blockTimestamp: Int!\n transactionHash: String!\n}\n\ntype SupplySlice {\n amount: ExactTokenAmount!\n \"\"\"Floor(amount * 10_000 / originalSupply). Exact raw amounts remain authoritative.\"\"\"\n basisPoints: Int!\n}\n\ntype SupplyDistribution {\n originalSupply: ExactTokenAmount!\n bondingCurveCustody: SupplySlice!\n graduationPoolLiquidity: SupplySlice!\n lbLiquidity: SupplySlice!\n \"\"\"Pool token custody excluded from tradable reserves, including accrued protocol fees.\"\"\"\n poolNonLiquidityCustody: SupplySlice!\n lockedDead: SupplySlice!\n \"\"\"Known Launchpad/Router custody outside the active bonding-curve inventory.\"\"\"\n otherProtocolCustody: SupplySlice!\n \"\"\"All supply outside known protocol and dead-address custody.\"\"\"\n userHeld: SupplySlice!\n reconciled: Boolean!\n partial: Boolean!\n}\n\ntype LaunchDetail {\n id: ID!\n provider: LaunchProvider!\n pons: PonsLaunchState\n token: Address!\n quoteToken: Address!\n name: String\n symbol: String\n creator: Address!\n creatorBps: Int!\n curveFeeBps: Int!\n payoutWallet: Address!\n metadataURI: String!\n phase: IndexedLaunchPhase!\n pool: Address\n amountRaisedQuote: ExactQuoteAmount!\n amountRaisedQuoteAsset: ExactAssetAmount!\n raiseThresholdQuote: ExactQuoteAmount!\n raiseThresholdQuoteAsset: ExactAssetAmount!\n curveProgressPct: Decimal\n holderCount: Int!\n holderCountPartial: Boolean!\n volume24hQuote: ExactQuoteAmount!\n volume24hQuoteAsset: ExactAssetAmount!\n anchoredVolume24hQuote: ExactQuoteAmount!\n anchoredVolume24hQuoteAsset: ExactAssetAmount!\n volume24hHoldingsAnchored: Boolean!\n volume24hPartial: Boolean!\n volumeWindowSeconds: Int!\n totalCanonicalVolumeQuote: ExactQuoteAmount!\n totalCanonicalVolumeQuoteAsset: ExactAssetAmount!\n volumeByQuoteAsset: [QuoteAssetVolume!]!\n lbVolumeByQuoteAsset: [QuoteAssetVolume!]!\n \"\"\"Legacy 18-decimal projection. Use lbVolumeByQuoteAsset for LB accounting.\"\"\"\n totalLbVolumeQuote: ExactQuoteAmount!\n tradeCount: Int!\n lastCanonicalPrice: Decimal\n lastCanonicalPriceBlock: Int\n createdBlock: Int!\n createdTimestamp: Int!\n graduatedBlock: Int\n graduatedTimestamp: Int\n pools: [LaunchPool!]!\n poolsPartial: Boolean!\n externalMarkets: [LaunchExternalMarket!]!\n externalMarketsPartial: Boolean!\n supplyDistribution: SupplyDistribution!\n recentTrades: [LaunchTrade!]!\n fees: [LaunchFeeEvent!]!\n}\n\ntype TrendingLaunch {\n token: Address!\n name: String\n symbol: String\n phase: IndexedLaunchPhase!\n lastCanonicalPrice: Decimal\n recentVolumeQuote: ExactQuoteAmount!\n rankVolumeQuote: ExactQuoteAmount!\n retainedValueQuote: ExactQuoteAmount\n holdingsAnchored: Boolean!\n distinctTraders: Int!\n recentTrades: Int!\n changePct: Decimal!\n windowSeconds: Int!\n}\n\ntype TrendingLaunchResult {\n nodes: [TrendingLaunch!]!\n partial: Boolean!\n minDistinctTraders: Int!\n maxTraderPct: Int!\n holdingsMultiple: Int!\n}\n\ntype LaunchPricePoint {\n cursor: Cursor!\n timestamp: Int!\n blockNumber: Int!\n price: Decimal\n volumeQuote: ExactQuoteAmount!\n volumeQuoteAsset: ExactAssetAmount!\n venue: TradeVenue!\n side: TradeSide!\n transactionHash: String!\n}\n\ntype LaunchPriceSeriesConnection {\n nodes: [LaunchPricePoint!]!\n pageInfo: PageInfo!\n}\n\ntype WalletLaunchPosition {\n \"\"\"CAIP-style chain-local token identity used by portfolio observation consumers.\"\"\"\n tokenIdentity: ID!\n token: Address!\n name: String\n symbol: String\n decimals: Int\n phase: IndexedLaunchPhase!\n balance: ExactTokenAmount!\n \"\"\"Exact display amount when token decimals are known.\"\"\"\n amountDisplay: Decimal\n tokenBalance: String!\n \"\"\"Exact quote asset used by this launch and all quote-denominated position fields.\"\"\"\n quoteToken: Address!\n valueQuote: ExactQuoteAmount!\n valueQuoteAsset: ExactAssetAmount!\n investedQuote: ExactQuoteAmount!\n investedQuoteAsset: ExactAssetAmount!\n proceedsQuote: ExactQuoteAmount!\n proceedsQuoteAsset: ExactAssetAmount!\n pnlQuote: ExactQuoteAmount!\n pnlQuoteAsset: ExactAssetAmount!\n lastCanonicalPrice: Decimal\n \"\"\"Exact ERC-20 quote asset for lastCanonicalPrice; null when price is unavailable.\"\"\"\n lastCanonicalPriceQuoteToken: Address\n \"\"\"Display quote units per display token unit, normalized with both ERC-20 decimal scales.\"\"\"\n lastCanonicalUnitPrice: Decimal\n lastCanonicalPriceBlock: String\n \"\"\"Timestamp of the exact canonical trade that produced lastCanonicalPrice.\"\"\"\n lastCanonicalPriceObservedAt: String\n \"\"\"Deterministic watermark of the indexed wallet balance row.\"\"\"\n sourceWatermark: String!\n observedAtBlock: String!\n observedAt: String!\n buyCount: Int!\n sellCount: Int!\n}\n\ntype WalletLaunchPositionTotals {\n \"\"\"Legacy wrapped-native-only totals. Null when the portfolio contains another quote asset.\"\"\"\n valueQuote: ExactQuoteAmount!\n investedQuote: ExactQuoteAmount!\n proceedsQuote: ExactQuoteAmount!\n pnlQuote: ExactQuoteAmount!\n}\n\ntype WalletLaunchPositionAssetTotals {\n quoteToken: Address!\n valueQuoteAsset: ExactAssetAmount!\n investedQuoteAsset: ExactAssetAmount!\n proceedsQuoteAsset: ExactAssetAmount!\n pnlQuoteAsset: ExactAssetAmount!\n}\n\n\"\"\"Indexer checkpoint observed by the gateway while capturing one bounded page.\"\"\"\ntype PortfolioObservationWatermark {\n sourceWatermark: String!\n observedAtBlock: String!\n observedAt: String!\n}\n\ntype WalletLaunchPositionResult {\n wallet: Address!\n partial: Boolean!\n observationWatermark: PortfolioObservationWatermark\n positions: [WalletLaunchPosition!]!\n pageInfo: PageInfo!\n \"\"\"Legacy wrapped-native totals, withheld for partial scans or portfolios containing another quote asset.\"\"\"\n totals: WalletLaunchPositionTotals\n \"\"\"Complete totals grouped by exact quote asset; null when the totals scan is partial.\"\"\"\n totalsByQuoteAsset: [WalletLaunchPositionAssetTotals!]\n}\n\n\"\"\"An LB pair indexed from the configured factory, whether or not either token belongs to the configured launchpad deployment.\"\"\"\ntype LiquidityBookPair {\n address: Address!\n token0: Address!\n token1: Address!\n binStep: String!\n activeBinId: String\n createdBlock: String!\n lastUpdatedBlock: String!\n}\n\n\"\"\"Event-folded ERC-1155 receipt ownership for one wallet in one LB pair.\"\"\"\ntype LiquidityBookPosition {\n poolAddress: Address!\n walletAddress: Address!\n activeBinCount: String!\n totalReceiptBalance: String!\n lastUpdatedBlock: String!\n lastUpdatedBlockHash: String!\n lastUpdatedTimestamp: String!\n lastUpdatedTransactionHash: String!\n pair: LiquidityBookPair\n \"\"\"Exact checkpoint-bound underlying assets; null unless every active bin is resolved.\"\"\"\n underlyingAssets: [PortfolioUnderlyingAsset!]\n}\n\ntype PortfolioUnderlyingAsset {\n tokenIdentity: ID!\n token: Address!\n decimals: Int!\n amountRaw: String!\n amountDisplay: Decimal!\n lastCanonicalPrice: Decimal\n lastCanonicalPriceQuoteToken: Address\n lastCanonicalUnitPrice: Decimal\n lastCanonicalPriceBlock: String\n lastCanonicalPriceObservedAt: String\n}\n\ntype WalletLiquidityBookPositionResult {\n wallet: Address!\n partial: Boolean!\n observationWatermark: PortfolioObservationWatermark\n positions: [LiquidityBookPosition!]!\n pageInfo: PageInfo!\n}\n\ntype LiquidityBookPositionBin {\n cursor: Cursor!\n binId: String!\n receiptBalance: String!\n lastUpdatedBlock: String!\n lastUpdatedBlockHash: String!\n lastUpdatedTimestamp: String!\n lastUpdatedTransactionHash: String!\n}\n\ntype LiquidityBookPositionDetail {\n position: LiquidityBookPosition!\n bins: [LiquidityBookPositionBin!]!\n binsPageInfo: PageInfo!\n partial: Boolean!\n}\n\ntype ProtocolStats {\n launched: Int!\n graduated: Int!\n bonding: Int!\n poolCount: Int!\n tradeCount: Int!\n tvlQuote: ExactQuoteAmount\n tvlPartial: Boolean!\n volumePartial: Boolean!\n totalVolumeQuote: ExactQuoteAmount\n curveVolumeQuote: ExactQuoteAmount\n ammVolumeQuote: ExactQuoteAmount\n lbVolumeQuote: ExactQuoteAmount\n volumeByQuoteAsset: [QuoteAssetVolume!]!\n lbVolumeByQuoteAsset: [QuoteAssetVolume!]!\n lastIndexedBlock: Int!\n lastUpdatedTimestamp: Int!\n}\n\ntype ChainDataFreshness {\n deploymentId: ID!\n healthy: Boolean!\n backfilling: Boolean!\n chainId: Int!\n launchpadAddress: Address!\n startBlock: Int!\n chainHead: Int!\n indexedHead: Int!\n sourceHead: Int!\n blockLag: Int!\n configuredBlockLag: Int!\n lastProcessedAt: String\n hasuraReachable: Boolean!\n rpcReachable: Boolean!\n}\n\ntype PortfolioProjectionEvent {\n id: ID!\n kind: String!\n chainId: String!\n wallet: Address!\n blockNumber: String!\n blockHash: String!\n blockTimestamp: String!\n transactionHash: String!\n transactionIndex: String!\n logIndex: String!\n sourceWatermark: String!\n cursor: Cursor!\n}\n\n\"\"\"Canonical-head-bounded invalidation hints; consumers must retain periodic full reconciliation for reorg repair.\"\"\"\ntype PortfolioProjectionEventConnection {\n nodes: [PortfolioProjectionEvent!]!\n pageInfo: PageInfo!\n canonicalBlock: String!\n}\n\nenum EthUsdPriceSource {\n WETH_USDG_SPOT\n}\n\ntype EthUsdPrice {\n price: Decimal!\n source: EthUsdPriceSource!\n observedAt: String!\n observedBlock: String!\n sourceChainId: Int!\n pair: Address!\n reserveTimestamp: Int!\n}\n\ntype ReferencePairMetadata {\n chainId: Int!\n deploymentId: ID!\n protocol: String!\n factory: Address!\n pair: Address!\n token0: Address!\n token1: Address!\n createdBlock: String!\n createdBlockHash: String!\n createdTimestamp: String!\n createdTransactionHash: String!\n}\n\n\"\"\"Current Pons-owned ERC-20 pairing asset, folded from factory events.\"\"\"\ntype PonsPairAsset {\n token: Address!\n approved: Boolean!\n phantomQuote: String\n graduationThreshold: String\n decimals: Int\n updatedBlock: String!\n}\n\ntype Query {\n ponsPairAssets(deploymentId: ID!): [PonsPairAsset!]!\n referencePairMetadata(deploymentId: ID!, pair: Address!): ReferencePairMetadata\n launches(deploymentId: ID!, phase: LaunchPhase, first: Int!, after: String): LaunchConnection!\n launch(deploymentId: ID!, token: Address!): LaunchDetail\n trendingLaunches(deploymentId: ID!, first: Int!): TrendingLaunchResult!\n \"\"\"Authoritative curve and AMM price history. Liquidity Book trades are exposed through venue-specific analytics, not valuation history.\"\"\"\n launchPriceSeries(deploymentId: ID!, token: Address!, first: Int!, after: String): LaunchPriceSeriesConnection!\n walletLaunchPositions(deploymentId: ID!, wallet: Address!, first: Int!, after: String): WalletLaunchPositionResult!\n walletLiquidityBookPositions(deploymentId: ID!, wallet: Address!, first: Int!, after: String): WalletLiquidityBookPositionResult!\n liquidityBookPosition(deploymentId: ID!, wallet: Address!, pool: Address!, binFirst: Int!, binsAfter: String): LiquidityBookPositionDetail\n protocolStats(deploymentId: ID!): ProtocolStats!\n chainDataFreshness(deploymentId: ID!): ChainDataFreshness!\n portfolioProjectionEvents(deploymentId: ID!, first: Int!, after: String): PortfolioProjectionEventConnection!\n ethUsdPrice: EthUsdPrice!\n}\n";
|
|
3
|
+
export const CHAIN_DATA_SCHEMA_SDL = "\"\"\"\nAn EVM address normalized to lowercase by the gateway.\n\"\"\"\nscalar Address\n\n\"\"\"\nAn opaque cursor returned by pageInfo. Consumers must return it unchanged.\n\"\"\"\nscalar Cursor\n\n\"\"\"\nAn exact quote-token amount serialized as { wei: String!, decimal: String! }.\nThe legacy `wei` key contains exact raw base units for the identified quote\nasset, including non-18-decimal ERC-20 assets. Never coerce either value to a\nJavaScript number.\n\"\"\"\nscalar ExactQuoteAmount\n\n\"\"\"\nAn exact launch-token amount serialized as { raw: String!, decimal: String! }.\nNever coerce raw or decimal values to a JavaScript number.\n\"\"\"\nscalar ExactTokenAmount\n\n\"\"\"\nAn exact decimal string. Consumers choose display precision at the UI boundary.\n\"\"\"\nscalar Decimal\n\n\"\"\"An exact amount denominated in one explicit ERC-20 quote asset.\"\"\"\ntype ExactAssetAmount {\n token: Address!\n symbol: String\n raw: String!\n decimals: Int\n decimal: Decimal\n}\n\ntype QuoteAssetVolume {\n amount: ExactAssetAmount!\n tradeCount: Int!\n}\n\nenum PonsLifecyclePhase {\n bonding\n swept\n pool_created\n rescued\n}\n\ntype PonsLaunchState {\n lifecyclePhase: PonsLifecyclePhase!\n curve: Address!\n launchConfigId: String!\n configSupply: ExactTokenAmount!\n phantomQuote: ExactAssetAmount!\n configEnabledAtLaunchBlock: Boolean!\n graduationThreshold: ExactAssetAmount!\n curveFeeBps: Int!\n creatorTaxBps: Int!\n buybackEnabled: Boolean!\n buybackController: Address\n poolFeePips: Int!\n tickSpacing: Int!\n creatorFeeRecipient: Address!\n protocolFeeRecipient: Address!\n protocolFeeShareBps: Int!\n buybackBurnBps: Int!\n hookFeeBps: Int!\n maxInternalPriceImpactBps: Int!\n sweptQuote: ExactAssetAmount!\n sweptTokens: ExactTokenAmount!\n sweptAt: String\n poolPositionId: String\n rescueRecipient: Address\n rescueQuote: ExactAssetAmount\n rescueTokens: ExactTokenAmount\n lastUpdatedBlock: String!\n lastUpdatedAt: String!\n}\n\nenum LaunchPhase {\n BONDING\n GRADUATED\n}\n\nenum IndexedLaunchPhase {\n bonding\n graduated\n}\n\nenum TradeVenue {\n curve\n amm\n lb\n}\n\nenum TradeSide {\n buy\n sell\n}\n\ntype PageInfo {\n endCursor: Cursor\n hasNextPage: Boolean!\n}\n\ntype LaunchSummary {\n id: ID!\n provider: LaunchProvider!\n pons: PonsLaunchState\n token: Address!\n quoteToken: Address!\n name: String\n symbol: String\n creator: Address!\n creatorBps: Int!\n curveFeeBps: Int!\n payoutWallet: Address!\n metadataURI: String!\n phase: IndexedLaunchPhase!\n pool: Address\n amountRaisedQuote: ExactQuoteAmount!\n amountRaisedQuoteAsset: ExactAssetAmount!\n raiseThresholdQuote: ExactQuoteAmount!\n raiseThresholdQuoteAsset: ExactAssetAmount!\n curveProgressPct: Decimal\n holderCount: Int!\n holderCountPartial: Boolean!\n volume24hQuote: ExactQuoteAmount!\n volume24hQuoteAsset: ExactAssetAmount!\n anchoredVolume24hQuote: ExactQuoteAmount!\n anchoredVolume24hQuoteAsset: ExactAssetAmount!\n volume24hHoldingsAnchored: Boolean!\n volume24hPartial: Boolean!\n volumeWindowSeconds: Int!\n totalCanonicalVolumeQuote: ExactQuoteAmount!\n totalCanonicalVolumeQuoteAsset: ExactAssetAmount!\n volumeByQuoteAsset: [QuoteAssetVolume!]!\n lbVolumeByQuoteAsset: [QuoteAssetVolume!]!\n \"\"\"Legacy 18-decimal projection. Use lbVolumeByQuoteAsset for LB accounting.\"\"\"\n totalLbVolumeQuote: ExactQuoteAmount!\n tradeCount: Int!\n lastCanonicalPrice: Decimal\n lastCanonicalPriceBlock: Int\n createdBlock: Int!\n createdTimestamp: Int!\n graduatedBlock: Int\n graduatedTimestamp: Int\n}\n\nenum LaunchProvider {\n launchonblock\n pons\n}\n\ntype LaunchConnection {\n nodes: [LaunchSummary!]!\n pageInfo: PageInfo!\n}\n\ntype LaunchPool {\n address: Address!\n poolType: String!\n token0: Address!\n token1: Address!\n quoteIsToken1: Boolean!\n quoteToken: Address!\n ignoredForRouting: Boolean!\n binStep: String\n reserveToken: ExactTokenAmount\n reserveQuote: ExactQuoteAmount\n tvlQuote: ExactQuoteAmount\n reserveQuoteAsset: ExactAssetAmount\n tvlQuoteAsset: ExactAssetAmount\n reserveSource: String!\n createdBlock: Int!\n lastUpdatedBlock: Int!\n}\n\nenum ExternalMarketProtocol {\n uniswap_v2\n uniswap_v3\n uniswap_v4\n}\n\n\"\"\"A Uniswap market whose token0 or token1 is a launch from this exact deployment.\"\"\"\ntype LaunchExternalMarket {\n id: ID!\n protocol: ExternalMarketProtocol!\n \"\"\"The v2/v3 factory or v4 PoolManager that emitted the creation event.\"\"\"\n venueAddress: Address!\n \"\"\"The pair/pool contract for v2/v3. V4 pools live inside PoolManager and have no address.\"\"\"\n poolAddress: Address\n \"\"\"The bytes32 PoolId for v4. Null for address-identified v2/v3 markets.\"\"\"\n poolId: String\n token0: Address!\n token1: Address!\n feePips: Int\n tickSpacing: Int\n hooks: Address\n createdBlock: Int!\n createdTransactionHash: String!\n createdLogIndex: Int!\n}\n\ntype LaunchTrade {\n id: ID!\n venue: TradeVenue!\n side: TradeSide!\n sender: Address!\n recipient: Address!\n attributedWallet: Address\n quoteToken: Address!\n quoteAmount: ExactQuoteAmount!\n quoteAmountAsset: ExactAssetAmount!\n tokenAmount: ExactTokenAmount!\n price: Decimal\n blockNumber: Int!\n blockTimestamp: Int!\n transactionHash: String!\n logIndex: Int!\n}\n\ntype LaunchFeeEvent {\n id: ID!\n kind: String!\n economicType: String!\n pair: Address\n quoteToken: Address!\n creatorTokenAmount: ExactTokenAmount!\n creatorQuoteAmount: ExactQuoteAmount!\n creatorQuoteAmountAsset: ExactAssetAmount!\n protocolTokenAmount: ExactTokenAmount!\n protocolQuoteAmount: ExactQuoteAmount!\n protocolQuoteAmountAsset: ExactAssetAmount!\n payoutAmount: ExactQuoteAmount!\n payoutStatus: String\n blockNumber: Int!\n blockTimestamp: Int!\n transactionHash: String!\n}\n\ntype SupplySlice {\n amount: ExactTokenAmount!\n \"\"\"Floor(amount * 10_000 / originalSupply). Exact raw amounts remain authoritative.\"\"\"\n basisPoints: Int!\n}\n\ntype SupplyDistribution {\n originalSupply: ExactTokenAmount!\n bondingCurveCustody: SupplySlice!\n graduationPoolLiquidity: SupplySlice!\n lbLiquidity: SupplySlice!\n \"\"\"Pool token custody excluded from tradable reserves, including accrued protocol fees.\"\"\"\n poolNonLiquidityCustody: SupplySlice!\n lockedDead: SupplySlice!\n \"\"\"Known Launchpad/Router custody outside the active bonding-curve inventory.\"\"\"\n otherProtocolCustody: SupplySlice!\n \"\"\"All supply outside known protocol and dead-address custody.\"\"\"\n userHeld: SupplySlice!\n reconciled: Boolean!\n partial: Boolean!\n}\n\ntype LaunchDetail {\n id: ID!\n provider: LaunchProvider!\n pons: PonsLaunchState\n token: Address!\n quoteToken: Address!\n name: String\n symbol: String\n creator: Address!\n creatorBps: Int!\n curveFeeBps: Int!\n payoutWallet: Address!\n metadataURI: String!\n phase: IndexedLaunchPhase!\n pool: Address\n amountRaisedQuote: ExactQuoteAmount!\n amountRaisedQuoteAsset: ExactAssetAmount!\n raiseThresholdQuote: ExactQuoteAmount!\n raiseThresholdQuoteAsset: ExactAssetAmount!\n curveProgressPct: Decimal\n holderCount: Int!\n holderCountPartial: Boolean!\n volume24hQuote: ExactQuoteAmount!\n volume24hQuoteAsset: ExactAssetAmount!\n anchoredVolume24hQuote: ExactQuoteAmount!\n anchoredVolume24hQuoteAsset: ExactAssetAmount!\n volume24hHoldingsAnchored: Boolean!\n volume24hPartial: Boolean!\n volumeWindowSeconds: Int!\n totalCanonicalVolumeQuote: ExactQuoteAmount!\n totalCanonicalVolumeQuoteAsset: ExactAssetAmount!\n volumeByQuoteAsset: [QuoteAssetVolume!]!\n lbVolumeByQuoteAsset: [QuoteAssetVolume!]!\n \"\"\"Legacy 18-decimal projection. Use lbVolumeByQuoteAsset for LB accounting.\"\"\"\n totalLbVolumeQuote: ExactQuoteAmount!\n tradeCount: Int!\n lastCanonicalPrice: Decimal\n lastCanonicalPriceBlock: Int\n createdBlock: Int!\n createdTimestamp: Int!\n graduatedBlock: Int\n graduatedTimestamp: Int\n pools: [LaunchPool!]!\n poolsPartial: Boolean!\n externalMarkets: [LaunchExternalMarket!]!\n externalMarketsPartial: Boolean!\n supplyDistribution: SupplyDistribution!\n recentTrades: [LaunchTrade!]!\n fees: [LaunchFeeEvent!]!\n}\n\ntype TrendingLaunch {\n token: Address!\n name: String\n symbol: String\n phase: IndexedLaunchPhase!\n lastCanonicalPrice: Decimal\n recentVolumeQuote: ExactQuoteAmount!\n rankVolumeQuote: ExactQuoteAmount!\n retainedValueQuote: ExactQuoteAmount\n holdingsAnchored: Boolean!\n distinctTraders: Int!\n recentTrades: Int!\n changePct: Decimal!\n windowSeconds: Int!\n}\n\ntype TrendingLaunchResult {\n nodes: [TrendingLaunch!]!\n partial: Boolean!\n minDistinctTraders: Int!\n maxTraderPct: Int!\n holdingsMultiple: Int!\n}\n\ntype LaunchPricePoint {\n cursor: Cursor!\n timestamp: Int!\n blockNumber: Int!\n price: Decimal\n volumeQuote: ExactQuoteAmount!\n volumeQuoteAsset: ExactAssetAmount!\n venue: TradeVenue!\n side: TradeSide!\n transactionHash: String!\n}\n\ntype LaunchPriceSeriesConnection {\n nodes: [LaunchPricePoint!]!\n pageInfo: PageInfo!\n}\n\ntype WalletLaunchPosition {\n \"\"\"CAIP-style chain-local token identity used by portfolio observation consumers.\"\"\"\n tokenIdentity: ID!\n token: Address!\n name: String\n symbol: String\n decimals: Int\n phase: IndexedLaunchPhase!\n balance: ExactTokenAmount!\n \"\"\"Exact display amount when token decimals are known.\"\"\"\n amountDisplay: Decimal\n tokenBalance: String!\n \"\"\"Exact quote asset used by this launch and all quote-denominated position fields.\"\"\"\n quoteToken: Address!\n valueQuote: ExactQuoteAmount!\n valueQuoteAsset: ExactAssetAmount!\n investedQuote: ExactQuoteAmount!\n investedQuoteAsset: ExactAssetAmount!\n proceedsQuote: ExactQuoteAmount!\n proceedsQuoteAsset: ExactAssetAmount!\n pnlQuote: ExactQuoteAmount!\n pnlQuoteAsset: ExactAssetAmount!\n lastCanonicalPrice: Decimal\n \"\"\"Exact ERC-20 quote asset for lastCanonicalPrice; null when price is unavailable.\"\"\"\n lastCanonicalPriceQuoteToken: Address\n \"\"\"Display quote units per display token unit, normalized with both ERC-20 decimal scales.\"\"\"\n lastCanonicalUnitPrice: Decimal\n lastCanonicalPriceBlock: String\n \"\"\"Timestamp of the exact canonical trade that produced lastCanonicalPrice.\"\"\"\n lastCanonicalPriceObservedAt: String\n \"\"\"Deterministic watermark of the indexed wallet balance row.\"\"\"\n sourceWatermark: String!\n observedAtBlock: String!\n observedAt: String!\n buyCount: Int!\n sellCount: Int!\n}\n\ntype WalletLaunchPositionTotals {\n \"\"\"Legacy wrapped-native-only totals. Null when the portfolio contains another quote asset.\"\"\"\n valueQuote: ExactQuoteAmount!\n investedQuote: ExactQuoteAmount!\n proceedsQuote: ExactQuoteAmount!\n pnlQuote: ExactQuoteAmount!\n}\n\ntype WalletLaunchPositionAssetTotals {\n quoteToken: Address!\n valueQuoteAsset: ExactAssetAmount!\n investedQuoteAsset: ExactAssetAmount!\n proceedsQuoteAsset: ExactAssetAmount!\n pnlQuoteAsset: ExactAssetAmount!\n}\n\n\"\"\"Indexer checkpoint observed by the gateway while capturing one bounded page.\"\"\"\ntype PortfolioObservationWatermark {\n sourceWatermark: String!\n observedAtBlock: String!\n observedAt: String!\n}\n\ntype WalletLaunchPositionResult {\n wallet: Address!\n partial: Boolean!\n observationWatermark: PortfolioObservationWatermark\n positions: [WalletLaunchPosition!]!\n pageInfo: PageInfo!\n \"\"\"Legacy wrapped-native totals, withheld for partial scans or portfolios containing another quote asset.\"\"\"\n totals: WalletLaunchPositionTotals\n \"\"\"Complete totals grouped by exact quote asset; null when the totals scan is partial.\"\"\"\n totalsByQuoteAsset: [WalletLaunchPositionAssetTotals!]\n}\n\n\"\"\"An LB pair indexed from the configured factory, whether or not either token belongs to the configured launchpad deployment.\"\"\"\ntype LiquidityBookPair {\n address: Address!\n token0: Address!\n token1: Address!\n binStep: String!\n activeBinId: String\n createdBlock: String!\n lastUpdatedBlock: String!\n}\n\n\"\"\"Event-folded ERC-1155 receipt ownership for one wallet in one LB pair.\"\"\"\ntype LiquidityBookPosition {\n poolAddress: Address!\n walletAddress: Address!\n activeBinCount: String!\n totalReceiptBalance: String!\n lastUpdatedBlock: String!\n lastUpdatedBlockHash: String!\n lastUpdatedTimestamp: String!\n lastUpdatedTransactionHash: String!\n pair: LiquidityBookPair\n \"\"\"Exact checkpoint-bound underlying assets; null unless every active bin is resolved.\"\"\"\n underlyingAssets: [PortfolioUnderlyingAsset!]\n}\n\ntype PortfolioUnderlyingAsset {\n tokenIdentity: ID!\n token: Address!\n decimals: Int!\n amountRaw: String!\n amountDisplay: Decimal!\n lastCanonicalPrice: Decimal\n lastCanonicalPriceQuoteToken: Address\n lastCanonicalUnitPrice: Decimal\n lastCanonicalPriceBlock: String\n lastCanonicalPriceObservedAt: String\n}\n\ntype WalletLiquidityBookPositionResult {\n wallet: Address!\n partial: Boolean!\n observationWatermark: PortfolioObservationWatermark\n positions: [LiquidityBookPosition!]!\n pageInfo: PageInfo!\n}\n\ntype LiquidityBookPositionBin {\n cursor: Cursor!\n binId: String!\n receiptBalance: String!\n lastUpdatedBlock: String!\n lastUpdatedBlockHash: String!\n lastUpdatedTimestamp: String!\n lastUpdatedTransactionHash: String!\n}\n\ntype LiquidityBookPositionDetail {\n position: LiquidityBookPosition!\n bins: [LiquidityBookPositionBin!]!\n binsPageInfo: PageInfo!\n partial: Boolean!\n}\n\ntype ProtocolStats {\n launched: Int!\n graduated: Int!\n bonding: Int!\n poolCount: Int!\n tradeCount: Int!\n tvlQuote: ExactQuoteAmount\n tvlPartial: Boolean!\n volumePartial: Boolean!\n totalVolumeQuote: ExactQuoteAmount\n curveVolumeQuote: ExactQuoteAmount\n ammVolumeQuote: ExactQuoteAmount\n lbVolumeQuote: ExactQuoteAmount\n volumeByQuoteAsset: [QuoteAssetVolume!]!\n lbVolumeByQuoteAsset: [QuoteAssetVolume!]!\n lastIndexedBlock: Int!\n lastUpdatedTimestamp: Int!\n}\n\ntype ChainDataFreshness {\n deploymentId: ID!\n healthy: Boolean!\n backfilling: Boolean!\n chainId: Int!\n launchpadAddress: Address!\n startBlock: Int!\n chainHead: Int!\n indexedHead: Int!\n sourceHead: Int!\n blockLag: Int!\n configuredBlockLag: Int!\n lastProcessedAt: String\n hasuraReachable: Boolean!\n rpcReachable: Boolean!\n}\n\ntype PortfolioProjectionEvent {\n id: ID!\n kind: String!\n chainId: String!\n wallet: Address!\n blockNumber: String!\n blockHash: String!\n blockTimestamp: String!\n transactionHash: String!\n transactionIndex: String!\n logIndex: String!\n sourceWatermark: String!\n cursor: Cursor!\n}\n\n\"\"\"Canonical-head-bounded invalidation hints; consumers must retain periodic full reconciliation for reorg repair.\"\"\"\ntype PortfolioProjectionEventConnection {\n nodes: [PortfolioProjectionEvent!]!\n pageInfo: PageInfo!\n canonicalBlock: String!\n}\n\nenum EthUsdPriceSource {\n WETH_USDG_SPOT\n}\n\ntype EthUsdPrice {\n price: Decimal!\n source: EthUsdPriceSource!\n observedAt: String!\n observedBlock: String!\n sourceChainId: Int!\n pair: Address!\n reserveTimestamp: Int!\n}\n\ntype ReferencePairMetadata {\n chainId: Int!\n deploymentId: ID!\n protocol: String!\n factory: Address!\n pair: Address!\n token0: Address!\n token1: Address!\n createdBlock: String!\n createdBlockHash: String!\n createdTimestamp: String!\n createdTransactionHash: String!\n}\n\n\"\"\"Current Pons-owned ERC-20 pairing asset, folded from factory events.\"\"\"\ntype PonsPairAsset {\n token: Address!\n approved: Boolean!\n phantomQuote: String\n graduationThreshold: String\n decimals: Int\n updatedBlock: String!\n}\n\ntype Query {\n ponsPairAssets(deploymentId: ID!): [PonsPairAsset!]!\n referencePairMetadata(deploymentId: ID!, pair: Address!): ReferencePairMetadata\n launches(deploymentId: ID!, provider: LaunchProvider, phase: LaunchPhase, first: Int!, after: String): LaunchConnection!\n launch(deploymentId: ID!, token: Address!): LaunchDetail\n trendingLaunches(deploymentId: ID!, provider: LaunchProvider, first: Int!): TrendingLaunchResult!\n \"\"\"Authoritative curve and AMM price history. Liquidity Book trades are exposed through venue-specific analytics, not valuation history.\"\"\"\n launchPriceSeries(deploymentId: ID!, token: Address!, first: Int!, after: String): LaunchPriceSeriesConnection!\n walletLaunchPositions(deploymentId: ID!, wallet: Address!, first: Int!, after: String): WalletLaunchPositionResult!\n walletLiquidityBookPositions(deploymentId: ID!, wallet: Address!, first: Int!, after: String): WalletLiquidityBookPositionResult!\n liquidityBookPosition(deploymentId: ID!, wallet: Address!, pool: Address!, binFirst: Int!, binsAfter: String): LiquidityBookPositionDetail\n protocolStats(deploymentId: ID!, provider: LaunchProvider): ProtocolStats!\n chainDataFreshness(deploymentId: ID!): ChainDataFreshness!\n portfolioProjectionEvents(deploymentId: ID!, first: Int!, after: String): PortfolioProjectionEventConnection!\n ethUsdPrice: EthUsdPrice!\n}\n";
|
|
4
4
|
|
|
5
5
|
export const CHAIN_DATA_OPERATIONS = {
|
|
6
6
|
"LaunchFeed": {
|
|
7
7
|
"name": "LaunchFeed",
|
|
8
8
|
"type": "query",
|
|
9
9
|
"rootField": "launches",
|
|
10
|
-
"document": "query LaunchFeed($deploymentId: ID!, $phase: LaunchPhase, $first: Int!, $after: String) {\n launches(deploymentId: $deploymentId, phase: $phase, first: $first, after: $after) {\n nodes { id provider pons { lifecyclePhase curve launchConfigId configSupply phantomQuote { token symbol raw decimals decimal } configEnabledAtLaunchBlock graduationThreshold { token symbol raw decimals decimal } curveFeeBps creatorTaxBps buybackEnabled buybackController poolFeePips tickSpacing creatorFeeRecipient protocolFeeRecipient protocolFeeShareBps buybackBurnBps hookFeeBps maxInternalPriceImpactBps sweptQuote { token symbol raw decimals decimal } sweptTokens sweptAt poolPositionId rescueRecipient rescueQuote { token symbol raw decimals decimal } rescueTokens lastUpdatedBlock lastUpdatedAt } token quoteToken name symbol creator creatorBps curveFeeBps payoutWallet metadataURI phase pool amountRaisedQuote amountRaisedQuoteAsset { token symbol raw decimals decimal } raiseThresholdQuote raiseThresholdQuoteAsset { token symbol raw decimals decimal } curveProgressPct holderCount holderCountPartial volume24hQuote volume24hQuoteAsset { token symbol raw decimals decimal } anchoredVolume24hQuote anchoredVolume24hQuoteAsset { token symbol raw decimals decimal } volume24hHoldingsAnchored volume24hPartial volumeWindowSeconds totalCanonicalVolumeQuote totalCanonicalVolumeQuoteAsset { token symbol raw decimals decimal } volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } totalLbVolumeQuote tradeCount lastCanonicalPrice lastCanonicalPriceBlock createdBlock createdTimestamp graduatedBlock graduatedTimestamp }\n pageInfo { endCursor hasNextPage }\n }\n}",
|
|
11
|
-
"sha256Hash": "
|
|
10
|
+
"document": "query LaunchFeed($deploymentId: ID!, $provider: LaunchProvider, $phase: LaunchPhase, $first: Int!, $after: String) {\n launches(deploymentId: $deploymentId, provider: $provider, phase: $phase, first: $first, after: $after) {\n nodes { id provider pons { lifecyclePhase curve launchConfigId configSupply phantomQuote { token symbol raw decimals decimal } configEnabledAtLaunchBlock graduationThreshold { token symbol raw decimals decimal } curveFeeBps creatorTaxBps buybackEnabled buybackController poolFeePips tickSpacing creatorFeeRecipient protocolFeeRecipient protocolFeeShareBps buybackBurnBps hookFeeBps maxInternalPriceImpactBps sweptQuote { token symbol raw decimals decimal } sweptTokens sweptAt poolPositionId rescueRecipient rescueQuote { token symbol raw decimals decimal } rescueTokens lastUpdatedBlock lastUpdatedAt } token quoteToken name symbol creator creatorBps curveFeeBps payoutWallet metadataURI phase pool amountRaisedQuote amountRaisedQuoteAsset { token symbol raw decimals decimal } raiseThresholdQuote raiseThresholdQuoteAsset { token symbol raw decimals decimal } curveProgressPct holderCount holderCountPartial volume24hQuote volume24hQuoteAsset { token symbol raw decimals decimal } anchoredVolume24hQuote anchoredVolume24hQuoteAsset { token symbol raw decimals decimal } volume24hHoldingsAnchored volume24hPartial volumeWindowSeconds totalCanonicalVolumeQuote totalCanonicalVolumeQuoteAsset { token symbol raw decimals decimal } volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } totalLbVolumeQuote tradeCount lastCanonicalPrice lastCanonicalPriceBlock createdBlock createdTimestamp graduatedBlock graduatedTimestamp }\n pageInfo { endCursor hasNextPage }\n }\n}",
|
|
11
|
+
"sha256Hash": "6987b2a3414e200023540be9f07358807dd509bb53c4a35230fa3b445d64c94e"
|
|
12
12
|
},
|
|
13
13
|
"LaunchDetail": {
|
|
14
14
|
"name": "LaunchDetail",
|
|
@@ -21,8 +21,8 @@ export const CHAIN_DATA_OPERATIONS = {
|
|
|
21
21
|
"name": "TrendingLaunches",
|
|
22
22
|
"type": "query",
|
|
23
23
|
"rootField": "trendingLaunches",
|
|
24
|
-
"document": "query TrendingLaunches($deploymentId: ID!, $first: Int!) {\n trendingLaunches(deploymentId: $deploymentId, first: $first) {\n nodes { token name symbol phase lastCanonicalPrice recentVolumeQuote rankVolumeQuote retainedValueQuote holdingsAnchored distinctTraders recentTrades changePct windowSeconds }\n partial minDistinctTraders maxTraderPct holdingsMultiple\n }\n}",
|
|
25
|
-
"sha256Hash": "
|
|
24
|
+
"document": "query TrendingLaunches($deploymentId: ID!, $provider: LaunchProvider, $first: Int!) {\n trendingLaunches(deploymentId: $deploymentId, provider: $provider, first: $first) {\n nodes { token name symbol phase lastCanonicalPrice recentVolumeQuote rankVolumeQuote retainedValueQuote holdingsAnchored distinctTraders recentTrades changePct windowSeconds }\n partial minDistinctTraders maxTraderPct holdingsMultiple\n }\n}",
|
|
25
|
+
"sha256Hash": "0133b5cada9868750d489a54701ebe27a0fb25cbc1a5c569807fbb427c218878"
|
|
26
26
|
},
|
|
27
27
|
"LaunchPriceSeries": {
|
|
28
28
|
"name": "LaunchPriceSeries",
|
|
@@ -70,8 +70,8 @@ export const CHAIN_DATA_OPERATIONS = {
|
|
|
70
70
|
"name": "ProtocolStats",
|
|
71
71
|
"type": "query",
|
|
72
72
|
"rootField": "protocolStats",
|
|
73
|
-
"document": "query ProtocolStats($deploymentId: ID
|
|
74
|
-
"sha256Hash": "
|
|
73
|
+
"document": "query ProtocolStats($deploymentId: ID!, $provider: LaunchProvider) {\n protocolStats(deploymentId: $deploymentId, provider: $provider) { launched graduated bonding poolCount tradeCount tvlQuote tvlPartial volumePartial totalVolumeQuote curveVolumeQuote ammVolumeQuote lbVolumeQuote volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lastIndexedBlock lastUpdatedTimestamp }\n}",
|
|
74
|
+
"sha256Hash": "1bdf93bfa441b10997f810453a9216bb41b0deae538319d945979a2c74e348da"
|
|
75
75
|
},
|
|
76
76
|
"ChainDataFreshness": {
|
|
77
77
|
"name": "ChainDataFreshness",
|
|
@@ -111,16 +111,16 @@ export const CHAIN_DATA_OPERATIONS = {
|
|
|
111
111
|
} as const;
|
|
112
112
|
|
|
113
113
|
export const CHAIN_DATA_OPERATION_IDS = {
|
|
114
|
-
"LaunchFeed": "
|
|
114
|
+
"LaunchFeed": "6987b2a3414e200023540be9f07358807dd509bb53c4a35230fa3b445d64c94e",
|
|
115
115
|
"LaunchDetail": "55d8759a6dc2a12d3804ce913326d435eaa0b253dbf2ca399870e962e02211d8",
|
|
116
|
-
"TrendingLaunches": "
|
|
116
|
+
"TrendingLaunches": "0133b5cada9868750d489a54701ebe27a0fb25cbc1a5c569807fbb427c218878",
|
|
117
117
|
"LaunchPriceSeries": "a26c7a2e4aa1a386b0fe499b9a661263bfd700e36bf5f7b065e975228c21cbb1",
|
|
118
118
|
"WalletLaunchPositions": "50296690ad4968a8e1fbef342268eb0907ca753b8fd4ab464e5d6c5339e2e800",
|
|
119
119
|
"PortfolioWalletBalances": "d7a6d20786eef66ddd1211cf97f2e2eba2e445784dc6893ed6f6c4a5d4b511e5",
|
|
120
120
|
"WalletLiquidityBookPositions": "7aac47e7b94c774421ebdbe4f24130ba885f23384a51892c043b75020b05e358",
|
|
121
121
|
"PortfolioWalletLiquidityPositions": "f41113a529249e6a0a2eceeda185a443ac920b569c36fbfb56cf17eac086da83",
|
|
122
122
|
"LiquidityBookPosition": "26099c27439338395b45046b0cc5a0604ab5c8deaab7b4154bd1eb6b68b55056",
|
|
123
|
-
"ProtocolStats": "
|
|
123
|
+
"ProtocolStats": "1bdf93bfa441b10997f810453a9216bb41b0deae538319d945979a2c74e348da",
|
|
124
124
|
"ChainDataFreshness": "8eaf5642951345717c009269cc38880998cc4d17c05fd7bff3a78ee37cea1596",
|
|
125
125
|
"PortfolioProjectionEvents": "d9c94fe7ddb263121e38956a8e6870a5c528e829c461b33154777f27122c803f",
|
|
126
126
|
"EthUsdPrice": "0bfa48cc75fef63d384cfa839d346943c14850cb6fdcbe49be6d8bc03d366369",
|
|
@@ -133,8 +133,8 @@ export const CHAIN_DATA_PERSISTED_QUERY_MANIFEST = {
|
|
|
133
133
|
"version": 1,
|
|
134
134
|
"operations": [
|
|
135
135
|
{
|
|
136
|
-
"id": "
|
|
137
|
-
"body": "query LaunchFeed($deploymentId: ID!, $phase: LaunchPhase, $first: Int!, $after: String) {\n launches(deploymentId: $deploymentId, phase: $phase, first: $first, after: $after) {\n nodes { id provider pons { lifecyclePhase curve launchConfigId configSupply phantomQuote { token symbol raw decimals decimal } configEnabledAtLaunchBlock graduationThreshold { token symbol raw decimals decimal } curveFeeBps creatorTaxBps buybackEnabled buybackController poolFeePips tickSpacing creatorFeeRecipient protocolFeeRecipient protocolFeeShareBps buybackBurnBps hookFeeBps maxInternalPriceImpactBps sweptQuote { token symbol raw decimals decimal } sweptTokens sweptAt poolPositionId rescueRecipient rescueQuote { token symbol raw decimals decimal } rescueTokens lastUpdatedBlock lastUpdatedAt } token quoteToken name symbol creator creatorBps curveFeeBps payoutWallet metadataURI phase pool amountRaisedQuote amountRaisedQuoteAsset { token symbol raw decimals decimal } raiseThresholdQuote raiseThresholdQuoteAsset { token symbol raw decimals decimal } curveProgressPct holderCount holderCountPartial volume24hQuote volume24hQuoteAsset { token symbol raw decimals decimal } anchoredVolume24hQuote anchoredVolume24hQuoteAsset { token symbol raw decimals decimal } volume24hHoldingsAnchored volume24hPartial volumeWindowSeconds totalCanonicalVolumeQuote totalCanonicalVolumeQuoteAsset { token symbol raw decimals decimal } volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } totalLbVolumeQuote tradeCount lastCanonicalPrice lastCanonicalPriceBlock createdBlock createdTimestamp graduatedBlock graduatedTimestamp }\n pageInfo { endCursor hasNextPage }\n }\n}",
|
|
136
|
+
"id": "6987b2a3414e200023540be9f07358807dd509bb53c4a35230fa3b445d64c94e",
|
|
137
|
+
"body": "query LaunchFeed($deploymentId: ID!, $provider: LaunchProvider, $phase: LaunchPhase, $first: Int!, $after: String) {\n launches(deploymentId: $deploymentId, provider: $provider, phase: $phase, first: $first, after: $after) {\n nodes { id provider pons { lifecyclePhase curve launchConfigId configSupply phantomQuote { token symbol raw decimals decimal } configEnabledAtLaunchBlock graduationThreshold { token symbol raw decimals decimal } curveFeeBps creatorTaxBps buybackEnabled buybackController poolFeePips tickSpacing creatorFeeRecipient protocolFeeRecipient protocolFeeShareBps buybackBurnBps hookFeeBps maxInternalPriceImpactBps sweptQuote { token symbol raw decimals decimal } sweptTokens sweptAt poolPositionId rescueRecipient rescueQuote { token symbol raw decimals decimal } rescueTokens lastUpdatedBlock lastUpdatedAt } token quoteToken name symbol creator creatorBps curveFeeBps payoutWallet metadataURI phase pool amountRaisedQuote amountRaisedQuoteAsset { token symbol raw decimals decimal } raiseThresholdQuote raiseThresholdQuoteAsset { token symbol raw decimals decimal } curveProgressPct holderCount holderCountPartial volume24hQuote volume24hQuoteAsset { token symbol raw decimals decimal } anchoredVolume24hQuote anchoredVolume24hQuoteAsset { token symbol raw decimals decimal } volume24hHoldingsAnchored volume24hPartial volumeWindowSeconds totalCanonicalVolumeQuote totalCanonicalVolumeQuoteAsset { token symbol raw decimals decimal } volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } totalLbVolumeQuote tradeCount lastCanonicalPrice lastCanonicalPriceBlock createdBlock createdTimestamp graduatedBlock graduatedTimestamp }\n pageInfo { endCursor hasNextPage }\n }\n}",
|
|
138
138
|
"name": "LaunchFeed",
|
|
139
139
|
"type": "query"
|
|
140
140
|
},
|
|
@@ -145,8 +145,8 @@ export const CHAIN_DATA_PERSISTED_QUERY_MANIFEST = {
|
|
|
145
145
|
"type": "query"
|
|
146
146
|
},
|
|
147
147
|
{
|
|
148
|
-
"id": "
|
|
149
|
-
"body": "query TrendingLaunches($deploymentId: ID!, $first: Int!) {\n trendingLaunches(deploymentId: $deploymentId, first: $first) {\n nodes { token name symbol phase lastCanonicalPrice recentVolumeQuote rankVolumeQuote retainedValueQuote holdingsAnchored distinctTraders recentTrades changePct windowSeconds }\n partial minDistinctTraders maxTraderPct holdingsMultiple\n }\n}",
|
|
148
|
+
"id": "0133b5cada9868750d489a54701ebe27a0fb25cbc1a5c569807fbb427c218878",
|
|
149
|
+
"body": "query TrendingLaunches($deploymentId: ID!, $provider: LaunchProvider, $first: Int!) {\n trendingLaunches(deploymentId: $deploymentId, provider: $provider, first: $first) {\n nodes { token name symbol phase lastCanonicalPrice recentVolumeQuote rankVolumeQuote retainedValueQuote holdingsAnchored distinctTraders recentTrades changePct windowSeconds }\n partial minDistinctTraders maxTraderPct holdingsMultiple\n }\n}",
|
|
150
150
|
"name": "TrendingLaunches",
|
|
151
151
|
"type": "query"
|
|
152
152
|
},
|
|
@@ -187,8 +187,8 @@ export const CHAIN_DATA_PERSISTED_QUERY_MANIFEST = {
|
|
|
187
187
|
"type": "query"
|
|
188
188
|
},
|
|
189
189
|
{
|
|
190
|
-
"id": "
|
|
191
|
-
"body": "query ProtocolStats($deploymentId: ID
|
|
190
|
+
"id": "1bdf93bfa441b10997f810453a9216bb41b0deae538319d945979a2c74e348da",
|
|
191
|
+
"body": "query ProtocolStats($deploymentId: ID!, $provider: LaunchProvider) {\n protocolStats(deploymentId: $deploymentId, provider: $provider) { launched graduated bonding poolCount tradeCount tvlQuote tvlPartial volumePartial totalVolumeQuote curveVolumeQuote ammVolumeQuote lbVolumeQuote volumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lbVolumeByQuoteAsset { amount { token symbol raw decimals decimal } tradeCount } lastIndexedBlock lastUpdatedTimestamp }\n}",
|
|
192
192
|
"name": "ProtocolStats",
|
|
193
193
|
"type": "query"
|
|
194
194
|
},
|
package/src/types.generated.ts
CHANGED
|
@@ -39,6 +39,7 @@ export type TradeVenue =
|
|
|
39
39
|
|
|
40
40
|
export type LaunchFeedQueryVariables = Exact<{
|
|
41
41
|
deploymentId: string | number;
|
|
42
|
+
provider?: LaunchProvider | null | undefined;
|
|
42
43
|
phase?: LaunchPhase | null | undefined;
|
|
43
44
|
first: number;
|
|
44
45
|
after?: string | null | undefined;
|
|
@@ -57,6 +58,7 @@ export type LaunchDetailQuery = { launch: { id: string, provider: LaunchProvider
|
|
|
57
58
|
|
|
58
59
|
export type TrendingLaunchesQueryVariables = Exact<{
|
|
59
60
|
deploymentId: string | number;
|
|
61
|
+
provider?: LaunchProvider | null | undefined;
|
|
60
62
|
first: number;
|
|
61
63
|
}>;
|
|
62
64
|
|
|
@@ -126,6 +128,7 @@ export type LiquidityBookPositionQuery = { liquidityBookPosition: { partial: boo
|
|
|
126
128
|
|
|
127
129
|
export type ProtocolStatsQueryVariables = Exact<{
|
|
128
130
|
deploymentId: string | number;
|
|
131
|
+
provider?: LaunchProvider | null | undefined;
|
|
129
132
|
}>;
|
|
130
133
|
|
|
131
134
|
|