{
  "getBlockByNumber": {
    "static": false,
    "preRequisites": [],
    "testCases": [
      {
        "id": "CONFORMANCE-RPC-032",
        "description": "get block by number with blockNumber, it should be requested with default fullTxs false.",
        "input": {
          "blockNumber": 990
        },
        "expectedResult": {
          "status": "pass",
          "output": {
            "method": "klay_getBlockByNumber",
            "params": [
              "0x3de",
              false
            ]
          }
        }
      },
      {
        "id": "CONFORMANCE-RPC-033",
        "description": "get block by number with blockNumber and fullTxs.",
        "input": {
          "blockNumber": 990,
          "fullTxs": true
        },
        "expectedResult": {
          "status": "pass",
          "output": {
            "method": "klay_getBlockByNumber",
            "params": [
              "0x3de",
              true
            ]
          }
        }
      },
      {
        "id": "CONFORMANCE-RPC-034",
        "description": "get block by number with blockTag, it should be requested with default fullTxs false.",
        "input": {
          "blockTag": "latest"
        },
        "expectedResult": {
          "status": "pass",
          "output": {
            "method": "klay_getBlockByNumber",
            "params": [
              "latest",
              false
            ]
          }
        }
      },
      {
        "id": "CONFORMANCE-RPC-035",
        "description": "get block by number with blockTag and fullTxs.",
        "input": {
          "blockTag": "latest",
          "fullTxs": true
        },
        "expectedResult": {
          "status": "pass",
          "output": {
            "method": "klay_getBlockByNumber",
            "params": [
              "latest",
              true
            ]
          }
        }
      }
    ]
  }
}