Skip to content

Commit

Permalink
Merge pull request #3161 from numbersprotocol/feature-update-the-NSE-…
Browse files Browse the repository at this point in the history
…domain

feat(urls.ts): redirect nftsearch.site to verify.numbersprotocol.io
  • Loading branch information
sultanmyrza authored Jan 11, 2024
2 parents 6fb9378 + 49e3a13 commit c892830
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/utils/url.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ export function getAssetProfileUrl(id: string, token?: string) {

export function getAssetProfileForNSE(id: string, token?: string) {
if (token) {
return `https://nftsearch.site/asset-profile?cid=${id}&tmp_token=${token}`;
return `https://verify.numbersprotocol.io/asset-profile?nid=${id}&tmp_token=${token}`;
}
return `https://nftsearch.site/asset-profile?cid=${id}`;
return `https://verify.numbersprotocol.io/asset-profile?nid=${id}`;
}

export function getAssetProfileForCaptureIframe(cid: string) {
Expand Down

0 comments on commit c892830

Please sign in to comment.