SolanaのScaffoldをcloneしてyarn startすると
Unhandled Rejection (error): Not a valid Mint
上記のエラーが出る場合があります。
その場合は、accounts.tsxの以下の行を
accounts.tsx
const account = deserialize(new PublicKey(address), obj);
以下のように変更すると正常に動くようになります。
accounts.tsx
let account; try { account = deserialize(new PublicKey(address), obj); } catch(e) { console.error(e); }
このプルリクがマージされたあとのバージョンで出てるエラーに関しては別の原因かもしれません。