interface NodeInfo {
    channels: string;
    id: Uint8Array;
    listenAddr: string;
    moniker: string;
    network: string;
    other: Map<string, string>;
    protocolVersion: {
        app: number;
        block: number;
        p2p: number;
    };
    version: string;
}

Properties

channels: string
id: Uint8Array
listenAddr: string

IP and port

moniker: string
network: string
other: Map<string, string>
protocolVersion: {
    app: number;
    block: number;
    p2p: number;
}
version: string

The Tendermint version. Can be empty (see https://github.com/cosmos/cosmos-sdk/issues/7963).