{
  "getGasPriceAt": {
    "static": false,
    "preRequisites": [],
    "testCases": [
      {
        "id": "CONFORMANCE-RPC-083",
        "description": "get gas price with no arguments, it should use default block tag",
        "input": {
        },
        "expectedResult": {
          "status": "pass",
          "output": {
            "method": "klay_gasPriceAt",
            "params": [
              "latest"
            ]
          }
        }
      },
      {
        "id": "CONFORMANCE-RPC-084",
        "description": "get gas price with blockTag.",
        "input": {
          "blockTag": "latest"
        },
        "expectedResult": {
          "status": "pass",
          "output": {
            "method": "klay_gasPriceAt",
            "params": [
              "latest"
            ]
          }
        }
      },
      {
        "id": "CONFORMANCE-RPC-085",
        "description": "get gas price with blockNumber.",
        "input": {
          "blockNumber": 990
        },
        "expectedResult": {
          "status": "pass",
          "output": {
            "method": "klay_gasPriceAt",
            "params": [
              "0x3de"
            ]
          }
        }
      }
    ]
  }
}