Skip to content
Overview
Overview
Overview
Overview

A single time-series data point used in historical charts.

Each data point represents the value of a given metric (such as TVL or trading volume) at a specific moment in time.

timestamp
DateTime!,non-null

The timestamp associated with this data point.

value
Decimal!,non-null

The metric value recorded at this timestamp.

Sample
{ "timestamp": "Example Custom Scalar", "value": "Example Custom Scalar" }

Chart data for a pool

volume

Volume data points

tvl

TVL data points

fees

Fees data points

Sample
{ "volume": [ { "__typename": "ChartDataPoint" } ], "tvl": [ { "__typename": "ChartDataPoint" } ], "fees": [ { "__typename": "ChartDataPoint" } ] }
Referenced in

QueryTransactionsByPactCodeConnection

pageInfo
PageInfo!,non-null
Sample
{ "edges": [ { "cursor": "Example String", "node": { "requestKey": "Example String", "height": "Example Custom Scalar", "chainId": "Example Custom Scalar", "canonical": true, "creationTime": "Example Custom Scalar", "badResult": "Example String", "sender": "Example String", "gas": "Example String", "gasLimit": "Example String", "gasPrice": "Example String", "code": "Example String" } } ], "pageInfo": { "startCursor": "Example String", "endCursor": "Example String", "hasNextPage": true, "hasPreviousPage": true } }

QueryTransactionsByPactCodeConnectionEdge

cursor
String!,non-null
node
Sample
{ "cursor": "Example String", "node": { "requestKey": "Example String", "height": "Example Custom Scalar", "chainId": "Example Custom Scalar", "canonical": true, "creationTime": "Example Custom Scalar", "badResult": "Example String", "sender": "Example String", "gas": "Example String", "gasLimit": "Example String", "gasPrice": "Example String", "code": "Example String" } }

A lightweight summary of a transaction returned by the transactionsByPactCode query.

TransactionSummary provides essential metadata and execution details about transactions that executed a specific Pact code, without the full payload of a Transaction object. It is optimized for querying large sets of transactions efficiently when detailed fields (like signatures, events, or full results) are not needed.

Each summary includes fundamental information such as the transaction’s request key, block height, chain, gas usage, sender, and canonical status, as well as the original Pact code if available.

requestKey
String!,non-null

The unique request key of the transaction.

height
BigInt!,non-null

The block height at which the transaction was included.

chainId
BigInt!,non-null

The chain ID where the transaction was executed.

canonical
Boolean!,non-null

Whether the transaction was included in the canonical chain (true) or an orphaned fork (false).

creationTime
DateTime!,non-null

The timestamp when the transaction was created.

badResult

If the transaction failed, contains the error message returned by Pact.

sender
String!,non-null

The account or contract that submitted the transaction.

gas
String!,non-null

The total gas consumed during the execution of this transaction.

gasLimit
String!,non-null

The maximum amount of gas allowed for this transaction.

gasPrice
String!,non-null

The gas price specified for this transaction.

code

The Pact code executed by the transaction, if available.

Sample
{ "requestKey": "Example String", "height": "Example Custom Scalar", "chainId": "Example Custom Scalar", "canonical": true, "creationTime": "Example Custom Scalar", "badResult": "Example String", "sender": "Example String", "gas": "Example String", "gasLimit": "Example String", "gasPrice": "Example String", "code": "Example String" }
Overview
Overview
Overview
Overview