{
  "getBlockByHash": {
    "static": false,
    "preRequisites": [],
    "testCases": [
      {
        "id": "CONFORMANCE-RPC-036",
        "description": "get block by hash with blockHash, it should be requested with default fullTxs false.",
        "input": {
          "blockHash": "0x026619f2f53741252623bc301c52c6f295206065788e1bc3f635a7a3b90a7af8"
        },
        "expectedResult": {
          "status": "pass",
          "output": {
            "method": "klay_getBlockByHash",
            "params": [
              "0x026619f2f53741252623bc301c52c6f295206065788e1bc3f635a7a3b90a7af8",
              false
            ]
          }
        }
      },
      {
        "id": "CONFORMANCE-RPC-037",
        "description": "get block by hash with blockHash and fullTxs.",
        "input": {
          "blockHash": "0x026619f2f53741252623bc301c52c6f295206065788e1bc3f635a7a3b90a7af8",
          "fullTxs": true
        },
        "expectedResult": {
          "status": "pass",
          "output": {
            "method": "klay_getBlockByHash",
            "params": [
              "0x026619f2f53741252623bc301c52c6f295206065788e1bc3f635a7a3b90a7af8",
              true
            ]
          }
        }
      }
    ]
  }
}