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": "0x896076c1a5ef29129712a4cc4d18f85cebbbe39f8cd76a0c23b7490643ff1861",
    "blockNumber": "0x1d768",
    "from": "0x7e454a14b8e7528465eef86f0dc1da4f235d9d79",
    "gas": "0xf618",
    "gasPrice": "0x3b9aca07",
    "hash": "0xcd6a74130d49d9ec1fc045b281ddedb5f94d782d283d2887097aee61bc7d3fa8",
    "input": "0x",
    "nonce": "0x13a48",
    "to": "0x6177843db3138ae69679a54b95cf345ed759450d",
    "transactionIndex": "0x0",
    "value": "0xb5303ad38b8000",
    "type": "0x0",
    "chainId": "0x10f2c",
    "v": "0x21e7c",
    "r": "0xc97b00846734454d7d1fae49c1f9aeaa329364537c61e4aff92ad518b797028f",
    "s": "0x2a88df5f441487963c64dcb8bc47ac71fe71ccff1be8ca034734c7fc07a6aea1"
  }
}