GoChain RPC Proxy

This is an example call for eth_getTransactionByBlockNumberAndIndex.

Request

{
  "jsonrpc": "2.0",
  "id": "1",
  "method": "eth_getTransactionByBlockNumberAndIndex",
  "params": [
    "latest",
    "0x0"
  ]
}

Response

{
  "jsonrpc": "2.0",
  "id": "1",
  "result": {
    "blockHash": "0x706538833f04fc13ea79c4d98143c50d6b766fca9799a8373a5bdf979a49cfb4",
    "blockNumber": "0xc5c8",
    "from": "0x454b0ea7d8ad3c56d0cf2e44ed97b2feab4d7af2",
    "gas": "0x5208",
    "gasPrice": "0x746a528807",
    "hash": "0xe3d9054045ae7777a710ebbde5ac39c885193f6b60e885b1a492b3a2bfcc65c9",
    "input": "0x",
    "nonce": "0x6556e",
    "to": "0x0b06ef8be65fcda88f2dbae5813480f997ee8e35",
    "transactionIndex": "0x0",
    "value": "0xf43fc2c04ee0000",
    "type": "0x0",
    "chainId": "0x1a1f0ff5a",
    "v": "0x343e1fed7",
    "r": "0x8c06d4b6f04e664091466b94eeb4cccceb7a0dc6fed4cea31263f646ebb99d3b",
    "s": "0x1a5b1f45391ed4e0f762599aaee9b73575a9d1fa0b5195fe0c8f13c427f884b1"
  }
}