Skip to content

Commit

Permalink
Refine token verifiedness check (#289)
Browse files Browse the repository at this point in the history
This is a follow up on this comment:
#288 (comment)

Reran the test plan from #288.

Related to #229.
  • Loading branch information
steveluscher authored Sep 14, 2023
1 parent b91b274 commit d94063a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/utils/token-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export async function getFullTokenInfo(
name: sdkTokenInfo.name,
symbol: sdkTokenInfo.symbol,
tags,
verified: !!(legacyCdnTokenInfo || sdkTokenInfo.verified),
verified: sdkTokenInfo.verified ?? false,
};
}

Expand Down

1 comment on commit d94063a

@vercel
Copy link

@vercel vercel bot commented on d94063a Sep 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

explorer – ./

explorer-git-master-solana-labs.vercel.app
explorer.solana.com
explorer-solana-labs.vercel.app

Please sign in to comment.