@lifi/wallet-management
Version:
LI.FI Wallet Management solution.
13 lines (10 loc) • 376 B
text/typescript
import type { ChainType } from '@lifi/sdk'
import type { WalletConfig } from '../../types/walletConfig.js'
import type { LanguageKey } from '../I18nProvider/types.js'
export interface WalletManagementConfig extends WalletConfig {
locale?: LanguageKey
enabledChainTypes?: ChainType[]
}
export interface WalletManagementProviderProps {
config?: WalletManagementConfig
}