Show / Hide Table of Contents

getunclaimed Method

Returns unclaimed GAS amount of the specified address.

This method is provided by the plugin RpcSystemAssetTracker . You need to install the plugin before you can invoke the method.

Parameters

address :Set the standard address you want to query.

Example

Request body:

{
    "jsonrpc": "2.0",
    "method": "getunclaimed",
    "params": [
        "AGofsxAUDwt52KjaB664GYsqVAkULYvKNt"
    ],
    "id": 1
}

Response body:

{
    "jsonrpc": "2.0",
    "id": 1,
    "result": {
        "available": 750.032,
        "unavailable": 2815.408,
        "unclaimed": 3565.44
    }
}