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

    Interface IBeacon

    Beacon interface IBeacon

    interface IBeacon {
        id: string;
        service: BeaconService;
        serviceEndpoint: DidServiceEndpoint;
        type: string;
        broadcastSignal(
            didUpdatePayload: DidUpdatePayload,
        ): Promise<SignalsMetadata>;
        generateSignal(didUpdatePayload: string): BeaconSignal;
        processSignal(
            signal: RawTransactionV2,
            signalsMetadata: SignalsMetadata,
        ): Promise<undefined | DidUpdatePayload>;
    }

    Implemented by

    Index

    Properties

    id: string

    A unique identifier for the Beacon

    service: BeaconService

    Returns the Beacon Service object

    serviceEndpoint: DidServiceEndpoint

    The service endpoint of the Beacon

    type: string

    The type of the Beacon

    Methods