Entity represents an entity that controls one or more Nodes and or services.

interface Entity {
    id: Uint8Array;
    nodes?: Uint8Array[];
    v: number;
}

Hierarchy (view full)

Properties

Properties

id: Uint8Array

ID is the public key identifying the entity.

nodes?: Uint8Array[]

Nodes is the vector of node identity keys owned by this entity, that will sign the descriptor with the node signing key rather than the entity signing key.

v: number