New Sub Page
lorem ipsum? in this weather?
it's not as likely as you'd think.
import fetch from 'node-fetch';
const body = {
email: "<YOUR_USERS_EMAIL>",
chain: "<TARGET_CHAIN>",
}
const response = await fetch(
`https://staging.crossmint.com/api/v1-alpha1/wallets`,
{
method: 'POST',
headers: {
'X-PROJECT-ID': '<YOUR_PROJECT_ID>',
'X-CLIENT-SECRET': '<YOUR_CLIENT_SECRET>'
},
body: JSON.stringify(body),
}
);
const wallet = await response.json();
Updated over 2 years ago
