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": "0x4aed9fd3a0962fe1550592432797cd33222d4a9c05fd333d409d4d1311818e31",
    "blockNumber": "0x375e",
    "from": "0x96dceb075ca7f5e738fbbc2984f3445868cb0286",
    "gas": "0x5208",
    "gasPrice": "0x165a0bc07",
    "maxFeePerGas": "0xdf8475800",
    "maxPriorityFeePerGas": "0x165a0bc00",
    "maxFeePerBlobGas": "0xdf8475800",
    "hash": "0xbd1e0919aadf502c431ae5a4f74c0accd98b257d0da74a8aa8d3d65ff239f93a",
    "input": "0x",
    "nonce": "0x5c1",
    "to": "0xa055389cbccf87797952f978f01b734d06c52dba",
    "transactionIndex": "0x0",
    "value": "0x0",
    "type": "0x3",
    "accessList": [],
    "chainId": "0x1a33c149d",
    "blobVersionedHashes": [
      "0x019979e3ea589ea793f9d84692cc3b4b7332cf4d91e8b919a20ead65e0838f24"
    ],
    "v": "0x0",
    "r": "0xd4799b829c5d9a6def8351dc51e514b8ffee53202f0faaf2f5930ed5acff7eb",
    "s": "0x176d6d2cbef49936489cf7f3865b8bc7463a20a95fcdd8361dfd109ae66e9f4a",
    "yParity": "0x0"
  }
}