Skip to content

Commit

Permalink
add token symbol and url
Browse files Browse the repository at this point in the history
Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
  • Loading branch information
SvenDowideit committed May 13, 2022
1 parent fd6545f commit 672085a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/renderer/components/TokenView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
<div className={className}>
<div>
Mint: <InlinePK pk={mintKey.toString()} />
<a href={metaInfo?.data.data.uri}>{metaInfo?.data.data.symbol}</a> (
{metaInfo?.data.data.name} )
</div>
<div>Meta: {JSON.stringify(metaInfo)}</div>{' '}
<div>Meta: {JSON.stringify(metaInfo)}</div>
</div>
);
}
Expand Down

0 comments on commit 672085a

Please sign in to comment.