Interface CheckoutModuleConfiguration

A type representing checkout SDK configurations.

interface CheckoutModuleConfiguration {
    onRamp?: CheckoutOnRampConfiguration;
    swap?: CheckoutSwapConfiguration;
    bridge?: CheckoutBridgeConfiguration;
    passport?: Passport;
    publishableKey?: string;
    environment?: Environment;
    overrides?: CheckoutOverrides;
    baseConfig: ImmutableConfiguration;
}

Hierarchy (view full)

Properties

To configure the on-ramp feature.

To configure the swap feature.

To configure the bridge feature.

passport?: Passport

To enable passport wallet integration.

publishableKey?: string

To identify your integration for tracking and analytics purposes.

environment?: Environment
overrides?: CheckoutOverrides