Canton dApp Booster
    Preparing search index...

    Character counts overriding the display defaults of truncateIdentifier: how much to keep either side of the ellipsis, the segment length below which nothing is cut, and the bound on a party id's hint, which is otherwise kept whole however long it is.

    truncateIdentifier(partyId, { head: 4, tail: 4, threshold: 22 })
    truncateIdentifier(partyId, { hint: 12 })
    interface TruncateOptions {
        head?: number;
        hint?: number;
        tail?: number;
        threshold?: number;
    }
    Index
    head?: number
    hint?: number
    tail?: number
    threshold?: number