AppleSauce
    Preparing search index...

    Type Alias NostrConnectSignerOptions

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

    Properties

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

    A method for handling "auth" requests

    pool?: NostrPool

    A pool of methods to use if none are passed in when creating the signer

    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

    secret?: string

    A secret used when initalizing the connection from the client side

    signer?: SimpleSigner

    A SimpleSigner for this client

    subscriptionMethod?: NostrSubscriptionMethod

    A method for subscribing to relays