Created
January 6, 2022 13:46
-
-
Save evanVtatum/2d22687a60461051ce8a31a732cf8eec to your computer and use it in GitHub Desktop.
Mint NFT on Solana.bash
This file contains 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
curl --location --request POST 'https://api-eu1.tatum.io/v3/nft/mint/' \ | |
--header 'x-api-key: REPLACE_KEY_VALUE' \ | |
--header 'Content-Type: application/json' \ | |
--data-raw '{ | |
"from": "FykfMwA9WNShzPJbbb9DNXsfgDgS3XZzWiFgrVXfWoPJ", | |
"chain": "SOL", | |
"fromPrivateKey": "3abc79a31093e4cfa4a724e94a44906cbbc3a32e2f75f985a28616676a5dbaf1de8d82a7e1d0561bb0e1b729c7a9b9b1708cf2803ad0ca928a332587ace391ad", | |
"to": "FykfMwA9WNShzPJbbb9DNXsfgDgS3XZzWiFgrVXfWoPJ", | |
"metadata": { | |
"name": "Tatum API", | |
"symbol": "TAPI", | |
"sellerFeeBasisPoints": 0, | |
"uri": "https://www.nba.com/celtics/sites/celtics/files/tatum_27.jpg", | |
"creators": [ | |
{ | |
"address": "FykfMwA9WNShzPJbbb9DNXsfgDgS3XZzWiFgrVXfWoPJ", | |
"verified": true, | |
"share": 100 | |
} | |
] | |
} | |
}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment