Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. eth_getTransactionByHash
  2.  
  3. Returns the information about a transaction requested by transaction hash.
  4.  
  5. Parameters
  6.  
  7. DATA, 32 Bytes - hash of a transaction
  8. params: [
  9. "0xb903239f8543d04b5dc1ba6579132b143087c68db1b2168786408fcbce568238"
  10. ]
  11. Returns
  12.  
  13. Object - A transaction object, or null when no transaction was found:
  14.  
  15. hash: DATA, 32 Bytes - hash of the transaction.
  16. nonce: QUANTITY - the number of transactions made by the sender prior to this one.
  17. blockHash: DATA, 32 Bytes - hash of the block where this transaction was in. null when its pending.
  18. blockNumber: QUANTITY - block number where this transaction was in. null when its pending.
  19. transactionIndex: QUANTITY - integer of the transactions index position in the block. null when its pending.
  20. from: DATA, 20 Bytes - address of the sender.
  21. to: DATA, 20 Bytes - address of the receiver. null when its a contract creation transaction.
  22. value: QUANTITY - value transferred in Wei.
  23. gasPrice: QUANTITY - gas price provided by the sender in Wei.
  24. gas: QUANTITY - gas provided by the sender.
  25. input: DATA - the data send along with the transact
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement