@reptilianhq/chain-data-contract 0.11.0 → 0.12.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/chain-data-operations.graphql +6 -2
- package/chain-data-persisted-manifest.json +8 -2
- package/chain-data-schema.graphql +13 -6
- package/dist/index.d.ts +6 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/operations.generated.d.ts +19 -6
- package/dist/operations.generated.d.ts.map +1 -1
- package/dist/operations.generated.js +20 -6
- package/dist/operations.generated.js.map +1 -1
- package/dist/types.generated.d.ts +13 -2
- package/dist/types.generated.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +7 -1
- package/src/operations.generated.ts +20 -6
- package/src/types.generated.ts +7 -5
|
@@ -35,8 +35,8 @@ query TrendingLaunches($deploymentId: ID!, $first: Int!) {
|
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
query LaunchPriceSeries($deploymentId: ID!, $token: Address!, $
|
|
39
|
-
launchPriceSeries(deploymentId: $deploymentId, token: $token,
|
|
38
|
+
query LaunchPriceSeries($deploymentId: ID!, $token: Address!, $first: Int!, $after: String) {
|
|
39
|
+
launchPriceSeries(deploymentId: $deploymentId, token: $token, first: $first, after: $after) {
|
|
40
40
|
nodes { cursor timestamp blockNumber price volumeQuote volumeQuoteAsset { token symbol raw decimals decimal } venue side transactionHash }
|
|
41
41
|
pageInfo { endCursor hasNextPage }
|
|
42
42
|
}
|
|
@@ -105,6 +105,10 @@ query EthUsdPrice {
|
|
|
105
105
|
ethUsdPrice { price source observedAt observedBlock sourceChainId pair reserveTimestamp }
|
|
106
106
|
}
|
|
107
107
|
|
|
108
|
+
query PonsPairAssets($deploymentId: ID!) {
|
|
109
|
+
ponsPairAssets(deploymentId: $deploymentId) { token approved phantomQuote graduationThreshold decimals updatedBlock }
|
|
110
|
+
}
|
|
111
|
+
|
|
108
112
|
query ReferencePairMetadata($deploymentId: ID!, $pair: Address!) {
|
|
109
113
|
referencePairMetadata(deploymentId: $deploymentId, pair: $pair) {
|
|
110
114
|
chainId
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"type": "query"
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
|
-
"id": "
|
|
25
|
-
"body": "query LaunchPriceSeries($deploymentId: ID!, $token: Address!, $
|
|
24
|
+
"id": "a26c7a2e4aa1a386b0fe499b9a661263bfd700e36bf5f7b065e975228c21cbb1",
|
|
25
|
+
"body": "query LaunchPriceSeries($deploymentId: ID!, $token: Address!, $first: Int!, $after: String) {\n launchPriceSeries(deploymentId: $deploymentId, token: $token, first: $first, after: $after) {\n nodes { cursor timestamp blockNumber price volumeQuote volumeQuoteAsset { token symbol raw decimals decimal } venue side transactionHash }\n pageInfo { endCursor hasNextPage }\n }\n}",
|
|
26
26
|
"name": "LaunchPriceSeries",
|
|
27
27
|
"type": "query"
|
|
28
28
|
},
|
|
@@ -80,6 +80,12 @@
|
|
|
80
80
|
"name": "EthUsdPrice",
|
|
81
81
|
"type": "query"
|
|
82
82
|
},
|
|
83
|
+
{
|
|
84
|
+
"id": "7153a9efbe5aa5e65e13fd7d9e508ba5fbce531bb8c67db85470f7a28dbb5bc8",
|
|
85
|
+
"body": "query PonsPairAssets($deploymentId: ID!) {\n ponsPairAssets(deploymentId: $deploymentId) { token approved phantomQuote graduationThreshold decimals updatedBlock }\n}",
|
|
86
|
+
"name": "PonsPairAssets",
|
|
87
|
+
"type": "query"
|
|
88
|
+
},
|
|
83
89
|
{
|
|
84
90
|
"id": "183977a18a1dc80a255d91bbd3cc5e3f9fd96050a78a9e462d2cf2caa8d080d0",
|
|
85
91
|
"body": "query ReferencePairMetadata($deploymentId: ID!, $pair: Address!) {\n referencePairMetadata(deploymentId: $deploymentId, pair: $pair) {\n chainId\n deploymentId\n protocol\n factory\n pair\n token0\n token1\n createdBlock\n createdBlockHash\n createdTimestamp\n createdTransactionHash\n }\n}",
|
|
@@ -84,11 +84,6 @@ enum LaunchPhase {
|
|
|
84
84
|
GRADUATED
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
enum PriceVenue {
|
|
88
|
-
CANONICAL
|
|
89
|
-
ALL
|
|
90
|
-
}
|
|
91
|
-
|
|
92
87
|
enum IndexedLaunchPhase {
|
|
93
88
|
bonding
|
|
94
89
|
graduated
|
|
@@ -583,12 +578,24 @@ type ReferencePairMetadata {
|
|
|
583
578
|
createdTransactionHash: String!
|
|
584
579
|
}
|
|
585
580
|
|
|
581
|
+
"""Current Pons-owned ERC-20 pairing asset, folded from factory events."""
|
|
582
|
+
type PonsPairAsset {
|
|
583
|
+
token: Address!
|
|
584
|
+
approved: Boolean!
|
|
585
|
+
phantomQuote: String
|
|
586
|
+
graduationThreshold: String
|
|
587
|
+
decimals: Int
|
|
588
|
+
updatedBlock: String!
|
|
589
|
+
}
|
|
590
|
+
|
|
586
591
|
type Query {
|
|
592
|
+
ponsPairAssets(deploymentId: ID!): [PonsPairAsset!]!
|
|
587
593
|
referencePairMetadata(deploymentId: ID!, pair: Address!): ReferencePairMetadata
|
|
588
594
|
launches(deploymentId: ID!, phase: LaunchPhase, first: Int!, after: String): LaunchConnection!
|
|
589
595
|
launch(deploymentId: ID!, token: Address!): LaunchDetail
|
|
590
596
|
trendingLaunches(deploymentId: ID!, first: Int!): TrendingLaunchResult!
|
|
591
|
-
|
|
597
|
+
"""Authoritative curve and AMM price history. Liquidity Book trades are exposed through venue-specific analytics, not valuation history."""
|
|
598
|
+
launchPriceSeries(deploymentId: ID!, token: Address!, first: Int!, after: String): LaunchPriceSeriesConnection!
|
|
592
599
|
walletLaunchPositions(deploymentId: ID!, wallet: Address!, first: Int!, after: String): WalletLaunchPositionResult!
|
|
593
600
|
walletLiquidityBookPositions(deploymentId: ID!, wallet: Address!, first: Int!, after: String): WalletLiquidityBookPositionResult!
|
|
594
601
|
liquidityBookPosition(deploymentId: ID!, wallet: Address!, pool: Address!, binFirst: Int!, binsAfter: String): LiquidityBookPositionDetail
|
package/dist/index.d.ts
CHANGED
|
@@ -2,9 +2,8 @@ import type { ChainDataOperationName as GeneratedOperationName } from './operati
|
|
|
2
2
|
import type * as Types from './types.generated.js';
|
|
3
3
|
export { ROBINHOOD_TESTNET_GEN9_REPLAY_FIXTURE, assertRobinhoodTestnetGen9Deployment, assertRobinhoodTestnetGen9ReplaySnapshot, type ChainDataReplayDeploymentIdentity, type ChainDataReplaySnapshot, } from './replay-fixtures.js';
|
|
4
4
|
export { CHAIN_DATA_OPERATIONS, CHAIN_DATA_OPERATION_IDS, CHAIN_DATA_PERSISTED_QUERY_MANIFEST, CHAIN_DATA_SCHEMA_SDL, type ChainDataOperationName, type ChainDataPersistedOperation, } from './operations.generated.js';
|
|
5
|
-
export type { ChainDataFreshnessQuery, ChainDataFreshnessQueryVariables, EthUsdPriceQuery, EthUsdPriceQueryVariables, LaunchDetailQuery, LaunchDetailQueryVariables, LaunchFeedQuery, LaunchFeedQueryVariables, LaunchPriceSeriesQuery, LaunchPriceSeriesQueryVariables, LiquidityBookPositionQuery, LiquidityBookPositionQueryVariables, ProtocolStatsQuery, ProtocolStatsQueryVariables, TrendingLaunchesQuery, TrendingLaunchesQueryVariables, WalletLaunchPositionsQuery, WalletLaunchPositionsQueryVariables, PortfolioWalletBalancesQuery, PortfolioWalletBalancesQueryVariables, WalletLiquidityBookPositionsQuery, WalletLiquidityBookPositionsQueryVariables, PortfolioWalletLiquidityPositionsQuery, PortfolioWalletLiquidityPositionsQueryVariables, PortfolioProjectionEventsQuery, PortfolioProjectionEventsQueryVariables, } from './types.generated.js';
|
|
5
|
+
export type { ChainDataFreshnessQuery, ChainDataFreshnessQueryVariables, EthUsdPriceQuery, EthUsdPriceQueryVariables, LaunchDetailQuery, LaunchDetailQueryVariables, LaunchFeedQuery, LaunchFeedQueryVariables, LaunchPriceSeriesQuery, LaunchPriceSeriesQueryVariables, LiquidityBookPositionQuery, LiquidityBookPositionQueryVariables, ProtocolStatsQuery, ProtocolStatsQueryVariables, TrendingLaunchesQuery, TrendingLaunchesQueryVariables, WalletLaunchPositionsQuery, WalletLaunchPositionsQueryVariables, PortfolioWalletBalancesQuery, PortfolioWalletBalancesQueryVariables, WalletLiquidityBookPositionsQuery, WalletLiquidityBookPositionsQueryVariables, PortfolioWalletLiquidityPositionsQuery, PortfolioWalletLiquidityPositionsQueryVariables, PortfolioProjectionEventsQuery, PortfolioProjectionEventsQueryVariables, PonsPairAssetsQuery, PonsPairAssetsQueryVariables, } from './types.generated.js';
|
|
6
6
|
export type ChainDataLaunchPhaseInput = Types.LaunchPhase;
|
|
7
|
-
export type ChainDataPriceVenueInput = Types.PriceVenue;
|
|
8
7
|
export type ChainDataIndexedLaunchPhase = Types.IndexedLaunchPhase;
|
|
9
8
|
export type ChainDataTradeVenue = Types.TradeVenue;
|
|
10
9
|
export type ChainDataTradeSide = Types.TradeSide;
|
|
@@ -39,6 +38,7 @@ export type ChainDataProtocolStats = Types.ProtocolStatsQuery['protocolStats'];
|
|
|
39
38
|
export type ChainDataFreshness = Types.ChainDataFreshnessQuery['chainDataFreshness'];
|
|
40
39
|
export type ChainDataPortfolioProjectionEventConnection = Types.PortfolioProjectionEventsQuery['portfolioProjectionEvents'];
|
|
41
40
|
export type ChainDataEthUsdPrice = Types.EthUsdPriceQuery['ethUsdPrice'];
|
|
41
|
+
export type ChainDataPonsPairAsset = Types.PonsPairAssetsQuery['ponsPairAssets'][number];
|
|
42
42
|
export { CHAIN_DATA_REFERENCE_PAIRS, REFERENCE_PAIR_POOL_TYPE } from './reference-pairs.js';
|
|
43
43
|
export type ChainDataReferencePairMetadata = NonNullable<Types.ReferencePairMetadataQuery['referencePairMetadata']>;
|
|
44
44
|
export type { ReferencePairMetadataQuery, ReferencePairMetadataQueryVariables } from './types.generated.js';
|
|
@@ -95,6 +95,10 @@ export interface ChainDataOperationMap {
|
|
|
95
95
|
variables: Types.PortfolioProjectionEventsQueryVariables;
|
|
96
96
|
data: Types.PortfolioProjectionEventsQuery;
|
|
97
97
|
};
|
|
98
|
+
PonsPairAssets: {
|
|
99
|
+
variables: Types.PonsPairAssetsQueryVariables;
|
|
100
|
+
data: Types.PonsPairAssetsQuery;
|
|
101
|
+
};
|
|
98
102
|
EthUsdPrice: {
|
|
99
103
|
variables: Types.EthUsdPriceQueryVariables;
|
|
100
104
|
data: Types.EthUsdPriceQuery;
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,sBAAsB,IAAI,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AAClG,OAAO,KAAK,KAAK,KAAK,MAAM,sBAAsB,CAAC;AAEnD,OAAO,EACL,qCAAqC,EACrC,oCAAoC,EACpC,wCAAwC,EACxC,KAAK,iCAAiC,EACtC,KAAK,uBAAuB,GAC7B,MAAM,sBAAsB,CAAC;AAE9B,OAAO,EACL,qBAAqB,EACrB,wBAAwB,EACxB,mCAAmC,EACnC,qBAAqB,EACrB,KAAK,sBAAsB,EAC3B,KAAK,2BAA2B,GACjC,MAAM,2BAA2B,CAAC;AAEnC,YAAY,EACV,uBAAuB,EACvB,gCAAgC,EAChC,gBAAgB,EAChB,yBAAyB,EACzB,iBAAiB,EACjB,0BAA0B,EAC1B,eAAe,EACf,wBAAwB,EACxB,sBAAsB,EACtB,+BAA+B,EAC/B,0BAA0B,EAC1B,mCAAmC,EACnC,kBAAkB,EAClB,2BAA2B,EAC3B,qBAAqB,EACrB,8BAA8B,EAC9B,0BAA0B,EAC1B,mCAAmC,EACnC,4BAA4B,EAC5B,qCAAqC,EACrC,iCAAiC,EACjC,0CAA0C,EAC1C,sCAAsC,EACtC,+CAA+C,EAC/C,8BAA8B,EAC9B,uCAAuC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA,OAAO,EACL,qCAAqC,EACrC,oCAAoC,EACpC,wCAAwC,GAGzC,MAAM,sBAAsB,CAAC;AAE9B,OAAO,EACL,qBAAqB,EACrB,wBAAwB,EACxB,mCAAmC,EACnC,qBAAqB,GAGtB,MAAM,2BAA2B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA,OAAO,EACL,qCAAqC,EACrC,oCAAoC,EACpC,wCAAwC,GAGzC,MAAM,sBAAsB,CAAC;AAE9B,OAAO,EACL,qBAAqB,EACrB,wBAAwB,EACxB,mCAAmC,EACnC,qBAAqB,GAGtB,MAAM,2BAA2B,CAAC;AAuEnC,OAAO,EAAE,0BAA0B,EAAE,wBAAwB,EAAE,MAAM,sBAAsB,CAAC;AAuH5F,MAAM,CAAC,MAAM,wCAAwC,GAAwC,IAAI,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
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 PriceVenue {\n CANONICAL\n ALL\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\ntype Query {\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 launchPriceSeries(deploymentId: ID!, token: Address!, venue: PriceVenue!, 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!, 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
2
|
export declare const CHAIN_DATA_OPERATIONS: {
|
|
3
3
|
readonly LaunchFeed: {
|
|
4
4
|
readonly name: "LaunchFeed";
|
|
@@ -25,8 +25,8 @@ export declare const CHAIN_DATA_OPERATIONS: {
|
|
|
25
25
|
readonly name: "LaunchPriceSeries";
|
|
26
26
|
readonly type: "query";
|
|
27
27
|
readonly rootField: "launchPriceSeries";
|
|
28
|
-
readonly document: "query LaunchPriceSeries($deploymentId: ID!, $token: Address!, $
|
|
29
|
-
readonly sha256Hash: "
|
|
28
|
+
readonly document: "query LaunchPriceSeries($deploymentId: ID!, $token: Address!, $first: Int!, $after: String) {\n launchPriceSeries(deploymentId: $deploymentId, token: $token, first: $first, after: $after) {\n nodes { cursor timestamp blockNumber price volumeQuote volumeQuoteAsset { token symbol raw decimals decimal } venue side transactionHash }\n pageInfo { endCursor hasNextPage }\n }\n}";
|
|
29
|
+
readonly sha256Hash: "a26c7a2e4aa1a386b0fe499b9a661263bfd700e36bf5f7b065e975228c21cbb1";
|
|
30
30
|
};
|
|
31
31
|
readonly WalletLaunchPositions: {
|
|
32
32
|
readonly name: "WalletLaunchPositions";
|
|
@@ -91,6 +91,13 @@ export declare const CHAIN_DATA_OPERATIONS: {
|
|
|
91
91
|
readonly document: "query EthUsdPrice {\n ethUsdPrice { price source observedAt observedBlock sourceChainId pair reserveTimestamp }\n}";
|
|
92
92
|
readonly sha256Hash: "0bfa48cc75fef63d384cfa839d346943c14850cb6fdcbe49be6d8bc03d366369";
|
|
93
93
|
};
|
|
94
|
+
readonly PonsPairAssets: {
|
|
95
|
+
readonly name: "PonsPairAssets";
|
|
96
|
+
readonly type: "query";
|
|
97
|
+
readonly rootField: "ponsPairAssets";
|
|
98
|
+
readonly document: "query PonsPairAssets($deploymentId: ID!) {\n ponsPairAssets(deploymentId: $deploymentId) { token approved phantomQuote graduationThreshold decimals updatedBlock }\n}";
|
|
99
|
+
readonly sha256Hash: "7153a9efbe5aa5e65e13fd7d9e508ba5fbce531bb8c67db85470f7a28dbb5bc8";
|
|
100
|
+
};
|
|
94
101
|
readonly ReferencePairMetadata: {
|
|
95
102
|
readonly name: "ReferencePairMetadata";
|
|
96
103
|
readonly type: "query";
|
|
@@ -103,7 +110,7 @@ export declare const CHAIN_DATA_OPERATION_IDS: {
|
|
|
103
110
|
readonly LaunchFeed: "e75e122a30258551085c248eabc2a526a6ce0761bba550fdc5d64fb50f7da1f3";
|
|
104
111
|
readonly LaunchDetail: "55d8759a6dc2a12d3804ce913326d435eaa0b253dbf2ca399870e962e02211d8";
|
|
105
112
|
readonly TrendingLaunches: "bfa72f926cea11d12dd6564dbcbab7d34e1ffd0d59130cc9caf26d45873cfcc9";
|
|
106
|
-
readonly LaunchPriceSeries: "
|
|
113
|
+
readonly LaunchPriceSeries: "a26c7a2e4aa1a386b0fe499b9a661263bfd700e36bf5f7b065e975228c21cbb1";
|
|
107
114
|
readonly WalletLaunchPositions: "50296690ad4968a8e1fbef342268eb0907ca753b8fd4ab464e5d6c5339e2e800";
|
|
108
115
|
readonly PortfolioWalletBalances: "d7a6d20786eef66ddd1211cf97f2e2eba2e445784dc6893ed6f6c4a5d4b511e5";
|
|
109
116
|
readonly WalletLiquidityBookPositions: "7aac47e7b94c774421ebdbe4f24130ba885f23384a51892c043b75020b05e358";
|
|
@@ -113,6 +120,7 @@ export declare const CHAIN_DATA_OPERATION_IDS: {
|
|
|
113
120
|
readonly ChainDataFreshness: "8eaf5642951345717c009269cc38880998cc4d17c05fd7bff3a78ee37cea1596";
|
|
114
121
|
readonly PortfolioProjectionEvents: "d9c94fe7ddb263121e38956a8e6870a5c528e829c461b33154777f27122c803f";
|
|
115
122
|
readonly EthUsdPrice: "0bfa48cc75fef63d384cfa839d346943c14850cb6fdcbe49be6d8bc03d366369";
|
|
123
|
+
readonly PonsPairAssets: "7153a9efbe5aa5e65e13fd7d9e508ba5fbce531bb8c67db85470f7a28dbb5bc8";
|
|
116
124
|
readonly ReferencePairMetadata: "183977a18a1dc80a255d91bbd3cc5e3f9fd96050a78a9e462d2cf2caa8d080d0";
|
|
117
125
|
};
|
|
118
126
|
export declare const CHAIN_DATA_PERSISTED_QUERY_MANIFEST: {
|
|
@@ -134,8 +142,8 @@ export declare const CHAIN_DATA_PERSISTED_QUERY_MANIFEST: {
|
|
|
134
142
|
readonly name: "TrendingLaunches";
|
|
135
143
|
readonly type: "query";
|
|
136
144
|
}, {
|
|
137
|
-
readonly id: "
|
|
138
|
-
readonly body: "query LaunchPriceSeries($deploymentId: ID!, $token: Address!, $
|
|
145
|
+
readonly id: "a26c7a2e4aa1a386b0fe499b9a661263bfd700e36bf5f7b065e975228c21cbb1";
|
|
146
|
+
readonly body: "query LaunchPriceSeries($deploymentId: ID!, $token: Address!, $first: Int!, $after: String) {\n launchPriceSeries(deploymentId: $deploymentId, token: $token, first: $first, after: $after) {\n nodes { cursor timestamp blockNumber price volumeQuote volumeQuoteAsset { token symbol raw decimals decimal } venue side transactionHash }\n pageInfo { endCursor hasNextPage }\n }\n}";
|
|
139
147
|
readonly name: "LaunchPriceSeries";
|
|
140
148
|
readonly type: "query";
|
|
141
149
|
}, {
|
|
@@ -183,6 +191,11 @@ export declare const CHAIN_DATA_PERSISTED_QUERY_MANIFEST: {
|
|
|
183
191
|
readonly body: "query EthUsdPrice {\n ethUsdPrice { price source observedAt observedBlock sourceChainId pair reserveTimestamp }\n}";
|
|
184
192
|
readonly name: "EthUsdPrice";
|
|
185
193
|
readonly type: "query";
|
|
194
|
+
}, {
|
|
195
|
+
readonly id: "7153a9efbe5aa5e65e13fd7d9e508ba5fbce531bb8c67db85470f7a28dbb5bc8";
|
|
196
|
+
readonly body: "query PonsPairAssets($deploymentId: ID!) {\n ponsPairAssets(deploymentId: $deploymentId) { token approved phantomQuote graduationThreshold decimals updatedBlock }\n}";
|
|
197
|
+
readonly name: "PonsPairAssets";
|
|
198
|
+
readonly type: "query";
|
|
186
199
|
}, {
|
|
187
200
|
readonly id: "183977a18a1dc80a255d91bbd3cc5e3f9fd96050a78a9e462d2cf2caa8d080d0";
|
|
188
201
|
readonly body: "query ReferencePairMetadata($deploymentId: ID!, $pair: Address!) {\n referencePairMetadata(deploymentId: $deploymentId, pair: $pair) {\n chainId\n deploymentId\n protocol\n factory\n pair\n token0\n token1\n createdBlock\n createdBlockHash\n createdTimestamp\n createdTransactionHash\n }\n}";
|
|
@@ -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,gvhBAAgvhB,CAAC;AAEnxhB,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,5 +1,5 @@
|
|
|
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 PriceVenue {\n CANONICAL\n ALL\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\ntype Query {\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 launchPriceSeries(deploymentId: ID!, token: Address!, venue: PriceVenue!, 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!, 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
3
|
export const CHAIN_DATA_OPERATIONS = {
|
|
4
4
|
"LaunchFeed": {
|
|
5
5
|
"name": "LaunchFeed",
|
|
@@ -26,8 +26,8 @@ export const CHAIN_DATA_OPERATIONS = {
|
|
|
26
26
|
"name": "LaunchPriceSeries",
|
|
27
27
|
"type": "query",
|
|
28
28
|
"rootField": "launchPriceSeries",
|
|
29
|
-
"document": "query LaunchPriceSeries($deploymentId: ID!, $token: Address!, $
|
|
30
|
-
"sha256Hash": "
|
|
29
|
+
"document": "query LaunchPriceSeries($deploymentId: ID!, $token: Address!, $first: Int!, $after: String) {\n launchPriceSeries(deploymentId: $deploymentId, token: $token, first: $first, after: $after) {\n nodes { cursor timestamp blockNumber price volumeQuote volumeQuoteAsset { token symbol raw decimals decimal } venue side transactionHash }\n pageInfo { endCursor hasNextPage }\n }\n}",
|
|
30
|
+
"sha256Hash": "a26c7a2e4aa1a386b0fe499b9a661263bfd700e36bf5f7b065e975228c21cbb1"
|
|
31
31
|
},
|
|
32
32
|
"WalletLaunchPositions": {
|
|
33
33
|
"name": "WalletLaunchPositions",
|
|
@@ -92,6 +92,13 @@ export const CHAIN_DATA_OPERATIONS = {
|
|
|
92
92
|
"document": "query EthUsdPrice {\n ethUsdPrice { price source observedAt observedBlock sourceChainId pair reserveTimestamp }\n}",
|
|
93
93
|
"sha256Hash": "0bfa48cc75fef63d384cfa839d346943c14850cb6fdcbe49be6d8bc03d366369"
|
|
94
94
|
},
|
|
95
|
+
"PonsPairAssets": {
|
|
96
|
+
"name": "PonsPairAssets",
|
|
97
|
+
"type": "query",
|
|
98
|
+
"rootField": "ponsPairAssets",
|
|
99
|
+
"document": "query PonsPairAssets($deploymentId: ID!) {\n ponsPairAssets(deploymentId: $deploymentId) { token approved phantomQuote graduationThreshold decimals updatedBlock }\n}",
|
|
100
|
+
"sha256Hash": "7153a9efbe5aa5e65e13fd7d9e508ba5fbce531bb8c67db85470f7a28dbb5bc8"
|
|
101
|
+
},
|
|
95
102
|
"ReferencePairMetadata": {
|
|
96
103
|
"name": "ReferencePairMetadata",
|
|
97
104
|
"type": "query",
|
|
@@ -104,7 +111,7 @@ export const CHAIN_DATA_OPERATION_IDS = {
|
|
|
104
111
|
"LaunchFeed": "e75e122a30258551085c248eabc2a526a6ce0761bba550fdc5d64fb50f7da1f3",
|
|
105
112
|
"LaunchDetail": "55d8759a6dc2a12d3804ce913326d435eaa0b253dbf2ca399870e962e02211d8",
|
|
106
113
|
"TrendingLaunches": "bfa72f926cea11d12dd6564dbcbab7d34e1ffd0d59130cc9caf26d45873cfcc9",
|
|
107
|
-
"LaunchPriceSeries": "
|
|
114
|
+
"LaunchPriceSeries": "a26c7a2e4aa1a386b0fe499b9a661263bfd700e36bf5f7b065e975228c21cbb1",
|
|
108
115
|
"WalletLaunchPositions": "50296690ad4968a8e1fbef342268eb0907ca753b8fd4ab464e5d6c5339e2e800",
|
|
109
116
|
"PortfolioWalletBalances": "d7a6d20786eef66ddd1211cf97f2e2eba2e445784dc6893ed6f6c4a5d4b511e5",
|
|
110
117
|
"WalletLiquidityBookPositions": "7aac47e7b94c774421ebdbe4f24130ba885f23384a51892c043b75020b05e358",
|
|
@@ -114,6 +121,7 @@ export const CHAIN_DATA_OPERATION_IDS = {
|
|
|
114
121
|
"ChainDataFreshness": "8eaf5642951345717c009269cc38880998cc4d17c05fd7bff3a78ee37cea1596",
|
|
115
122
|
"PortfolioProjectionEvents": "d9c94fe7ddb263121e38956a8e6870a5c528e829c461b33154777f27122c803f",
|
|
116
123
|
"EthUsdPrice": "0bfa48cc75fef63d384cfa839d346943c14850cb6fdcbe49be6d8bc03d366369",
|
|
124
|
+
"PonsPairAssets": "7153a9efbe5aa5e65e13fd7d9e508ba5fbce531bb8c67db85470f7a28dbb5bc8",
|
|
117
125
|
"ReferencePairMetadata": "183977a18a1dc80a255d91bbd3cc5e3f9fd96050a78a9e462d2cf2caa8d080d0"
|
|
118
126
|
};
|
|
119
127
|
export const CHAIN_DATA_PERSISTED_QUERY_MANIFEST = {
|
|
@@ -139,8 +147,8 @@ export const CHAIN_DATA_PERSISTED_QUERY_MANIFEST = {
|
|
|
139
147
|
"type": "query"
|
|
140
148
|
},
|
|
141
149
|
{
|
|
142
|
-
"id": "
|
|
143
|
-
"body": "query LaunchPriceSeries($deploymentId: ID!, $token: Address!, $
|
|
150
|
+
"id": "a26c7a2e4aa1a386b0fe499b9a661263bfd700e36bf5f7b065e975228c21cbb1",
|
|
151
|
+
"body": "query LaunchPriceSeries($deploymentId: ID!, $token: Address!, $first: Int!, $after: String) {\n launchPriceSeries(deploymentId: $deploymentId, token: $token, first: $first, after: $after) {\n nodes { cursor timestamp blockNumber price volumeQuote volumeQuoteAsset { token symbol raw decimals decimal } venue side transactionHash }\n pageInfo { endCursor hasNextPage }\n }\n}",
|
|
144
152
|
"name": "LaunchPriceSeries",
|
|
145
153
|
"type": "query"
|
|
146
154
|
},
|
|
@@ -198,6 +206,12 @@ export const CHAIN_DATA_PERSISTED_QUERY_MANIFEST = {
|
|
|
198
206
|
"name": "EthUsdPrice",
|
|
199
207
|
"type": "query"
|
|
200
208
|
},
|
|
209
|
+
{
|
|
210
|
+
"id": "7153a9efbe5aa5e65e13fd7d9e508ba5fbce531bb8c67db85470f7a28dbb5bc8",
|
|
211
|
+
"body": "query PonsPairAssets($deploymentId: ID!) {\n ponsPairAssets(deploymentId: $deploymentId) { token approved phantomQuote graduationThreshold decimals updatedBlock }\n}",
|
|
212
|
+
"name": "PonsPairAssets",
|
|
213
|
+
"type": "query"
|
|
214
|
+
},
|
|
201
215
|
{
|
|
202
216
|
"id": "183977a18a1dc80a255d91bbd3cc5e3f9fd96050a78a9e462d2cf2caa8d080d0",
|
|
203
217
|
"body": "query ReferencePairMetadata($deploymentId: ID!, $pair: Address!) {\n referencePairMetadata(deploymentId: $deploymentId, pair: $pair) {\n chainId\n deploymentId\n protocol\n factory\n pair\n token0\n token1\n createdBlock\n createdBlockHash\n createdTimestamp\n createdTransactionHash\n }\n}",
|
|
@@ -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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"}
|
|
@@ -14,7 +14,6 @@ export type IndexedLaunchPhase = 'bonding' | 'graduated';
|
|
|
14
14
|
export type LaunchPhase = 'BONDING' | 'GRADUATED';
|
|
15
15
|
export type LaunchProvider = 'launchonblock' | 'pons';
|
|
16
16
|
export type PonsLifecyclePhase = 'bonding' | 'pool_created' | 'rescued' | 'swept';
|
|
17
|
-
export type PriceVenue = 'ALL' | 'CANONICAL';
|
|
18
17
|
export type TradeSide = 'buy' | 'sell';
|
|
19
18
|
export type TradeVenue = 'amm' | 'curve' | 'lb';
|
|
20
19
|
export type LaunchFeedQueryVariables = Exact<{
|
|
@@ -603,7 +602,6 @@ export type TrendingLaunchesQuery = {
|
|
|
603
602
|
export type LaunchPriceSeriesQueryVariables = Exact<{
|
|
604
603
|
deploymentId: string | number;
|
|
605
604
|
token: string;
|
|
606
|
-
venue: PriceVenue;
|
|
607
605
|
first: number;
|
|
608
606
|
after?: string | null | undefined;
|
|
609
607
|
}>;
|
|
@@ -1076,6 +1074,19 @@ export type EthUsdPriceQuery = {
|
|
|
1076
1074
|
reserveTimestamp: number;
|
|
1077
1075
|
};
|
|
1078
1076
|
};
|
|
1077
|
+
export type PonsPairAssetsQueryVariables = Exact<{
|
|
1078
|
+
deploymentId: string | number;
|
|
1079
|
+
}>;
|
|
1080
|
+
export type PonsPairAssetsQuery = {
|
|
1081
|
+
ponsPairAssets: Array<{
|
|
1082
|
+
token: string;
|
|
1083
|
+
approved: boolean;
|
|
1084
|
+
phantomQuote: string | null;
|
|
1085
|
+
graduationThreshold: string | null;
|
|
1086
|
+
decimals: number | null;
|
|
1087
|
+
updatedBlock: string;
|
|
1088
|
+
}>;
|
|
1089
|
+
};
|
|
1079
1090
|
export type ReferencePairMetadataQueryVariables = Exact<{
|
|
1080
1091
|
deploymentId: string | number;
|
|
1081
1092
|
pair: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.generated.d.ts","sourceRoot":"","sources":["../src/types.generated.ts"],"names":[],"mappings":"AAAA,0CAA0C;AAC1C,KAAK,KAAK,CAAC,CAAC,SAAS;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;CAAE,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAE,CAAC;AAC5E,0CAA0C;AAC1C,MAAM,MAAM,WAAW,CAAC,CAAC,IAAI,CAAC,GAAG;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,gBAAgB,GAAG,YAAY,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,KAAK;CAAE,CAAC;AAC/G,MAAM,MAAM,iBAAiB,GACzB,gBAAgB,CAAC;AAErB,MAAM,MAAM,sBAAsB,GAC9B,YAAY,GACZ,YAAY,GACZ,YAAY,CAAC;AAEjB,MAAM,MAAM,kBAAkB,GAC1B,SAAS,GACT,WAAW,CAAC;AAEhB,MAAM,MAAM,WAAW,GACnB,SAAS,GACT,WAAW,CAAC;AAEhB,MAAM,MAAM,cAAc,GACtB,eAAe,GACf,MAAM,CAAC;AAEX,MAAM,MAAM,kBAAkB,GAC1B,SAAS,GACT,cAAc,GACd,SAAS,GACT,OAAO,CAAC;AAEZ,MAAM,MAAM,UAAU,GAClB,KAAK,GACL,WAAW,CAAC;AAEhB,MAAM,MAAM,SAAS,GACjB,KAAK,GACL,MAAM,CAAC;AAEX,MAAM,MAAM,UAAU,GAClB,KAAK,GACL,OAAO,GACP,IAAI,CAAC;AAET,MAAM,MAAM,wBAAwB,GAAG,KAAK,CAAC;IAC3C,YAAY,EAAE,MAAM,GAAG,MAAM,CAAC;IAC9B,KAAK,CAAC,EAAE,WAAW,GAAG,IAAI,GAAG,SAAS,CAAC;IACvC,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;CACnC,CAAC,CAAC;AAGH,MAAM,MAAM,eAAe,GAAG;IAAE,QAAQ,EAAE;QAAE,KAAK,EAAE,KAAK,CAAC;YAAE,EAAE,EAAE,MAAM,CAAC;YAAC,QAAQ,EAAE,cAAc,CAAC;YAAC,KAAK,EAAE,MAAM,CAAC;YAAC,UAAU,EAAE,MAAM,CAAC;YAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,OAAO,EAAE,MAAM,CAAC;YAAC,UAAU,EAAE,MAAM,CAAC;YAAC,WAAW,EAAE,MAAM,CAAC;YAAC,YAAY,EAAE,MAAM,CAAC;YAAC,WAAW,EAAE,MAAM,CAAC;YAAC,KAAK,EAAE,kBAAkB,CAAC;YAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,iBAAiB,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,mBAAmB,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,WAAW,EAAE,MAAM,CAAC;YAAC,kBAAkB,EAAE,OAAO,CAAC;YAAC,cAAc,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,sBAAsB,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,yBAAyB,EAAE,OAAO,CAAC;YAAC,gBAAgB,EAAE,OAAO,CAAC;YAAC,mBAAmB,EAAE,MAAM,CAAC;YAAC,yBAAyB,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,kBAAkB,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,UAAU,EAAE,MAAM,CAAC;YAAC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,uBAAuB,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,YAAY,EAAE,MAAM,CAAC;YAAC,gBAAgB,EAAE,MAAM,CAAC;YAAC,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,IAAI,EAAE;gBAAE,cAAc,EAAE,kBAAkB,CAAC;gBAAC,KAAK,EAAE,MAAM,CAAC;gBAAC,cAAc,EAAE,MAAM,CAAC;gBAAC,YAAY,EAAE;oBAAE,GAAG,EAAE,MAAM,CAAC;oBAAC,OAAO,EAAE,MAAM,CAAA;iBAAE,CAAC;gBAAC,0BAA0B,EAAE,OAAO,CAAC;gBAAC,WAAW,EAAE,MAAM,CAAC;gBAAC,aAAa,EAAE,MAAM,CAAC;gBAAC,cAAc,EAAE,OAAO,CAAC;gBAAC,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,WAAW,EAAE,MAAM,CAAC;gBAAC,WAAW,EAAE,MAAM,CAAC;gBAAC,mBAAmB,EAAE,MAAM,CAAC;gBAAC,oBAAoB,EAAE,MAAM,CAAC;gBAAC,mBAAmB,EAAE,MAAM,CAAC;gBAAC,cAAc,EAAE,MAAM,CAAC;gBAAC,UAAU,EAAE,MAAM,CAAC;gBAAC,yBAAyB,EAAE,MAAM,CAAC;gBAAC,WAAW,EAAE;oBAAE,GAAG,EAAE,MAAM,CAAC;oBAAC,OAAO,EAAE,MAAM,CAAA;iBAAE,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,YAAY,EAAE;oBAAE,GAAG,EAAE,MAAM,CAAC;oBAAC,OAAO,EAAE,MAAM,CAAA;iBAAE,GAAG,IAAI,CAAC;gBAAC,gBAAgB,EAAE,MAAM,CAAC;gBAAC,aAAa,EAAE,MAAM,CAAC;gBAAC,YAAY,EAAE;oBAAE,KAAK,EAAE,MAAM,CAAC;oBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;oBAAC,GAAG,EAAE,MAAM,CAAC;oBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;oBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;iBAAE,CAAC;gBAAC,mBAAmB,EAAE;oBAAE,KAAK,EAAE,MAAM,CAAC;oBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;oBAAC,GAAG,EAAE,MAAM,CAAC;oBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;oBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;iBAAE,CAAC;gBAAC,UAAU,EAAE;oBAAE,KAAK,EAAE,MAAM,CAAC;oBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;oBAAC,GAAG,EAAE,MAAM,CAAC;oBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;oBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;iBAAE,CAAC;gBAAC,WAAW,EAAE;oBAAE,KAAK,EAAE,MAAM,CAAC;oBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;oBAAC,GAAG,EAAE,MAAM,CAAC;oBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;oBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;iBAAE,GAAG,IAAI,CAAA;aAAE,GAAG,IAAI,CAAC;YAAC,sBAAsB,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC;YAAC,wBAAwB,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC;YAAC,mBAAmB,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC;YAAC,2BAA2B,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC;YAAC,8BAA8B,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC;YAAC,kBAAkB,EAAE,KAAK,CAAC;gBAAE,UAAU,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE;oBAAE,KAAK,EAAE,MAAM,CAAC;oBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;oBAAC,GAAG,EAAE,MAAM,CAAC;oBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;oBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;iBAAE,CAAA;aAAE,CAAC,CAAC;YAAC,oBAAoB,EAAE,KAAK,CAAC;gBAAE,UAAU,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE;oBAAE,KAAK,EAAE,MAAM,CAAC;oBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;oBAAC,GAAG,EAAE,MAAM,CAAC;oBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;oBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;iBAAE,CAAA;aAAE,CAAC,CAAA;SAAE,CAAC,CAAC;QAAC,QAAQ,EAAE;YAAE,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,WAAW,EAAE,OAAO,CAAA;SAAE,CAAA;KAAE,CAAA;CAAE,CAAC;AAEluG,MAAM,MAAM,0BAA0B,GAAG,KAAK,CAAC;IAC7C,YAAY,EAAE,MAAM,GAAG,MAAM,CAAC;IAC9B,KAAK,EAAE,MAAM,CAAC;CACf,CAAC,CAAC;AAGH,MAAM,MAAM,iBAAiB,GAAG;IAAE,MAAM,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,cAAc,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;QAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAC;QAAC,YAAY,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,kBAAkB,CAAC;QAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;QAAC,iBAAiB,EAAE;YAAE,GAAG,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAA;SAAE,CAAC;QAAC,mBAAmB,EAAE;YAAE,GAAG,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAA;SAAE,CAAC;QAAC,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;QAAC,WAAW,EAAE,MAAM,CAAC;QAAC,kBAAkB,EAAE,OAAO,CAAC;QAAC,cAAc,EAAE;YAAE,GAAG,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAA;SAAE,CAAC;QAAC,sBAAsB,EAAE;YAAE,GAAG,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAA;SAAE,CAAC;QAAC,yBAAyB,EAAE,OAAO,CAAC;QAAC,gBAAgB,EAAE,OAAO,CAAC;QAAC,mBAAmB,EAAE,MAAM,CAAC;QAAC,yBAAyB,EAAE;YAAE,GAAG,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAA;SAAE,CAAC;QAAC,kBAAkB,EAAE;YAAE,GAAG,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAA;SAAE,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;QAAC,uBAAuB,EAAE,MAAM,GAAG,IAAI,CAAC;QAAC,YAAY,EAAE,MAAM,CAAC;QAAC,gBAAgB,EAAE,MAAM,CAAC;QAAC,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;QAAC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;QAAC,YAAY,EAAE,OAAO,CAAC;QAAC,sBAAsB,EAAE,OAAO,CAAC;QAAC,IAAI,EAAE;YAAE,cAAc,EAAE,kBAAkB,CAAC;YAAC,KAAK,EAAE,MAAM,CAAC;YAAC,cAAc,EAAE,MAAM,CAAC;YAAC,YAAY,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,0BAA0B,EAAE,OAAO,CAAC;YAAC,WAAW,EAAE,MAAM,CAAC;YAAC,aAAa,EAAE,MAAM,CAAC;YAAC,cAAc,EAAE,OAAO,CAAC;YAAC,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,WAAW,EAAE,MAAM,CAAC;YAAC,WAAW,EAAE,MAAM,CAAC;YAAC,mBAAmB,EAAE,MAAM,CAAC;YAAC,oBAAoB,EAAE,MAAM,CAAC;YAAC,mBAAmB,EAAE,MAAM,CAAC;YAAC,cAAc,EAAE,MAAM,CAAC;YAAC,UAAU,EAAE,MAAM,CAAC;YAAC,yBAAyB,EAAE,MAAM,CAAC;YAAC,WAAW,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,YAAY,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,GAAG,IAAI,CAAC;YAAC,gBAAgB,EAAE,MAAM,CAAC;YAAC,aAAa,EAAE,MAAM,CAAC;YAAC,YAAY,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC;YAAC,mBAAmB,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC;YAAC,UAAU,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC;YAAC,WAAW,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,GAAG,IAAI,CAAA;SAAE,GAAG,IAAI,CAAC;QAAC,sBAAsB,EAAE;YAAE,KAAK,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,GAAG,EAAE,MAAM,CAAC;YAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;SAAE,CAAC;QAAC,wBAAwB,EAAE;YAAE,KAAK,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,GAAG,EAAE,MAAM,CAAC;YAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;SAAE,CAAC;QAAC,mBAAmB,EAAE;YAAE,KAAK,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,GAAG,EAAE,MAAM,CAAC;YAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;SAAE,CAAC;QAAC,2BAA2B,EAAE;YAAE,KAAK,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,GAAG,EAAE,MAAM,CAAC;YAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;SAAE,CAAC;QAAC,8BAA8B,EAAE;YAAE,KAAK,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,GAAG,EAAE,MAAM,CAAC;YAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;SAAE,CAAC;QAAC,kBAAkB,EAAE,KAAK,CAAC;YAAE,UAAU,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAA;SAAE,CAAC,CAAC;QAAC,oBAAoB,EAAE,KAAK,CAAC;YAAE,UAAU,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAA;SAAE,CAAC,CAAC;QAAC,KAAK,EAAE,KAAK,CAAC;YAAE,OAAO,EAAE,MAAM,CAAC;YAAC,QAAQ,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,CAAC;YAAC,aAAa,EAAE,OAAO,CAAC;YAAC,UAAU,EAAE,MAAM,CAAC;YAAC,iBAAiB,EAAE,OAAO,CAAC;YAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,YAAY,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,GAAG,IAAI,CAAC;YAAC,YAAY,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,GAAG,IAAI,CAAC;YAAC,QAAQ,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,GAAG,IAAI,CAAC;YAAC,aAAa,EAAE,MAAM,CAAC;YAAC,YAAY,EAAE,MAAM,CAAC;YAAC,gBAAgB,EAAE,MAAM,CAAC;YAAC,iBAAiB,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,GAAG,IAAI,CAAC;YAAC,aAAa,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,GAAG,IAAI,CAAA;SAAE,CAAC,CAAC;QAAC,eAAe,EAAE,KAAK,CAAC;YAAE,EAAE,EAAE,MAAM,CAAC;YAAC,QAAQ,EAAE,sBAAsB,CAAC;YAAC,YAAY,EAAE,MAAM,CAAC;YAAC,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,MAAM,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,YAAY,EAAE,MAAM,CAAC;YAAC,sBAAsB,EAAE,MAAM,CAAC;YAAC,eAAe,EAAE,MAAM,CAAA;SAAE,CAAC,CAAC;QAAC,kBAAkB,EAAE;YAAE,cAAc,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,UAAU,EAAE,OAAO,CAAC;YAAC,OAAO,EAAE,OAAO,CAAC;YAAC,mBAAmB,EAAE;gBAAE,MAAM,EAAE;oBAAE,GAAG,EAAE,MAAM,CAAC;oBAAC,OAAO,EAAE,MAAM,CAAA;iBAAE,CAAC;gBAAC,WAAW,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,uBAAuB,EAAE;gBAAE,MAAM,EAAE;oBAAE,GAAG,EAAE,MAAM,CAAC;oBAAC,OAAO,EAAE,MAAM,CAAA;iBAAE,CAAC;gBAAC,WAAW,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,WAAW,EAAE;gBAAE,MAAM,EAAE;oBAAE,GAAG,EAAE,MAAM,CAAC;oBAAC,OAAO,EAAE,MAAM,CAAA;iBAAE,CAAC;gBAAC,WAAW,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,uBAAuB,EAAE;gBAAE,MAAM,EAAE;oBAAE,GAAG,EAAE,MAAM,CAAC;oBAAC,OAAO,EAAE,MAAM,CAAA;iBAAE,CAAC;gBAAC,WAAW,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,UAAU,EAAE;gBAAE,MAAM,EAAE;oBAAE,GAAG,EAAE,MAAM,CAAC;oBAAC,OAAO,EAAE,MAAM,CAAA;iBAAE,CAAC;gBAAC,WAAW,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,oBAAoB,EAAE;gBAAE,MAAM,EAAE;oBAAE,GAAG,EAAE,MAAM,CAAC;oBAAC,OAAO,EAAE,MAAM,CAAA;iBAAE,CAAC;gBAAC,WAAW,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,QAAQ,EAAE;gBAAE,MAAM,EAAE;oBAAE,GAAG,EAAE,MAAM,CAAC;oBAAC,OAAO,EAAE,MAAM,CAAA;iBAAE,CAAC;gBAAC,WAAW,EAAE,MAAM,CAAA;aAAE,CAAA;SAAE,CAAC;QAAC,YAAY,EAAE,KAAK,CAAC;YAAE,EAAE,EAAE,MAAM,CAAC;YAAC,KAAK,EAAE,UAAU,CAAC;YAAC,IAAI,EAAE,SAAS,CAAC;YAAC,MAAM,EAAE,MAAM,CAAC;YAAC,SAAS,EAAE,MAAM,CAAC;YAAC,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,UAAU,EAAE,MAAM,CAAC;YAAC,WAAW,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,WAAW,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,WAAW,EAAE,MAAM,CAAC;YAAC,cAAc,EAAE,MAAM,CAAC;YAAC,eAAe,EAAE,MAAM,CAAC;YAAC,QAAQ,EAAE,MAAM,CAAC;YAAC,gBAAgB,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAA;SAAE,CAAC,CAAC;QAAC,IAAI,EAAE,KAAK,CAAC;YAAE,EAAE,EAAE,MAAM,CAAC;YAAC,IAAI,EAAE,MAAM,CAAC;YAAC,YAAY,EAAE,MAAM,CAAC;YAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,UAAU,EAAE,MAAM,CAAC;YAAC,kBAAkB,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,kBAAkB,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,mBAAmB,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,mBAAmB,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,YAAY,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,WAAW,EAAE,MAAM,CAAC;YAAC,cAAc,EAAE,MAAM,CAAC;YAAC,eAAe,EAAE,MAAM,CAAC;YAAC,uBAAuB,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC;YAAC,wBAAwB,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAA;SAAE,CAAC,CAAA;KAAE,GAAG,IAAI,CAAA;CAAE,CAAC;AAEjkM,MAAM,MAAM,8BAA8B,GAAG,KAAK,CAAC;IACjD,YAAY,EAAE,MAAM,GAAG,MAAM,CAAC;IAC9B,KAAK,EAAE,MAAM,CAAC;CACf,CAAC,CAAC;AAGH,MAAM,MAAM,qBAAqB,GAAG;IAAE,gBAAgB,EAAE;QAAE,OAAO,EAAE,OAAO,CAAC;QAAC,kBAAkB,EAAE,MAAM,CAAC;QAAC,YAAY,EAAE,MAAM,CAAC;QAAC,gBAAgB,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,KAAK,CAAC;YAAE,KAAK,EAAE,MAAM,CAAC;YAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,KAAK,EAAE,kBAAkB,CAAC;YAAC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,iBAAiB,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,eAAe,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,kBAAkB,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,GAAG,IAAI,CAAC;YAAC,gBAAgB,EAAE,OAAO,CAAC;YAAC,eAAe,EAAE,MAAM,CAAC;YAAC,YAAY,EAAE,MAAM,CAAC;YAAC,SAAS,EAAE,MAAM,CAAC;YAAC,aAAa,EAAE,MAAM,CAAA;SAAE,CAAC,CAAA;KAAE,CAAA;CAAE,CAAC;AAE/jB,MAAM,MAAM,+BAA+B,GAAG,KAAK,CAAC;IAClD,YAAY,EAAE,MAAM,GAAG,MAAM,CAAC;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,UAAU,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;CACnC,CAAC,CAAC;AAGH,MAAM,MAAM,sBAAsB,GAAG;IAAE,iBAAiB,EAAE;QAAE,KAAK,EAAE,KAAK,CAAC;YAAE,MAAM,EAAE,MAAM,CAAC;YAAC,SAAS,EAAE,MAAM,CAAC;YAAC,WAAW,EAAE,MAAM,CAAC;YAAC,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,WAAW,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,KAAK,EAAE,UAAU,CAAC;YAAC,IAAI,EAAE,SAAS,CAAC;YAAC,eAAe,EAAE,MAAM,CAAC;YAAC,gBAAgB,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAA;SAAE,CAAC,CAAC;QAAC,QAAQ,EAAE;YAAE,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,WAAW,EAAE,OAAO,CAAA;SAAE,CAAA;KAAE,CAAA;CAAE,CAAC;AAEnc,MAAM,MAAM,mCAAmC,GAAG,KAAK,CAAC;IACtD,YAAY,EAAE,MAAM,GAAG,MAAM,CAAC;IAC9B,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;CACnC,CAAC,CAAC;AAGH,MAAM,MAAM,0BAA0B,GAAG;IAAE,qBAAqB,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,OAAO,CAAC;QAAC,SAAS,EAAE,KAAK,CAAC;YAAE,KAAK,EAAE,MAAM,CAAC;YAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,KAAK,EAAE,kBAAkB,CAAC;YAAC,OAAO,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,YAAY,EAAE,MAAM,CAAC;YAAC,UAAU,EAAE,MAAM,CAAC;YAAC,UAAU,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,aAAa,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,aAAa,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,QAAQ,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,QAAQ,EAAE,MAAM,CAAC;YAAC,SAAS,EAAE,MAAM,CAAC;YAAC,eAAe,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC;YAAC,kBAAkB,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC;YAAC,kBAAkB,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC;YAAC,aAAa,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAA;SAAE,CAAC,CAAC;QAAC,QAAQ,EAAE;YAAE,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,WAAW,EAAE,OAAO,CAAA;SAAE,CAAC;QAAC,MAAM,EAAE;YAAE,UAAU,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,aAAa,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,aAAa,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAC;YAAC,QAAQ,EAAE;gBAAE,GAAG,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAA;aAAE,CAAA;SAAE,GAAG,IAAI,CAAC;QAAC,kBAAkB,EAAE,KAAK,CAAC;YAAE,UAAU,EAAE,MAAM,CAAC;YAAC,eAAe,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC;YAAC,kBAAkB,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC;YAAC,kBAAkB,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC;YAAC,aAAa,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAA;SAAE,CAAC,GAAG,IAAI,CAAA;KAAE,CAAA;CAAE,CAAC;AAEr0D,MAAM,MAAM,qCAAqC,GAAG,KAAK,CAAC;IACxD,YAAY,EAAE,MAAM,GAAG,MAAM,CAAC;IAC9B,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;CACnC,CAAC,CAAC;AAGH,MAAM,MAAM,4BAA4B,GAAG;IAAE,qBAAqB,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,OAAO,CAAC;QAAC,oBAAoB,EAAE;YAAE,eAAe,EAAE,MAAM,CAAC;YAAC,eAAe,EAAE,MAAM,CAAC;YAAC,UAAU,EAAE,MAAM,CAAA;SAAE,GAAG,IAAI,CAAC;QAAC,SAAS,EAAE,KAAK,CAAC;YAAE,aAAa,EAAE,MAAM,CAAC;YAAC,KAAK,EAAE,MAAM,CAAC;YAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,YAAY,EAAE,MAAM,CAAC;YAAC,UAAU,EAAE,MAAM,CAAC;YAAC,eAAe,EAAE,MAAM,CAAC;YAAC,eAAe,EAAE,MAAM,CAAC;YAAC,UAAU,EAAE,MAAM,CAAC;YAAC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,4BAA4B,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,sBAAsB,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,uBAAuB,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,4BAA4B,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,eAAe,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC;YAAC,kBAAkB,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC;YAAC,kBAAkB,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC;YAAC,aAAa,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAA;SAAE,CAAC,CAAC;QAAC,QAAQ,EAAE;YAAE,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,WAAW,EAAE,OAAO,CAAA;SAAE,CAAA;KAAE,CAAA;CAAE,CAAC;AAEntC,MAAM,MAAM,0CAA0C,GAAG,KAAK,CAAC;IAC7D,YAAY,EAAE,MAAM,GAAG,MAAM,CAAC;IAC9B,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;CACnC,CAAC,CAAC;AAGH,MAAM,MAAM,iCAAiC,GAAG;IAAE,4BAA4B,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,OAAO,CAAC;QAAC,SAAS,EAAE,KAAK,CAAC;YAAE,WAAW,EAAE,MAAM,CAAC;YAAC,aAAa,EAAE,MAAM,CAAC;YAAC,cAAc,EAAE,MAAM,CAAC;YAAC,mBAAmB,EAAE,MAAM,CAAC;YAAC,gBAAgB,EAAE,MAAM,CAAC;YAAC,oBAAoB,EAAE,MAAM,CAAC;YAAC,oBAAoB,EAAE,MAAM,CAAC;YAAC,0BAA0B,EAAE,MAAM,CAAC;YAAC,IAAI,EAAE;gBAAE,OAAO,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAC;gBAAC,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,YAAY,EAAE,MAAM,CAAC;gBAAC,gBAAgB,EAAE,MAAM,CAAA;aAAE,GAAG,IAAI,CAAA;SAAE,CAAC,CAAC;QAAC,QAAQ,EAAE;YAAE,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,WAAW,EAAE,OAAO,CAAA;SAAE,CAAA;KAAE,CAAA;CAAE,CAAC;AAErkB,MAAM,MAAM,+CAA+C,GAAG,KAAK,CAAC;IAClE,YAAY,EAAE,MAAM,GAAG,MAAM,CAAC;IAC9B,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;CACnC,CAAC,CAAC;AAGH,MAAM,MAAM,sCAAsC,GAAG;IAAE,4BAA4B,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,OAAO,CAAC;QAAC,oBAAoB,EAAE;YAAE,eAAe,EAAE,MAAM,CAAC;YAAC,eAAe,EAAE,MAAM,CAAC;YAAC,UAAU,EAAE,MAAM,CAAA;SAAE,GAAG,IAAI,CAAC;QAAC,SAAS,EAAE,KAAK,CAAC;YAAE,WAAW,EAAE,MAAM,CAAC;YAAC,aAAa,EAAE,MAAM,CAAC;YAAC,cAAc,EAAE,MAAM,CAAC;YAAC,mBAAmB,EAAE,MAAM,CAAC;YAAC,gBAAgB,EAAE,MAAM,CAAC;YAAC,oBAAoB,EAAE,MAAM,CAAC;YAAC,oBAAoB,EAAE,MAAM,CAAC;YAAC,0BAA0B,EAAE,MAAM,CAAC;YAAC,IAAI,EAAE;gBAAE,OAAO,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAC;gBAAC,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,YAAY,EAAE,MAAM,CAAC;gBAAC,gBAAgB,EAAE,MAAM,CAAA;aAAE,GAAG,IAAI,CAAC;YAAC,gBAAgB,EAAE,KAAK,CAAC;gBAAE,aAAa,EAAE,MAAM,CAAC;gBAAC,KAAK,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,CAAC;gBAAC,SAAS,EAAE,MAAM,CAAC;gBAAC,aAAa,EAAE,MAAM,CAAC;gBAAC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,4BAA4B,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,sBAAsB,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,uBAAuB,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,4BAA4B,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAC,GAAG,IAAI,CAAA;SAAE,CAAC,CAAC;QAAC,QAAQ,EAAE;YAAE,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,WAAW,EAAE,OAAO,CAAA;SAAE,CAAA;KAAE,CAAA;CAAE,CAAC;AAEngC,MAAM,MAAM,mCAAmC,GAAG,KAAK,CAAC;IACtD,YAAY,EAAE,MAAM,GAAG,MAAM,CAAC;IAC9B,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;CACvC,CAAC,CAAC;AAGH,MAAM,MAAM,0BAA0B,GAAG;IAAE,qBAAqB,EAAE;QAAE,OAAO,EAAE,OAAO,CAAC;QAAC,QAAQ,EAAE;YAAE,WAAW,EAAE,MAAM,CAAC;YAAC,aAAa,EAAE,MAAM,CAAC;YAAC,cAAc,EAAE,MAAM,CAAC;YAAC,mBAAmB,EAAE,MAAM,CAAC;YAAC,gBAAgB,EAAE,MAAM,CAAC;YAAC,oBAAoB,EAAE,MAAM,CAAC;YAAC,oBAAoB,EAAE,MAAM,CAAC;YAAC,0BAA0B,EAAE,MAAM,CAAC;YAAC,IAAI,EAAE;gBAAE,OAAO,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,CAAC;gBAAC,OAAO,EAAE,MAAM,CAAC;gBAAC,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,YAAY,EAAE,MAAM,CAAC;gBAAC,gBAAgB,EAAE,MAAM,CAAA;aAAE,GAAG,IAAI,CAAA;SAAE,CAAC;QAAC,IAAI,EAAE,KAAK,CAAC;YAAE,MAAM,EAAE,MAAM,CAAC;YAAC,KAAK,EAAE,MAAM,CAAC;YAAC,cAAc,EAAE,MAAM,CAAC;YAAC,gBAAgB,EAAE,MAAM,CAAC;YAAC,oBAAoB,EAAE,MAAM,CAAC;YAAC,oBAAoB,EAAE,MAAM,CAAC;YAAC,0BAA0B,EAAE,MAAM,CAAA;SAAE,CAAC,CAAC;QAAC,YAAY,EAAE;YAAE,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,WAAW,EAAE,OAAO,CAAA;SAAE,CAAA;KAAE,GAAG,IAAI,CAAA;CAAE,CAAC;AAE5uB,MAAM,MAAM,2BAA2B,GAAG,KAAK,CAAC;IAC9C,YAAY,EAAE,MAAM,GAAG,MAAM,CAAC;CAC/B,CAAC,CAAC;AAGH,MAAM,MAAM,kBAAkB,GAAG;IAAE,aAAa,EAAE;QAAE,QAAQ,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE;YAAE,GAAG,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAA;SAAE,GAAG,IAAI,CAAC;QAAC,UAAU,EAAE,OAAO,CAAC;QAAC,aAAa,EAAE,OAAO,CAAC;QAAC,gBAAgB,EAAE;YAAE,GAAG,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAA;SAAE,GAAG,IAAI,CAAC;QAAC,gBAAgB,EAAE;YAAE,GAAG,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAA;SAAE,GAAG,IAAI,CAAC;QAAC,cAAc,EAAE;YAAE,GAAG,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAA;SAAE,GAAG,IAAI,CAAC;QAAC,aAAa,EAAE;YAAE,GAAG,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAA;SAAE,GAAG,IAAI,CAAC;QAAC,gBAAgB,EAAE,MAAM,CAAC;QAAC,oBAAoB,EAAE,MAAM,CAAC;QAAC,kBAAkB,EAAE,KAAK,CAAC;YAAE,UAAU,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAA;SAAE,CAAC,CAAC;QAAC,oBAAoB,EAAE,KAAK,CAAC;YAAE,UAAU,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE;gBAAE,KAAK,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,GAAG,EAAE,MAAM,CAAC;gBAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;gBAAC,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;aAAE,CAAA;SAAE,CAAC,CAAA;KAAE,CAAA;CAAE,CAAC;AAE31B,MAAM,MAAM,gCAAgC,GAAG,KAAK,CAAC;IACnD,YAAY,EAAE,MAAM,GAAG,MAAM,CAAC;CAC/B,CAAC,CAAC;AAGH,MAAM,MAAM,uBAAuB,GAAG;IAAE,kBAAkB,EAAE;QAAE,YAAY,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,OAAO,CAAC;QAAC,WAAW,EAAE,OAAO,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,gBAAgB,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,kBAAkB,EAAE,MAAM,CAAC;QAAC,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;QAAC,eAAe,EAAE,OAAO,CAAC;QAAC,YAAY,EAAE,OAAO,CAAA;KAAE,CAAA;CAAE,CAAC;AAEzX,MAAM,MAAM,uCAAuC,GAAG,KAAK,CAAC;IAC1D,YAAY,EAAE,MAAM,GAAG,MAAM,CAAC;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;CACnC,CAAC,CAAC;AAGH,MAAM,MAAM,8BAA8B,GAAG;IAAE,yBAAyB,EAAE;QAAE,cAAc,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,KAAK,CAAC;YAAE,EAAE,EAAE,MAAM,CAAC;YAAC,IAAI,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,CAAC;YAAC,WAAW,EAAE,MAAM,CAAC;YAAC,SAAS,EAAE,MAAM,CAAC;YAAC,cAAc,EAAE,MAAM,CAAC;YAAC,eAAe,EAAE,MAAM,CAAC;YAAC,gBAAgB,EAAE,MAAM,CAAC;YAAC,QAAQ,EAAE,MAAM,CAAC;YAAC,eAAe,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,CAAA;SAAE,CAAC,CAAC;QAAC,QAAQ,EAAE;YAAE,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;YAAC,WAAW,EAAE,OAAO,CAAA;SAAE,CAAA;KAAE,CAAA;CAAE,CAAC;AAEha,MAAM,MAAM,yBAAyB,GAAG,KAAK,CAAC;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,KAAK,CAAC;CAAE,CAAC,CAAC;AAGzE,MAAM,MAAM,gBAAgB,GAAG;IAAE,WAAW,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,iBAAiB,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,aAAa,EAAE,MAAM,CAAC;QAAC,aAAa,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,gBAAgB,EAAE,MAAM,CAAA;KAAE,CAAA;CAAE,CAAC;AAEvM,MAAM,MAAM,mCAAmC,GAAG,KAAK,CAAC;IACtD,YAAY,EAAE,MAAM,GAAG,MAAM,CAAC;IAC9B,IAAI,EAAE,MAAM,CAAC;CACd,CAAC,CAAC;AAGH,MAAM,MAAM,0BAA0B,GAAG;IAAE,qBAAqB,EAAE;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,YAAY,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,YAAY,EAAE,MAAM,CAAC;QAAC,gBAAgB,EAAE,MAAM,CAAC;QAAC,gBAAgB,EAAE,MAAM,CAAC;QAAC,sBAAsB,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI,CAAA;CAAE,CAAC"}
|
|
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.12.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": "4093a9c3796aaeeedb0969ef34a4a57d757fa6c5"
|
|
55
55
|
}
|
|
56
56
|
}
|
package/src/index.ts
CHANGED
|
@@ -45,10 +45,11 @@ export type {
|
|
|
45
45
|
PortfolioWalletLiquidityPositionsQueryVariables,
|
|
46
46
|
PortfolioProjectionEventsQuery,
|
|
47
47
|
PortfolioProjectionEventsQueryVariables,
|
|
48
|
+
PonsPairAssetsQuery,
|
|
49
|
+
PonsPairAssetsQueryVariables,
|
|
48
50
|
} from './types.generated.js';
|
|
49
51
|
|
|
50
52
|
export type ChainDataLaunchPhaseInput = Types.LaunchPhase;
|
|
51
|
-
export type ChainDataPriceVenueInput = Types.PriceVenue;
|
|
52
53
|
export type ChainDataIndexedLaunchPhase = Types.IndexedLaunchPhase;
|
|
53
54
|
export type ChainDataTradeVenue = Types.TradeVenue;
|
|
54
55
|
export type ChainDataTradeSide = Types.TradeSide;
|
|
@@ -84,6 +85,7 @@ export type ChainDataProtocolStats = Types.ProtocolStatsQuery['protocolStats'];
|
|
|
84
85
|
export type ChainDataFreshness = Types.ChainDataFreshnessQuery['chainDataFreshness'];
|
|
85
86
|
export type ChainDataPortfolioProjectionEventConnection = Types.PortfolioProjectionEventsQuery['portfolioProjectionEvents'];
|
|
86
87
|
export type ChainDataEthUsdPrice = Types.EthUsdPriceQuery['ethUsdPrice'];
|
|
88
|
+
export type ChainDataPonsPairAsset = Types.PonsPairAssetsQuery['ponsPairAssets'][number];
|
|
87
89
|
|
|
88
90
|
export { CHAIN_DATA_REFERENCE_PAIRS, REFERENCE_PAIR_POOL_TYPE } from './reference-pairs.js';
|
|
89
91
|
export type ChainDataReferencePairMetadata = NonNullable<Types.ReferencePairMetadataQuery['referencePairMetadata']>;
|
|
@@ -142,6 +144,10 @@ export interface ChainDataOperationMap {
|
|
|
142
144
|
variables: Types.PortfolioProjectionEventsQueryVariables;
|
|
143
145
|
data: Types.PortfolioProjectionEventsQuery;
|
|
144
146
|
};
|
|
147
|
+
PonsPairAssets: {
|
|
148
|
+
variables: Types.PonsPairAssetsQueryVariables;
|
|
149
|
+
data: Types.PonsPairAssetsQuery;
|
|
150
|
+
};
|
|
145
151
|
EthUsdPrice: {
|
|
146
152
|
variables: Types.EthUsdPriceQueryVariables;
|
|
147
153
|
data: Types.EthUsdPriceQuery;
|
|
@@ -1,6 +1,6 @@
|
|
|
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 PriceVenue {\n CANONICAL\n ALL\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\ntype Query {\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 launchPriceSeries(deploymentId: ID!, token: Address!, venue: PriceVenue!, 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!, 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";
|
|
4
4
|
|
|
5
5
|
export const CHAIN_DATA_OPERATIONS = {
|
|
6
6
|
"LaunchFeed": {
|
|
@@ -28,8 +28,8 @@ export const CHAIN_DATA_OPERATIONS = {
|
|
|
28
28
|
"name": "LaunchPriceSeries",
|
|
29
29
|
"type": "query",
|
|
30
30
|
"rootField": "launchPriceSeries",
|
|
31
|
-
"document": "query LaunchPriceSeries($deploymentId: ID!, $token: Address!, $
|
|
32
|
-
"sha256Hash": "
|
|
31
|
+
"document": "query LaunchPriceSeries($deploymentId: ID!, $token: Address!, $first: Int!, $after: String) {\n launchPriceSeries(deploymentId: $deploymentId, token: $token, first: $first, after: $after) {\n nodes { cursor timestamp blockNumber price volumeQuote volumeQuoteAsset { token symbol raw decimals decimal } venue side transactionHash }\n pageInfo { endCursor hasNextPage }\n }\n}",
|
|
32
|
+
"sha256Hash": "a26c7a2e4aa1a386b0fe499b9a661263bfd700e36bf5f7b065e975228c21cbb1"
|
|
33
33
|
},
|
|
34
34
|
"WalletLaunchPositions": {
|
|
35
35
|
"name": "WalletLaunchPositions",
|
|
@@ -94,6 +94,13 @@ export const CHAIN_DATA_OPERATIONS = {
|
|
|
94
94
|
"document": "query EthUsdPrice {\n ethUsdPrice { price source observedAt observedBlock sourceChainId pair reserveTimestamp }\n}",
|
|
95
95
|
"sha256Hash": "0bfa48cc75fef63d384cfa839d346943c14850cb6fdcbe49be6d8bc03d366369"
|
|
96
96
|
},
|
|
97
|
+
"PonsPairAssets": {
|
|
98
|
+
"name": "PonsPairAssets",
|
|
99
|
+
"type": "query",
|
|
100
|
+
"rootField": "ponsPairAssets",
|
|
101
|
+
"document": "query PonsPairAssets($deploymentId: ID!) {\n ponsPairAssets(deploymentId: $deploymentId) { token approved phantomQuote graduationThreshold decimals updatedBlock }\n}",
|
|
102
|
+
"sha256Hash": "7153a9efbe5aa5e65e13fd7d9e508ba5fbce531bb8c67db85470f7a28dbb5bc8"
|
|
103
|
+
},
|
|
97
104
|
"ReferencePairMetadata": {
|
|
98
105
|
"name": "ReferencePairMetadata",
|
|
99
106
|
"type": "query",
|
|
@@ -107,7 +114,7 @@ export const CHAIN_DATA_OPERATION_IDS = {
|
|
|
107
114
|
"LaunchFeed": "e75e122a30258551085c248eabc2a526a6ce0761bba550fdc5d64fb50f7da1f3",
|
|
108
115
|
"LaunchDetail": "55d8759a6dc2a12d3804ce913326d435eaa0b253dbf2ca399870e962e02211d8",
|
|
109
116
|
"TrendingLaunches": "bfa72f926cea11d12dd6564dbcbab7d34e1ffd0d59130cc9caf26d45873cfcc9",
|
|
110
|
-
"LaunchPriceSeries": "
|
|
117
|
+
"LaunchPriceSeries": "a26c7a2e4aa1a386b0fe499b9a661263bfd700e36bf5f7b065e975228c21cbb1",
|
|
111
118
|
"WalletLaunchPositions": "50296690ad4968a8e1fbef342268eb0907ca753b8fd4ab464e5d6c5339e2e800",
|
|
112
119
|
"PortfolioWalletBalances": "d7a6d20786eef66ddd1211cf97f2e2eba2e445784dc6893ed6f6c4a5d4b511e5",
|
|
113
120
|
"WalletLiquidityBookPositions": "7aac47e7b94c774421ebdbe4f24130ba885f23384a51892c043b75020b05e358",
|
|
@@ -117,6 +124,7 @@ export const CHAIN_DATA_OPERATION_IDS = {
|
|
|
117
124
|
"ChainDataFreshness": "8eaf5642951345717c009269cc38880998cc4d17c05fd7bff3a78ee37cea1596",
|
|
118
125
|
"PortfolioProjectionEvents": "d9c94fe7ddb263121e38956a8e6870a5c528e829c461b33154777f27122c803f",
|
|
119
126
|
"EthUsdPrice": "0bfa48cc75fef63d384cfa839d346943c14850cb6fdcbe49be6d8bc03d366369",
|
|
127
|
+
"PonsPairAssets": "7153a9efbe5aa5e65e13fd7d9e508ba5fbce531bb8c67db85470f7a28dbb5bc8",
|
|
120
128
|
"ReferencePairMetadata": "183977a18a1dc80a255d91bbd3cc5e3f9fd96050a78a9e462d2cf2caa8d080d0"
|
|
121
129
|
} as const;
|
|
122
130
|
|
|
@@ -143,8 +151,8 @@ export const CHAIN_DATA_PERSISTED_QUERY_MANIFEST = {
|
|
|
143
151
|
"type": "query"
|
|
144
152
|
},
|
|
145
153
|
{
|
|
146
|
-
"id": "
|
|
147
|
-
"body": "query LaunchPriceSeries($deploymentId: ID!, $token: Address!, $
|
|
154
|
+
"id": "a26c7a2e4aa1a386b0fe499b9a661263bfd700e36bf5f7b065e975228c21cbb1",
|
|
155
|
+
"body": "query LaunchPriceSeries($deploymentId: ID!, $token: Address!, $first: Int!, $after: String) {\n launchPriceSeries(deploymentId: $deploymentId, token: $token, first: $first, after: $after) {\n nodes { cursor timestamp blockNumber price volumeQuote volumeQuoteAsset { token symbol raw decimals decimal } venue side transactionHash }\n pageInfo { endCursor hasNextPage }\n }\n}",
|
|
148
156
|
"name": "LaunchPriceSeries",
|
|
149
157
|
"type": "query"
|
|
150
158
|
},
|
|
@@ -202,6 +210,12 @@ export const CHAIN_DATA_PERSISTED_QUERY_MANIFEST = {
|
|
|
202
210
|
"name": "EthUsdPrice",
|
|
203
211
|
"type": "query"
|
|
204
212
|
},
|
|
213
|
+
{
|
|
214
|
+
"id": "7153a9efbe5aa5e65e13fd7d9e508ba5fbce531bb8c67db85470f7a28dbb5bc8",
|
|
215
|
+
"body": "query PonsPairAssets($deploymentId: ID!) {\n ponsPairAssets(deploymentId: $deploymentId) { token approved phantomQuote graduationThreshold decimals updatedBlock }\n}",
|
|
216
|
+
"name": "PonsPairAssets",
|
|
217
|
+
"type": "query"
|
|
218
|
+
},
|
|
205
219
|
{
|
|
206
220
|
"id": "183977a18a1dc80a255d91bbd3cc5e3f9fd96050a78a9e462d2cf2caa8d080d0",
|
|
207
221
|
"body": "query ReferencePairMetadata($deploymentId: ID!, $pair: Address!) {\n referencePairMetadata(deploymentId: $deploymentId, pair: $pair) {\n chainId\n deploymentId\n protocol\n factory\n pair\n token0\n token1\n createdBlock\n createdBlockHash\n createdTimestamp\n createdTransactionHash\n }\n}",
|
package/src/types.generated.ts
CHANGED
|
@@ -28,10 +28,6 @@ export type PonsLifecyclePhase =
|
|
|
28
28
|
| 'rescued'
|
|
29
29
|
| 'swept';
|
|
30
30
|
|
|
31
|
-
export type PriceVenue =
|
|
32
|
-
| 'ALL'
|
|
33
|
-
| 'CANONICAL';
|
|
34
|
-
|
|
35
31
|
export type TradeSide =
|
|
36
32
|
| 'buy'
|
|
37
33
|
| 'sell';
|
|
@@ -70,7 +66,6 @@ export type TrendingLaunchesQuery = { trendingLaunches: { partial: boolean, minD
|
|
|
70
66
|
export type LaunchPriceSeriesQueryVariables = Exact<{
|
|
71
67
|
deploymentId: string | number;
|
|
72
68
|
token: string;
|
|
73
|
-
venue: PriceVenue;
|
|
74
69
|
first: number;
|
|
75
70
|
after?: string | null | undefined;
|
|
76
71
|
}>;
|
|
@@ -157,6 +152,13 @@ export type EthUsdPriceQueryVariables = Exact<{ [key: string]: never; }>;
|
|
|
157
152
|
|
|
158
153
|
export type EthUsdPriceQuery = { ethUsdPrice: { price: string, source: EthUsdPriceSource, observedAt: string, observedBlock: string, sourceChainId: number, pair: string, reserveTimestamp: number } };
|
|
159
154
|
|
|
155
|
+
export type PonsPairAssetsQueryVariables = Exact<{
|
|
156
|
+
deploymentId: string | number;
|
|
157
|
+
}>;
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
export type PonsPairAssetsQuery = { ponsPairAssets: Array<{ token: string, approved: boolean, phantomQuote: string | null, graduationThreshold: string | null, decimals: number | null, updatedBlock: string }> };
|
|
161
|
+
|
|
160
162
|
export type ReferencePairMetadataQueryVariables = Exact<{
|
|
161
163
|
deploymentId: string | number;
|
|
162
164
|
pair: string;
|