IdentityStatus is the current node identity status, listing all the public keys that identify this node in different contexts.

interface ControlIdentityStatus {
    consensus: Uint8Array;
    node: Uint8Array;
    tls: Uint8Array;
}

Properties

Properties

consensus: Uint8Array

Consensus is the consensus public key.

node: Uint8Array

Node is the node identity public key.

tls: Uint8Array

TLS is the public key used for TLS connections.