OBJECT

ChainRawEthereumTransaction

link GraphQL Schema definition

  • type ChainRawEthereumTransaction implements ChainRawTransaction {
  • # The amount in wei that was transferred in the transaction (hex string)
  • amount: String!
  • # The address for which the transaction is destined
  • from: String!
  • # The address for which the transaction is destined
  • to: String
  • # The height of the block where this transaction is in
  • blockHeight: Int!
  • # The r value of the ECDSA signature
  • r: String!
  • # The s value of the ECDSA signature
  • s: String!
  • # The index position of the transaction in the block. (hex string - null when its
  • # pending)
  • transactionIndex: String
  • # The recovery id
  • v: String!
  • # The gas limit of the transaction (hex string)
  • gasLimit: String!
  • # The gas price per unit of gas of the transaction in wei (hex string)
  • gasPrice: String!
  • # The number of transactions made by the sender prior to this one (hex string)
  • nonce: String!
  • # The decoded input data sent along with the transaction (null when input is
  • # unsupported)
  • decodedInput: EthDecodedMethodData
  • # The decoded event logs of the transaction (could be empty if there are no
  • # events, unsupported events is not included)
  • decodedEvents: [EthDecodedMethodData!]!
  • }

link Require by

This element is not required by anyone