AppleSauce
    Preparing search index...

    Type Alias NostrConnectSignerOptions

    type NostrConnectSignerOptions = {
        onAuth?: (url: string) => Promise<void>;
        pubkey?: string;
        publishMethod?: NostrPublishMethod;
        relays: string[];
        remote?: string;
        signer?: SimpleSigner;
        subscriptionMethod?: NostrSubscriptionMethod;
    }
    Index

    Properties

    onAuth?: (url: string) => Promise<void>

    A method for handling "auth" requests

    pubkey?: string

    Users pubkey

    publishMethod?: NostrPublishMethod

    A method for publishing events

    relays: string[]

    The relays to communicate over

    remote?: string

    pubkey of the remote signer application

    signer?: SimpleSigner

    A SimpleSigner for this client

    subscriptionMethod?: NostrSubscriptionMethod

    A method for subscribing to relays