Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
Always mint with Core ABI
Browse files Browse the repository at this point in the history
  • Loading branch information
rshtirmer authored Mar 22, 2022
1 parent 3e1e3bd commit a5483a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/myNFTs/create/SingleNFTForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ const SingleNFTForm = ({ scrollToTop }) => {
// Get the contract instance to mint from
const collectionContract =
selectedCollection && selectedCollection.address !== universeCollection.address
? new Contract(selectedCollection.address, contracts.UniverseERC721Factory.abi, signer)
? new Contract(selectedCollection.address, contracts.UniverseERC721Core.abi, signer)
: universeERC721CoreContract;

// Update saved NFT data, before getting the TokenURI
Expand Down

0 comments on commit a5483a6

Please sign in to comment.