/status

Get Tendermint status including node info, pubkey, latest block hash, app hash, block height and time.

Parameters:

None

Example:

// Request
curl -X GET -H 'Content-Type: application/json'  https://froopyland.blockpi.network/rpc/v1/<your-api-key>/status

// Result
{
    "jsonrpc": "2.0",
    "result": {
        "node_info": {
            "channels": "40202122233038606100",
            "id": "5bcd882e82987c8b88f1825cdbb578056f3208be",
            "listen_addr": "tcp://0.0.0.0:31740",
            "moniker": "node",
            "network": "froopyland_100-1",
            "other": {
                "rpc_address": "tcp://0.0.0.0:31741",
                "tx_index": "on"
            },
            "protocol_version": {
                "app": "0",
                "block": "11",
                "p2p": "8"
            },
            "version": "v0.34.26"
        },
        "sync_info": {
            "catching_up": false,
            "earliest_app_hash": "BE361C8670D75BF17734B4969C6F1250666FECE833F6D4F53A9F94E5083110B7",
            "earliest_block_hash": "4BF7664D48F6D01766558C85E0726346D7A9D16586A94A3EF73B7A22CCC7F5C8",
            "earliest_block_height": "1435053",
            "earliest_block_time": "2023-11-26T18:43:54.960510668Z",
            "latest_app_hash": "34BB94716A0384FACEEF3B42D55CB9CCAF1B906CC80BA84F06871614466D7184",
            "latest_block_hash": "AA6EFB382D2E429C7C0A9F1CC06193B681BDA896B0454414DC64A58A54F92F26",
            "latest_block_height": "1651535",
            "latest_block_time": "2023-12-11T12:08:40.839400205Z"
        },
        "validator_info": {
            "address": "909750DC02A9EAE665348350629E5835BD48D776",
            "pub_key": {
                "type": "tendermint/PubKeyEd25519",
                "value": "ozvKIQq9wdRYoWO40S5PK/xxNBiiZFLHTzRpH8NZUqo="
            },
            "voting_power": "0"
        }
    }
}

Last updated