rmapi-js
    Preparing search index...

    Interface CrdtId

    a CRDT identifier: an (authorId, counter) pair, unique across replicas

    The wire encodes it positionally — a single author byte then a varuint counter — with no field names; the rmscene reference calls these part1 and part2.

    interface CrdtId {
        authorId: number;
        counter: number;
    }
    Index

    Properties

    Properties

    authorId: number

    the author (device/replica) that minted this id, the leading wire byte

    counter: number

    the author's monotonic counter (a varuint, may exceed 32 bits)