OBJECT
EthereumTransaction
link GraphQL Schema definition
- type EthereumTransaction {
- # The address to send this transaction is directed to
- String! :
- # The value of ETH to send with this transaction
- String! :
- # The chainId .e.g 1 for mainnet or 3 for ropsten
- Int! :
- # The number of transactions a user has already sent (plus 1 for this
- # transaction)
- Int! :
- # Int (as String) of the gas provided for the transaction execution (either speed
- # or gasLimit + gasPrice must be given)
- String! :
- # Int (as String) of the gasPrice used (in WEI) for each unit of gas (either speed
- # or gasLimit + gasPrice must be given)
- String! :
- # The address the transaction is sent from
- String! :
- # The r value of the signature (optional as it will not exist if tx is not signed)
- String :
- # The s value of the signature (optional as it will not exist if tx is not signed)
- String :
- # The recovery Id of the Ethereum chain (optional as it will not exist if tx is
- # not signed)
- String :
- # The compiled code of a contract OR the hash of the invoked method signature and
- # encoded parameters.
- String :
- }