OBJECT

BlockchainTransaction

link GraphQL Schema definition

  • type BlockchainTransaction implements Transaction {
  • # The exchange the transaction is sent from
  • from: GenericAddress!
  • # The exchange the transaction is sent to
  • to: GenericAddress!
  • # The amount of the transferred asset
  • amount: Amount!
  • # Status of the transaction
  • status: TransactionStatus!
  • # Timestamp the transaction was created at (ISO 8601 UTC date time):
  • createdAt: String
  • # Timestamp the transaction was last updated (ISO 8601 UTC date time):
  • updatedAt: String
  • # The transaction cost paid to the network for processing the transaction
  • fee: Amount!
  • # the unique identifier of the transaction
  • transactionHash: String!
  • # the direction the transaction was sent
  • transactionDirection: TransactionDirection
  • # Chain specific raw transaction
  • chainTransaction: ChainRawTransaction
  • }

link Require by

This element is not required by anyone