Prerequisites
- API Key: Ensure you have an API key with the scopes:
wallets.create.
Create a Wallet
- React
- Node.js
- React Native
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Create a wallet using Crossmint’s APIs
wallets.create.import { useWallet } from '@crossmint/client-sdk-react-ui';
const { getOrCreateWallet } = useWallet();
const wallet = await getOrCreateWallet({
chain: "<your-chain>",
});
email:<email>userId:<userId>phoneNumber:<phoneNumber>twitter:<handle>x:<handle>const wallet = await crossmintWallets.createWallet({
chain: "<your-chain>",
});
email:<email>userId:<userId>phoneNumber:<phoneNumber>twitter:<handle>x:<handle>import { useWallet } from '@crossmint/client-sdk-react-native-ui';
const { getOrCreateWallet } = useWallet();
const wallet = await getOrCreateWallet({
chain: "<your-chain>",
});
email:<email>userId:<userId>phoneNumber:<phoneNumber>twitter:<handle>x:<handle>Was this page helpful?
