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