eth_getBalance

返回给定地址账户余额。

Parameters

  • ADDRESS [必须] 账户地址。

  • BLOCK-NUMBER [必须] 表示区块号的十六进制整数,或字符串latest, earliest or pending默认块号参数

Request

curl https://eth-mainnet.solarpath.io/v1/YOUR-API-KEY \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{"jsonrpc": "2.0", "id": 1, "method": "eth_getBalance", "params": ["0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB", "latest"]}'

Response

十六进制格式(以 Wei 为单位)。

{
  "id": 1,
  "jsonrpc": "2.0",
  "result": "0x8c6664717e01"
}

最后更新于