1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 01:47:00 +01:00

Fixing 'View on Opensea' link for main and testnet NFTs (#19797)

This commit is contained in:
ryanml 2023-07-25 08:44:40 -07:00 committed by GitHub
parent 3e6f1c3288
commit 85465f53a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 5 deletions

View File

@ -111,12 +111,13 @@ export default function NftDetails({ nft }) {
const getOpenSeaLink = () => {
switch (currentNetwork) {
case CHAIN_IDS.MAINNET:
return `https://opensea.io/assets/${address}/${tokenId}`;
return `https://opensea.io/assets/ethereum/${address}/${tokenId}`;
case CHAIN_IDS.POLYGON:
return `https://opensea.io/assets/matic/${address}/${tokenId}`;
case CHAIN_IDS.GOERLI:
return `https://testnets.opensea.io/assets/goerli/${address}/${tokenId}`;
case CHAIN_IDS.SEPOLIA:
return `https://testnets.opensea.io/assets/${address}/${tokenId}`;
return `https://testnets.opensea.io/assets/sepolia/${address}/${tokenId}`;
default:
return null;
}

View File

@ -165,7 +165,7 @@ describe('NFT Details', () => {
await waitFor(() => {
expect(global.platform.openTab).toHaveBeenCalledWith({
url: `https://testnets.opensea.io/assets/${nfts[5].address}/${nfts[5].tokenId}`,
url: `https://testnets.opensea.io/assets/goerli/${nfts[5].address}/${nfts[5].tokenId}`,
});
});
});
@ -200,7 +200,7 @@ describe('NFT Details', () => {
await waitFor(() => {
expect(global.platform.openTab).toHaveBeenCalledWith({
url: `https://opensea.io/assets/${nfts[5].address}/${nfts[5].tokenId}`,
url: `https://opensea.io/assets/ethereum/${nfts[5].address}/${nfts[5].tokenId}`,
});
});
});
@ -272,7 +272,7 @@ describe('NFT Details', () => {
await waitFor(() => {
expect(global.platform.openTab).toHaveBeenCalledWith({
url: `https://testnets.opensea.io/assets/${nfts[5].address}/${nfts[5].tokenId}`,
url: `https://testnets.opensea.io/assets/sepolia/${nfts[5].address}/${nfts[5].tokenId}`,
});
});
});