From 672085a355fcfc951da09c37c8da1ef102387162 Mon Sep 17 00:00:00 2001 From: Sven Dowideit Date: Sat, 14 May 2022 01:19:35 +1000 Subject: [PATCH] add token symbol and url Signed-off-by: Sven Dowideit --- src/renderer/components/TokenView.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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)}
); }