Skip to content
Overview
Overview
Overview
Overview

The mempool information.

status

The status of the mempool.

Sample
{ "status": "Example String" }
Referenced in

The result of a transaction.

badResult

The transaction result when it was successful. Formatted as raw JSON.

continuation

The JSON stringified continuation in the case that it is a continuation.

eventCount
gas
BigInt!,non-null
goodResult

The transaction result when it was successful. Formatted as raw JSON.

logs

Identifier to retrieve the logs for the execution of the transaction.

transactionId
height
BigInt!,non-nulldeprecated

The height of the block this transaction belongs to.

Deprecation reason

Use block.height instead.

metadata
String!,non-nulldeprecated
Deprecation reason

Not used.

block
Block!,non-null
afterbeforefirstlast
afterbeforefirstlast
Sample
{ "badResult": "Example String", "continuation": "Example String", "eventCount": "Example Custom Scalar", "gas": "Example Custom Scalar", "goodResult": "Example String", "logs": "Example String", "transactionId": "Example Custom Scalar", "height": "Example Custom Scalar", "metadata": "Example String", "block": { "__typename": "Block" }, "transfers": { "__typename": "TransactionResultTransfersConnection" }, "events": { "__typename": "TransactionResultEventsConnection" } }
Referenced in
pageInfo
PageInfo!,non-null
totalCount
Int!,non-null
Sample
{ "edges": [ { "cursor": "Example String", "node": { "id": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "name": "Example String", "block": { "__typename": "Block" }, "chainId": "Example Custom Scalar", "height": "Example Custom Scalar", "moduleName": "Example String", "orderIndex": "Example Custom Scalar", "requestKey": "Example String", "parameters": "Example String", "parameterText": "Example String", "qualifiedName": "Example String", "transaction": { "__typename": "Transaction" } } } ], "pageInfo": { "startCursor": "Example String", "endCursor": "Example String", "hasNextPage": true, "hasPreviousPage": true }, "totalCount": 40 }

TransactionResultEventsConnectionEdge

cursor
String!,non-null
node
Event!,non-null
Sample
{ "cursor": "Example String", "node": { "id": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "name": "Example String", "block": { "__typename": "Block" }, "chainId": "Example Custom Scalar", "height": "Example Custom Scalar", "moduleName": "Example String", "orderIndex": "Example Custom Scalar", "requestKey": "Example String", "parameters": "Example String", "parameterText": "Example String", "qualifiedName": "Example String", "transaction": { "__typename": "Transaction" } } }

TransactionResultTransfersConnection

pageInfo
PageInfo!,non-null
totalCount
Int!,non-null
Sample
{ "edges": [ { "cursor": "Example String", "node": { "amount": "Example Custom Scalar", "block": { "__typename": "Block" }, "blockHash": "Example String", "chainId": "Example Custom Scalar", "creationTime": "Example Custom Scalar", "crossChainTransfer": { "__typename": "Transfer" }, "height": "Example Custom Scalar", "id": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "moduleHash": "Example String", "moduleName": "Example String", "orderIndex": "Example Custom Scalar", "receiverAccount": "Example String", "requestKey": "Example String", "senderAccount": "Example String", "tokenId": "Example String", "transaction": { "__typename": "Transaction" } } } ], "pageInfo": { "startCursor": "Example String", "endCursor": "Example String", "hasNextPage": true, "hasPreviousPage": true }, "totalCount": 40 }

TransactionResultTransfersConnectionEdge

cursor
String!,non-null
node
Transfer!,non-null
Sample
{ "cursor": "Example String", "node": { "amount": "Example Custom Scalar", "block": { "__typename": "Block" }, "blockHash": "Example String", "chainId": "Example Custom Scalar", "creationTime": "Example Custom Scalar", "crossChainTransfer": { "__typename": "Transfer" }, "height": "Example Custom Scalar", "id": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "moduleHash": "Example String", "moduleName": "Example String", "orderIndex": "Example Custom Scalar", "receiverAccount": "Example String", "requestKey": "Example String", "senderAccount": "Example String", "tokenId": "Example String", "transaction": { "__typename": "Transaction" } } }

