UNPKG

@openocean.finance/widget-sdk

Version:

OpenOcean Any-to-Any Cross-Chain-Swap SDK

11 lines (9 loc) 197 B
import { PublicKey } from '@solana/web3.js' export function isSVMAddress(address: string): boolean { try { new PublicKey(address) return true } catch (_error) { return false } }