export type WalletConfig = {
    password?: string;
    seedPhrase?: string;
    privateKey?: string;
    name?: string;
};
export type SupportedChain = "solana" | "ethereum" | "base" | "sui" | "polygon" | "bitcoin";
