Type alias ContactInfo

ContactInfo: {
    gossip: string | null;
    pubkey: string;
    rpc: string | null;
    tpu: string | null;
    version: string | null;
}

Information describing a cluster node

Type declaration

  • gossip: string | null

    Gossip network address for the node

  • pubkey: string

    Identity public key of the node

  • rpc: string | null

    JSON RPC network address for the node (null if not available)

  • tpu: string | null

    TPU network address for the node (null if not available)

  • version: string | null

    Software version of the node (null if not available)

Generated using TypeDoc