UNPKG

universal-life-protocol-core

Version:

Revolutionary AI framework implementing living, conscious digital reality with meta-cognitive reasoning, attention economics, and autonomous learning

16 lines 579 B
/** * Implements the Continuous Transylvanian Lottery (CTL) consensus protocol. */ export declare class CtlConsensus { private readonly points; private readonly lines; constructor(validatorIds: string[]); /** * Simulates the selection of a consensus quorum for a given round. * @param vrfSeed A seed for the Verifiable Random Function. * @returns The validator IDs of the activated consensus quorum. */ getActivatedQuorum(vrfSeed: string): Set<string> | null; private selectRandomSubset; } //# sourceMappingURL=ctl-consensus.d.ts.map