interface EcosystemProviderProps {
    theme?: Theme;
    customTheme?: any;
    appName?: string;
    disableTransactionSimulation?: boolean;
    logoUrl?: string;
    supportedChains?: number[];
    privacyPolicyUrl?: string;
    termsOfServiceUrl?: string;
    navigateTo: ((appState?: AppState) => void);
}

Hierarchy (view full)

Properties

theme?: Theme
customTheme?: any
appName?: string
disableTransactionSimulation?: boolean
logoUrl?: string
supportedChains?: number[]
privacyPolicyUrl?: string
termsOfServiceUrl?: string
navigateTo: ((appState?: AppState) => void)