Node
Retrieves all EVM wallets for the authenticated user
getEvmWallets(): Promise<EvmWallet[]>
Promise<EvmWallet[]>
import { authenticatedEvmClient } from './client'; const evmClient = await authenticatedEvmClient(); const evmWallets = await evmClient.getEvmWallets(); console.log('EVM wallets:', evmWallets);
interface EvmWallet { id: string; accountAddress: string; chainName: string; // ... other EVM wallet properties }
try { const evmWallets = await evmClient.getEvmWallets(); console.log('EVM wallets retrieved:', evmWallets.length); } catch (error) { console.error('Failed to retrieve EVM wallets:', error); }
getWallets()
getWallet()
Was this page helpful?