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

    Interface BeaconSignal

    Represents a transaction discovered on the Bitcoin blockchain that spends from a Beacon address, thus announcing DID updates.

    DID BTC1 4.2.2.3 Find Next Signals and 4.2.2.4 Process Beacon Signals.

    interface BeaconSignal {
        beaconId: string;
        beaconType: BeaconType;
        tx: any;
    }
    Index

    Properties

    beaconId: string

    The DID Document's service ID of the Beacon that produced this signal, e.g. "#cidAggregateBeacon".

    beaconType: BeaconType

    The type of Beacon, e.g. "SingletonBeacon".

    tx: any

    The Bitcoin transaction that is the actual on-chain Beacon Signal. Typically you'd store a minimal subset or a reference/ID for real usage.