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

    Interface IdTokenClaims

    Decoded id_token claims. sub is the stable user identifier (and the Web3Auth verifierId); the optional profile claims depend on the granted scope. wallet_address is present once the address has been bound to the account. Unlisted claims are exposed via the index signature.

    interface IdTokenClaims {
        email?: string;
        name?: string;
        picture?: string;
        sub: string;
        wallet_accounts?: WalletAccountClaim[];
        wallet_address?: string;
        [claim: string]: unknown;
    }

    Indexable

    • [claim: string]: unknown
    Index
    email?: string
    name?: string
    picture?: string
    sub: string

    OIDC subject — the stable per-user identifier.

    wallet_accounts?: WalletAccountClaim[]

    All wallets of the user, default entry included (multi-wallet foundation, docs/28; requires the wallet scope).

    wallet_address?: string

    The user's bound wallet address, once set (requires the wallet scope).