CDP Frontend SDK
    Preparing search index...

    Interface AppConfig

    Optional app config to add branding

    const appConfig: AppConfig = {
    name: "My App",
    logoUrl: "https://placehold.co/64",
    };
    interface AppConfig {
        name: string;
        logoUrl?: string;
        showCoinbaseFooter?: boolean;
        authMethods?: ("email" | "sms")[];
    }
    Index

    Properties

    name: string

    The name of the app.

    logoUrl?: string

    The URL of the app logo. This should be at least 64 by 64px and must start with http or https.

    showCoinbaseFooter?: boolean

    Whether to show the "secured by Coinbase" footer. Defaults to true.

    authMethods?: ("email" | "sms")[]

    Authentication methods to allow for the user. Defaults to ["email"].