/** * NodeInfo type and creator */ export interface NodeInfo { readonly protocolVersion: { readonly p2p: string; readonly block: string; readonly app: string; }; readonly id: string; readonly listenAddr: string; readonly network: string; readonly version: string; readonly channels: string; readonly moniker: string; readonly other: { readonly txIndex: string; readonly rpcAddress: string; }; } export declare const NodeInfoCodec: import("../../../codec").BaseCodec;