AppleSauce
    Preparing search index...

    Interface WalletServiceOptions

    Options for creating a WalletService

    interface WalletServiceOptions {
        handlers: WalletServiceHandlers;
        notifications?: NotificationType[];
        publishMethod?: NostrPublishMethod;
        relays: string[];
        secret?: Uint8Array<ArrayBufferLike>;
        signer: EventSigner;
        subscriptionMethod?: NostrSubscriptionMethod;
    }
    Index

    Properties

    Map of method handlers

    notifications?: NotificationType[]

    An array of notifications this wallet supports

    publishMethod?: NostrPublishMethod

    An optional method for publishing events

    relays: string[]

    The relays to use for the service

    secret?: Uint8Array<ArrayBufferLike>

    The client's secret key

    signer: EventSigner

    The signer to use for creating and unlocking events

    subscriptionMethod?: NostrSubscriptionMethod

    An optional method for subscribing to relays