@openocean.finance/wallet-management
Version:
Openocean Wallet Management solution.
11 lines (10 loc) • 406 B
TypeScript
import type { ChainType } from '@openocean.finance/widget-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;
}