diff --git a/explorer/src/providers/accounts/index.tsx b/explorer/src/providers/accounts/index.tsx index bf6598c66b..92c5a0b9a7 100644 --- a/explorer/src/providers/accounts/index.tsx +++ b/explorer/src/providers/accounts/index.tsx @@ -250,6 +250,11 @@ async function fetchAccountInfo( metadata, connection ); + + if (!editionInfo.masterEdition && !editionInfo.edition) { + throw new Error("No edition found"); + } + nftData = { metadata: metadata.data, editionInfo }; } }