workbenchapp / solana-workbench

Your one-stop shop for developing on Solana
MIT License
63 stars 7 forks source link

Error: IDL not found and unable to find account #207

Closed SvenDowideit closed 2 years ago

SvenDowideit commented 2 years ago

from #123

SvenDowideit commented 2 years ago

The "Error: Unable to find account" looks to be due to trying to find token metadata that isn't there.

and because I returned that as a throw Error(), react keeps retrying

will probably be addressed with some changes i'm doing for #215

nathanleclaire commented 2 years ago

IDL not found is normal, from Anchor decode. We need a check in the decode section to skip anchor decode attempt if it’s Token Program owner like it does for system program

SvenDowideit commented 2 years ago

ah, roger - so the real regression is the unable to find account 👍