@roochnetwork/rooch-sdk-kit
Version:
Rooch SDK Kit
6 lines (5 loc) • 364 B
TypeScript
import { SupportChain } from '../feature/index.js';
import { Wallet, UniSatWallet, OkxWallet, OnekeyWallet } from '../wellet/index.js';
import { LocalWallet } from '../wellet/local.js';
export declare const supportedWallets: (UniSatWallet | OkxWallet | OnekeyWallet | LocalWallet)[];
export declare function checkWallets(filter?: SupportChain): Promise<Wallet[]>;