ConsensusAddress represents a CometBFT consensus address that includes an ID and a TCP address. NOTE: The consensus address ID could be different from the consensus ID to allow using a sentry node's ID and address instead of the validator's.

interface NodeConsensusAddress {
    address: NodeAddress;
    id: Uint8Array;
}

Properties

Properties

address: NodeAddress

Address is the address at which the node can be reached.

id: Uint8Array

ID is public key identifying the node.