@silencelaboratories/walletprovider-sdk
    Preparing search index...

    Type Alias Auth0JWTIssuerConfig

    Configuration for Auth0-backed JWT issuance in browser/WPFE flows.

    type Auth0JWTIssuerConfig = {
        audience: string;
        auth0Client?: Auth0TokenClient;
        clientId: string;
        domain: string;
        interactiveMode?: Auth0InteractiveTokenMode;
        redirectUri?: string;
        scope?: string;
        useRefreshTokens?: boolean;
        useRefreshTokensFallback?: boolean;
    }
    Index

    Properties

    audience: string

    Auth0 API identifier. This makes Auth0 return a JWT access token for MPCNode verification.

    auth0Client?: Auth0TokenClient

    Reuse an existing Auth0 client, useful for apps that already initialize Auth0 or for tests.

    clientId: string

    Auth0 Single Page Application client ID.

    domain: string

    Auth0 tenant domain, for example dev-example.us.auth0.com.

    interactiveMode?: Auth0InteractiveTokenMode

    Token acquisition mode. Defaults to silent first, then popup if user interaction is required.

    redirectUri?: string

    Redirect URI registered in Auth0. Defaults to window.location.origin in browsers.

    scope?: string

    OAuth scopes to request for the Silent Network API.

    useRefreshTokens?: boolean

    Forwarded to Auth0 SPA SDK when this issuer creates the client.

    useRefreshTokensFallback?: boolean

    Forwarded to Auth0 SPA SDK when this issuer creates the client.