@upbond/sdk - v0.0.3
    Preparing search index...

    Interface UpbondState

    The full observable client state, delivered synchronously via UpbondClient.state and to subscribe listeners on every change.

    interface UpbondState {
        auth: AuthStatus;
        phase: ProgressPhase;
        user: IdTokenClaims | null;
        wallet: WalletStatus;
        walletAddress: string | null;
        wallets: WalletRef[];
    }
    Index

    OIDC session status.

    The operation currently in progress.

    user: IdTokenClaims | null

    Decoded id_token claims while signed in, otherwise null.

    wallet: WalletStatus

    Wallet-leg status.

    walletAddress: string | null

    The wallet address once known (after connect/unlock), otherwise null.

    wallets: WalletRef[]

    The user's wallet list (multi-wallet foundation, docs/28). Derived from the wallet_accounts claim — present as soon as the user is signed in, before any wallet connect — with the ceremony-learned address as the fallback for a brand-new wallet whose token predates the binding. Today at most one entry (kind: 'mpc'), the default entry, whose address walletAddress reports once the wallet leg is connected.