Documentation
    Preparing search index...

    Type Alias WalletModalOpened

    Modal is open. When the modal was opened via the embedded-request flow, embeddedRequest carries the queued sendTransaction / signData / signMessage the SDK will fold into the connect URL.

    type WalletModalOpened = {
        closeReason: null;
        embeddedRequest?: Consumable<EmbeddedRequest> | null;
        status: "opened";
    }
    Index

    Properties

    closeReason: null

    Always null while the modal is open.

    embeddedRequest?: Consumable<EmbeddedRequest> | null

    One-shot envelope holding the queued embedded request, if any. The SDK consumes it once when building the connect URL — a retry will see consumed: true and skip embedding.

    status: "opened"