From b0fed05d8272585cbc6aa26eb00416cdfb257935 Mon Sep 17 00:00:00 2001 From: Mentor Palokaj Date: Sat, 30 Oct 2021 17:24:18 +0200 Subject: [PATCH] Chain sslecor typo --- minter/src/modules/web3.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/minter/src/modules/web3.js b/minter/src/modules/web3.js index 72ef522..cd03f15 100644 --- a/minter/src/modules/web3.js +++ b/minter/src/modules/web3.js @@ -312,14 +312,14 @@ export function useContract() { export function rocketeerCollectionUriOnOpensea( chainId ) { // Opensea collection link depending on network - return `${ chainId === '0x01' ? '' : 'testnets.' }opensea.io/collection/rocketeer` + return `${ chainId === '0x1' ? '' : 'testnets.' }opensea.io/collection/rocketeer` } export function rocketeerUriOnOpensea( chainId, tokenId ) { // Opensea specific link depending on network - return `https://${ chainId === '0x01' ? '' : 'testnets.' }opensea.io/assets/${ contractAddressByChainId[ chainId ] }/${ tokenId }` + return `https://${ chainId === '0x1' ? '' : 'testnets.' }opensea.io/assets/${ contractAddressByChainId[ chainId ] }/${ tokenId }` }