The error happens when I try to execute the transaction with sendAndConfirmTransaction(). Here’s what I’m seeing:
ParsedProgramError: The program [TokenMetadataProgram] at address [metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s] raised an error of code [1] that translates to “”.
Anyone know what might be causing this and how to resolve it?
same issue! i had problems with the uri format, be sure it’s correct and accessible. also, check the creators for invalid entries, that can mess things up too. good luck!
I hit this exact error with programmable NFTs last month. The problem’s probably your rule set config. Setting ruleSet: null doesn’t work - programmable NFTs need proper authorization rules to function. Import mplTokenAuthRules and set up a basic authorization rule set using Metaplex’s default. Also check your wallet has enough SOL since programmable NFTs cost more than regular ones (they need extra accounts). Error code [1] is pretty generic but it’s usually authorization or account validation failing.