Prerequisites
- Ensure you have a wallet created.
- API Key: Ensure you have an API key with the scopes:
wallets:transactions.create.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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...',
});
const wallet = await crossmintWallets.getWallet(walletLocator);
const evmWallet = EVMWallet.from(wallet);
const { hash, explorerLink } = await evmWallet.sendTransaction({
to: '0x...',
value: '0x1234abcd...',
data: '0x1234abcd...',
});
import { useWallet } from '@crossmint/client-sdk-react-native-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?