A signer for a specific transaction.

address

The signer for the gas.

id
ID!,non-null
orderIndex
pubkey
String!,non-null
scheme

The signature scheme that was used to sign.

Implements interfaces

Node

A globally identifiable object in the GraphQL schema.

All core entities in this API implement the Node interface, which guarantees that they have a unique id field, enabling consistent caching, pagination, and reference resolution across the API.

Sample
{ "address": "Example String", "id": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "orderIndex": 40, "pubkey": "Example String", "scheme": "Example String", "clist": [ { "__typename": "TransactionCapability" } ] }

List of capabilities associated with/installed by this signer.

args
String!,non-null
name
String!,non-null
Sample
{ "args": "Example String", "name": "Example String" }
Referenced in

FungibleChainAccountTransfersConnection

pageInfo
PageInfo!,non-null
totalCount
Int!,non-null
Sample
{ "edges": [ { "cursor": "Example String", "node": { "amount": "Example Custom Scalar", "block": { "__typename": "Block" }, "blockHash": "Example String", "chainId": "Example Custom Scalar", "creationTime": "Example Custom Scalar", "crossChainTransfer": { "__typename": "Transfer" }, "height": "Example Custom Scalar", "id": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "moduleHash": "Example String", "moduleName": "Example String", "orderIndex": "Example Custom Scalar", "receiverAccount": "Example String", "requestKey": "Example String", "senderAccount": "Example String", "tokenId": "Example String", "transaction": { "__typename": "Transaction" } } } ], "pageInfo": { "startCursor": "Example String", "endCursor": "Example String", "hasNextPage": true, "hasPreviousPage": true }, "totalCount": 40 }

FungibleChainAccountTransfersConnectionEdge

cursor
String!,non-null
node
Transfer!,non-null
Sample
{ "cursor": "Example String", "node": { "amount": "Example Custom Scalar", "block": { "__typename": "Block" }, "blockHash": "Example String", "chainId": "Example Custom Scalar", "creationTime": "Example Custom Scalar", "crossChainTransfer": { "__typename": "Transfer" }, "height": "Example Custom Scalar", "id": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "moduleHash": "Example String", "moduleName": "Example String", "orderIndex": "Example Custom Scalar", "receiverAccount": "Example String", "requestKey": "Example String", "senderAccount": "Example String", "tokenId": "Example String", "transaction": { "__typename": "Transaction" } } }

A transfer of funds from a fungible between two accounts.

amount
Decimal!,non-null
block
Block!,non-null
blockHash
String!,non-nulldeprecated
Deprecation reason

Use block.hash field instead.

chainId
BigInt!,non-nulldeprecated
Deprecation reason

Use block.chainId field instead.

creationTime
DateTime!,non-null
crossChainTransfer

The counterpart of the crosschain-transfer. null when it is not a cross-chain-transfer.

height
BigInt!,non-nulldeprecated
Deprecation reason

Use block.height field instead.

id
ID!,non-null
moduleHash
String!,non-null
moduleName
String!,non-null
orderIndex
BigInt!,non-null

The order of the transfer when it is a defpact (multi-step transaction) execution.

receiverAccount
String!,non-null
requestKey
String!,non-null
senderAccount
String!,non-null
tokenId

The token id if this is a poly-fungible transfer.

transaction

The transaction that initiated this transfer.

Implements interfaces

Node

A globally identifiable object in the GraphQL schema.

All core entities in this API implement the Node interface, which guarantees that they have a unique id field, enabling consistent caching, pagination, and reference resolution across the API.

Sample
{ "amount": "Example Custom Scalar", "block": { "__typename": "Block" }, "blockHash": "Example String", "chainId": "Example Custom Scalar", "creationTime": "Example Custom Scalar", "crossChainTransfer": { "__typename": "Transfer" }, "height": "Example Custom Scalar", "id": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "moduleHash": "Example String", "moduleName": "Example String", "orderIndex": "Example Custom Scalar", "receiverAccount": "Example String", "requestKey": "Example String", "senderAccount": "Example String", "tokenId": "Example String", "transaction": { "__typename": "Transaction" } }
Overview
Overview
Overview
Overview