Send transactions from your wallet
wallets:transactions.create
import { useWallet, EVMWallet } from '@crossmint/client-sdk-react-ui'; const { wallet } = useWallet(); const evmWallet = EVMWallet.from(wallet); const { hash, explorerLink } = await evmWallet.sendTransaction({ to: '0x...', value: '0x1234abcd...', data: '0x1234abcd...', });
Was this page helpful?