Created
February 9, 2024 20:08
-
-
Save dmulvi/1205ae04426d1b1e04127de3e3848a06 to your computer and use it in GitHub Desktop.
Create a Crossmint custodial wallet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const options = { | |
method: "POST", | |
headers: { | |
"X-API-KEY": "YOUR_API_KEY", | |
"Content-Type": "application/json", | |
}, | |
body: JSON.stringify({ | |
chain: "ethereum", | |
email: "[email protected]", | |
}), | |
}; | |
fetch("https://staging.crossmint.com/api/v1-alpha1/wallets", options) | |
.then((response) => response.json()) | |
.then((response) => console.log(response)) | |
.catch((err) => console.error(err)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment