interface EcosystemContextProps {
    appName?: string;
    disableTransactionSimulation?: boolean;
    logoUrl?: string;
    privacyPolicyUrl?: string;
    termsOfServiceUrl?: string;
    navigateTo: ((appState?: AppState) => void);
    error: null | string;
    setError: ((error: null | string | Error) => void);
    loading: boolean;
    setLoading: ((loading: boolean) => void);
}

Properties

appName?: string
disableTransactionSimulation?: boolean
logoUrl?: string
privacyPolicyUrl?: string
termsOfServiceUrl?: string
navigateTo: ((appState?: AppState) => void)
error: null | string
setError: ((error: null | string | Error) => void)
loading: boolean
setLoading: ((loading: boolean) => void)