Access wallets filtered by blockchain type using the Para client.
Copy
Ask AI
import { useClient } from '@getpara/react-sdk';export default function WalletsByType() { // useClient hook to access Para client const para = useClient(); // Get wallets by type const evmWallets = para.getWalletsByType('EVM'); const solanaWallets = para.getWalletsByType('SOLANA'); const cosmosWallets = para.getWalletsByType('COSMOS');}