From 40fb1933e43e4b0e6484c46c0ca83fef31e4b1ba Mon Sep 17 00:00:00 2001 From: Serkan Reis Date: Thu, 21 Sep 2023 08:57:43 +0300 Subject: [PATCH] Update import logic to default to non-updatable on mainnet --- pages/collections/create.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/collections/create.tsx b/pages/collections/create.tsx index b9eb557..2131fd5 100644 --- a/pages/collections/create.tsx +++ b/pages/collections/create.tsx @@ -1374,6 +1374,10 @@ const CollectionCreationPage: NextPage = () => { details.openEditionMinterDetails.offChainMetadataUploadDetails.imageUrl = details.openEditionMinterDetails.coverImageUrl } + if (NETWORK === 'mainnet') { + details.collectionDetails.updatable = false + details.openEditionMinterDetails.collectionDetails.updatable = false + } setImportedDetails(details) }