Comment on page
Change NFT name
Change NFT name with a signed Message and a custom text string
As an NFT owner, one has the ability to rename their NFT. For e.g. you will be able to change your NFT name from
Bored Ape Yacht Club #4567
to Lil Yachty
. Currently this name change is offchain and only reflects when using Hyype API.
Name change can happen by passing a valid text string as name and a valid signed message as part of the payload to this endpoint.
Missed how to generate a signed message? Check out the guide below
After you generate a valid signature or signed Message, you can proceed to rename the NFT.
post
https://api.hyy.pe/api/v1
/token/rename
Change NFT name
----
Take a look at how you might want to pass the payload via
curl:
cURL
curl -X 'POST' \
'https://api.hyy.pe/api/v1/token/rename' \
-H 'accept: application/json' \
-H 'client-id: <YOUR_CLIENT_ID_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"signedMessage": "<signed_messages_goes_here>",
"walletAddress": "<signature_owner_address_goes_here>",
"tokenId": "228",
"contractAddress": "0xa76ebc37e23bc7f20d62156ad88f2f29bf1e0d3a",
"name": "Great Name"
}'
Last modified 1yr ago