Skip to content

Commit

Permalink
fxhash -> fx(hash)
Browse files Browse the repository at this point in the history
  • Loading branch information
Robinnnnn committed Oct 4, 2023
1 parent c9ec189 commit ecb053e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export function NftAdditionalDetailsTezos({ tokenRef }: NftAdditionaDetailsNonPO
<View className="flex flex-row">
<DetailExternalLink
link={fxhashUrl}
label="fxhash"
label="fx(hash)"
trackingLabel="NFT Detail View on fxhashUrl"
showExternalLinkIcon={true}
font={{ family: 'ABCDiatype', weight: 'Bold' }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export function NftDetailSection({ onShare, queryRef }: Props) {
// }, [navigation, track, token.creator?.username]);

const contractName = isFxHashContractAddress(token.contract?.contractAddress?.address)
? 'fxhash'
? 'fx(hash)'
: token.contract?.name ?? 'Untitled Contract';

return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function extractRelevantMetadataFromToken(
}

result.contractName = isFxHashContractAddress(contractAddress)
? 'fxhash'
? 'fx(hash)'
: contract?.name ?? 'Untitled Contract';

if (tokenMetadata) {
Expand Down

0 comments on commit ecb053e

Please sign in to comment.