AppleSauce
    Preparing search index...

    Type Alias WalletConnectOptions

    type WalletConnectOptions = {
        pool?: NostrPool;
        publishMethod?: NostrPublishMethod;
        relays: string[];
        secret: Uint8Array;
        service?: string;
        subscriptionMethod?: NostrSubscriptionMethod;
        timeout?: number;
    }
    Index

    Properties

    pool?: NostrPool

    An optional pool for connection methods

    publishMethod?: NostrPublishMethod

    A method for publishing events

    relays: string[]

    The relays to use for the connection

    secret: Uint8Array

    The secret to use for the connection

    service?: string

    The service pubkey to use for the connection (optional)

    subscriptionMethod?: NostrSubscriptionMethod

    A method for subscribing to relays

    timeout?: number

    Default timeout for RPC requests in milliseconds