@keygate/wallet-management
Version:
Keygate Wallet Management solution.
14 lines (11 loc) • 433 B
text/typescript
import type { ChainType } from '@keygate/sdk'
import type { WalletConfig } from '../../types/walletConfig.js'
import type { LanguageKey } from '../I18nProvider/types.js'
export interface WalletManagementConfig extends WalletConfig {
locale?: LanguageKey
enabledChainTypes?: ChainType[]
walletEcosystemsOrder?: Record<string, ChainType[]>
}
export interface WalletManagementProviderProps {
config?: WalletManagementConfig
}