Skip to content

Commit

Permalink
remove price attribute from TokenMetadata
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardsVO committed Apr 23, 2022
1 parent 1800490 commit f771671
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Binary file modified .DS_Store
Binary file not shown.
Binary file added blockchain/.DS_Store
Binary file not shown.
4 changes: 3 additions & 1 deletion frontend/components/NFT/NFTProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { toNEAR } from '../utils';

interface NFTProfileProps {
data: Token;
//sale: Sale <- update implementation
}

export default function NFTProfile({ data }: NFTProfileProps) {
Expand Down Expand Up @@ -38,7 +39,8 @@ export default function NFTProfile({ data }: NFTProfileProps) {
</div>
<div className="mt-2">
<h2 className="text-xl font-bold text-figma-400 ">
{toNEAR(data?.metadata?.price)} N
{/* {toNEAR(data?.metadata?.price)} */}
NEARs
</h2>
</div>
</div>
Expand Down

0 comments on commit f771671

Please sign in to comment.