{
  "getBalance": {
    "static": false,
    "preRequisites": [],
    "testCases": [
      {
        "id": "CONFORMANCE-RPC-018",
        "description": "get balance with address, it should use blockTag latest as default parameter.",
        "input": {
          "address": "0x73718c4980728857f3aa5148e9d1b471efa3a7dd"
        },
        "expectedResult": {
          "status": "pass",
          "output": {
            "method": "klay_getBalance",
            "params": [
              "0x73718c4980728857f3aa5148e9d1b471efa3a7dd",
              "latest"
            ]
          }
        }
      },
      {
        "id": "CONFORMANCE-RPC-019",
        "description": "get balance with address with blockNumber.",
        "input": {
          "address": "0x73718c4980728857f3aa5148e9d1b471efa3a7dd",
          "blockNumber": 990
        },
        "expectedResult": {
          "status": "pass",
          "output": {
            "method": "klay_getBalance",
            "params": [
              "0x73718c4980728857f3aa5148e9d1b471efa3a7dd",
              "0x3de"
            ]
          }
        }
      },
      {
        "id": "CONFORMANCE-RPC-020",
        "description": "get balance with address with blockTag.",
        "input": {
          "address": "0x73718c4980728857f3aa5148e9d1b471efa3a7dd",
          "blockTag": "latest"
        },
        "expectedResult": {
          "status": "pass",
          "output": {
            "method": "klay_getBalance",
            "params": [
              "0x73718c4980728857f3aa5148e9d1b471efa3a7dd",
              "latest"
            ]
          }
        }
      }
    ]
  }
}