- QueryTransactionsByPactCodeConnection
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": "Example Custom Scalar", "value": "Example Custom Scalar" }
Chart data for a pool
Volume data points
TVL data points
Fees data points
{ "volume": [ { "__typename": "ChartDataPoint" } ], "tvl": [ { "__typename": "ChartDataPoint" } ], "fees": [ { "__typename": "ChartDataPoint" } ] }
{ "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 } }
{ "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.
The unique request key of the transaction.
The block height at which the transaction was included.
The chain ID where the transaction was executed.
Whether the transaction was included in the canonical chain (true
) or an orphaned fork (false
).
The timestamp when the transaction was created.
If the transaction failed, contains the error message returned by Pact.
The account or contract that submitted the transaction.
The total gas consumed during the execution of this transaction.
The maximum amount of gas allowed for this transaction.
The gas price specified for this transaction.
The Pact code executed by the transaction, if available.
{ "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" }
Connection type for balance query results.
{ "edges": [ { "cursor": "Example String", "node": { "accountName": "Example String", "module": "Example String", "chainId": "Example String", "balance": "Example String" } } ], "pageInfo": { "startCursor": "Example String", "endCursor": "Example String", "hasNextPage": true, "hasPreviousPage": true } }
{ "cursor": "Example String", "node": { "accountName": "Example String", "module": "Example String", "chainId": "Example String", "balance": "Example String" } }
A representation of a balance in the Kadena blockchain.
The full account name to retrieve balances for. @example(value: "k:bcbaf20fb2975ae362ae82b27afce1ac4a72774c6c45fa1afd8df394e6141251")
The name of the module that issued the token.
The chain ID where the balance exists.
The balance amount.
{ "accountName": "Example String", "module": "Example String", "chainId": "Example String", "balance": "Example String" }