near-api-js - v7.0.4
    Preparing search index...

    Type Alias RpcStatusResponse

    type RpcStatusResponse = {
        chain_id: string;
        detailed_debug_status?: DetailedDebugStatus | null;
        genesis_hash: CryptoHash;
        latest_protocol_version: number;
        node_key?: PublicKey | null;
        node_public_key: PublicKey;
        protocol_version: number;
        rpc_addr?: string | null;
        sync_info: StatusSyncInfo;
        uptime_sec: number;
        validator_account_id?: AccountId | null;
        validator_public_key?: PublicKey | null;
        validators: ValidatorInfo[];
        version: Version;
    }
    Index

    Properties

    chain_id: string

    Unique chain id.

    detailed_debug_status?: DetailedDebugStatus | null

    Information about last blocks, network, epoch and chain & chunk info.

    genesis_hash: CryptoHash

    Genesis hash of the chain.

    latest_protocol_version: number

    Latest protocol version that this client supports.

    node_key?: PublicKey | null

    Deprecated; same as validator_public_key which you should use instead.

    node_public_key: PublicKey

    Public key of the node.

    protocol_version: number

    Currently active protocol version.

    rpc_addr?: string | null

    Address for RPC server. None if node doesn't have RPC endpoint enabled.

    sync_info: StatusSyncInfo

    Sync status of the node.

    uptime_sec: number

    Uptime of the node.

    validator_account_id?: AccountId | null

    Validator id of the node

    validator_public_key?: PublicKey | null

    Public key of the validator.

    validators: ValidatorInfo[]

    Current epoch validators.

    version: Version

    Binary version.