-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot update "Update Authority" on SPL token created with Metaplex #131
Comments
Hey, |
Thank you for your feedback. Unfortunetly your provided solution does not work...
This produces the exact same Please open this ticket, as there has been no working solution provided. |
Let’s start over. What is it that’s not working? |
I need to ensure that a token successfully has its Right now, every SPL token I create with metaplex has its So when a wallet checks those Authorities, the wallets correctly show the user that this token has renounced those Authorities and that the token is Several popular wallets, including Phantom, show the user if the token has renounced its So from a users perspective, they are buying into a token that can change its picture and other metadata. That is highly problematic for me. All I need to do is set the Does that make sense friend? I am struggling with setting the I want to create the The fact I can set the token to I appreciate your response but I need a viable replicable solution and I still do not have one after days of trying. This is very bad for me. |
hi @0xlucyy can u give me a clue on how to revoke the Mint & Freeze? Because when i use Token Metadata Program to mint NFT, it auto set the PDA as mint & freeze key, when i try to unlock/thaw, it need the mint & freeze authority signer and they are derived key and i don't know how to sign with it. |
Passing
Upon executing this, |
Also having this issue. Either passing null or none() does not change the metadata's update authority address. |
I create an SPL token using metaplex with specific metadata using the following code. In the process I also revoke
Mint
andFreeze
authority.This successfully creates the appropriate token
Now, what I am attempting but failing at is revoking the
Update Authority
.This is my code to revoke
Update Authority
Please note the relevant console logs
Please note that the ONLY thing that changes is the
isMutable
field. TheupdateAuthority
field remains unchanged. This behavior is true even if I send two separateupdateInstruction
, the first ONLY changing theupdateAuthority
and the second ONLY changing theisMutable
fields.I should note, the account I am using to sign/send the transactions is the same account which has the
Update Authority
on the token.What is happening, what am I doing wrong? And how can I fix it!
The text was updated successfully, but these errors were encountered: