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

Hierarchy (view full)

Properties

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