OBJECT

Transaction

Represents a single transaction on Stellar network

link GraphQL Schema definition

  • type Transaction {
  • id: TransactionHash!
  • # Ledger in which transaction was executed
  • ledger: Ledger!
  • # Index of this transaction in the ledger
  • index: Int!
  • memo: Memo
  • # The fee that source account had to pay
  • feeAmount: Int!
  • # Account that issued the transaction
  • sourceAccount: Account!
  • # Account that paid the fee. Not empty only for fee bump transactions
  • feeAccount: Account
  • # Time range, in which transaction is considered valid. [More
  • # info](https://www.stellar.org/developers/guides/concepts/transactions.html#time-bounds)
  • timeBounds: TimeBounds
  • # The actual fee paid by the source account
  • feeCharged: Int!
  • success: Boolean!
  • resultCode: Int!
  • # Operations, which this transaction contains
  • #
  • # Arguments
  • # first:
  • # after:
  • # last:
  • # before:
  • # order:
  • operations(first: Int, after: String, last: Int, before: String, order: Order): OperationConnection
  • # Payment-relate operations, which this transaction contains
  • #
  • # Arguments
  • # first:
  • # after:
  • # last:
  • # before:
  • payments(first: Int, after: String, last: Int, before: String): OperationConnection
  • }

link Require by