UNPKG

@particle-network/connectkit

Version:
7 lines (6 loc) 460 B
import { type ChainIdParameter, type ConnectorParameter, type Evaluate, type SolanaWalletClient } from '@particle-network/connector-core'; import type { Config } from '../createConfig'; export type GetSolanaWalletClientParameters = Evaluate<ChainIdParameter & ConnectorParameter & { account?: string | undefined; }>; export declare const getSolanaWalletClient: (config: Config, parameters?: GetSolanaWalletClientParameters) => Promise<SolanaWalletClient>;