@did-btc1/common
    Preparing search index...

    Interface SignalSidecarData

    Sidecar data for a specific Beacon Signal. Different Beacon types store different fields.

    • SingletonBeacon might just store one updatePayload.
    • CIDAggregateBeacon might store updateBundle + an updatePayload.
    • SMTAggregateBeacon might store updatePayload + a smtProof.
    interface SignalSidecarData {
        smtProof?: SmtProof;
        updateBundle?: DidUpdateBundle;
        updatePayload?: DidUpdateInvocation;
    }
    Index

    Properties

    smtProof?: SmtProof

    For SMTAggregateBeacon, a Merkle proof that the updatePayload is included (or not included) in the aggregator's Sparse Merkle Tree.

    updateBundle?: DidUpdateBundle
    updatePayload?: DidUpdateInvocation