diff --git a/src/renderer/components/TokenView.tsx b/src/renderer/components/TokenView.tsx index 24abefd6..d722ded8 100644 --- a/src/renderer/components/TokenView.tsx +++ b/src/renderer/components/TokenView.tsx @@ -43,12 +43,16 @@ export function TokenMetaView(props: { mintKey: string; className?: string }) { } }, [mintKey, net, status]); + // TODO: how do I find out the total number of tokens minted, vs how many could be minted + // TODO: or a list of all the ATA's that have tokens (or even more fun, ATA's for this mint that don't have tokens ...) return (
Mint: + {metaInfo?.data.data.symbol} ( + {metaInfo?.data.data.name} )
-
Meta: {JSON.stringify(metaInfo)}
{' '} +
Meta: {JSON.stringify(metaInfo)}
); }