From 27adcd633111365dbbb6dd54210403e5c92af234 Mon Sep 17 00:00:00 2001 From: AuroraHuang22 Date: Tue, 19 Sep 2023 15:44:21 +0800 Subject: [PATCH 1/5] =?UTF-8?q?=F0=9F=8E=A8=20Change=20initial=20price=20t?= =?UTF-8?q?o=20USD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/NFTMint/WriterMessage.vue | 14 +++++++------- locales/en.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/components/NFTMint/WriterMessage.vue b/components/NFTMint/WriterMessage.vue index a4b7f872..bd1ea583 100644 --- a/components/NFTMint/WriterMessage.vue +++ b/components/NFTMint/WriterMessage.vue @@ -143,8 +143,8 @@ > {{ $t('NFTPortal.label.initialBatch.input') }} @@ -156,7 +156,7 @@ {{ $t('NFTPortal.label.collectExpiryDate.input') }} - + @@ -192,10 +192,10 @@ export default class WriterMessage extends Vue { initialBatchOptions = [ { batch: -1, price: this.$t('NFTPortal.label.initialBatch.free') }, - { batch: 0, price: 8 }, - { batch: 4, price: 128 }, - { batch: 7, price: 1024 }, - { batch: 9, price: 4096 }, + { batch: 0, price: 1 }, + { batch: 4, price: 8 }, + { batch: 7, price: 64 }, + { batch: 9, price: 256 }, ] get shouldShowInitialBatchSettings() { diff --git a/locales/en.json b/locales/en.json index 2328eead..3b80ff5b 100644 --- a/locales/en.json +++ b/locales/en.json @@ -274,7 +274,7 @@ "NFTPortal.label.defaultDescription": "(no description)", "NFTPortal.label.detailsPage": "NFT Details Page :", "NFTPortal.label.fileUpload": "Has a file? Upload to ISCN here", - "NFTPortal.label.initialBatch.input": "Initial Price (LIKE)", + "NFTPortal.label.initialBatch.input": "Initial Price (USD)", "NFTPortal.label.initialBatch.free": "All Free", "NFTPortal.label.input.email": "Join our community and stay in the loop on exclusive product updates and offers. {link} now!", "NFTPortal.label.input.link": "Please leave your email", From f4a203358c67e06bf438b870d1e55eb77857b756 Mon Sep 17 00:00:00 2001 From: AuroraHuang22 Date: Tue, 19 Sep 2023 23:28:07 +0800 Subject: [PATCH 2/5] =?UTF-8?q?=F0=9F=8E=A8=20Add=20more=20tiers=20for=20u?= =?UTF-8?q?sd?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/NFTMint/WriterMessage.vue | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/components/NFTMint/WriterMessage.vue b/components/NFTMint/WriterMessage.vue index bd1ea583..9d7e345b 100644 --- a/components/NFTMint/WriterMessage.vue +++ b/components/NFTMint/WriterMessage.vue @@ -193,9 +193,14 @@ export default class WriterMessage extends Vue { initialBatchOptions = [ { batch: -1, price: this.$t('NFTPortal.label.initialBatch.free') }, { batch: 0, price: 1 }, - { batch: 4, price: 8 }, - { batch: 7, price: 64 }, - { batch: 9, price: 256 }, + { batch: 1, price: 2 }, + { batch: 2, price: 4 }, + { batch: 3, price: 8 }, + { batch: 4, price: 16 }, + { batch: 5, price: 32 }, + { batch: 6, price: 64 }, + { batch: 7, price: 128 }, + { batch: 8, price: 256 }, ] get shouldShowInitialBatchSettings() { From f354f04aa6477c7aabf49a91971aa04bcee053cc Mon Sep 17 00:00:00 2001 From: AuroraHuang22 Date: Wed, 20 Sep 2023 22:13:09 +0800 Subject: [PATCH 3/5] =?UTF-8?q?=F0=9F=8E=A8=20Adjust=20the=20starting=20ba?= =?UTF-8?q?tch=20of=20minting=20from=207?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/NFTMint/WriterMessage.vue | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/components/NFTMint/WriterMessage.vue b/components/NFTMint/WriterMessage.vue index 9d7e345b..a1947ff4 100644 --- a/components/NFTMint/WriterMessage.vue +++ b/components/NFTMint/WriterMessage.vue @@ -192,15 +192,16 @@ export default class WriterMessage extends Vue { initialBatchOptions = [ { batch: -1, price: this.$t('NFTPortal.label.initialBatch.free') }, - { batch: 0, price: 1 }, - { batch: 1, price: 2 }, - { batch: 2, price: 4 }, - { batch: 3, price: 8 }, - { batch: 4, price: 16 }, - { batch: 5, price: 32 }, - { batch: 6, price: 64 }, - { batch: 7, price: 128 }, - { batch: 8, price: 256 }, + // To maintain the compatibility of the DB data, minting starts from batch 7 + { batch: 7, price: 1 }, + { batch: 8, price: 2 }, + { batch: 9, price: 4 }, + { batch: 10, price: 8 }, + { batch: 11, price: 16 }, + { batch: 12, price: 32 }, + { batch: 13, price: 64 }, + { batch: 14, price: 128 }, + { batch: 15, price: 256 }, ] get shouldShowInitialBatchSettings() { From 5a5dd8532bce464fd7f168468ac4f02d13e947a0 Mon Sep 17 00:00:00 2001 From: AuroraHuang22 Date: Sun, 24 Sep 2023 17:26:15 +0800 Subject: [PATCH 4/5] =?UTF-8?q?=F0=9F=8E=A8=20set=20$1=20as=20default=20pr?= =?UTF-8?q?ice?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/NFTMint/WriterMessage.vue | 22 +++++++++++----------- locales/en.json | 1 + 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/components/NFTMint/WriterMessage.vue b/components/NFTMint/WriterMessage.vue index a1947ff4..03238e11 100644 --- a/components/NFTMint/WriterMessage.vue +++ b/components/NFTMint/WriterMessage.vue @@ -143,8 +143,8 @@ > {{ $t('NFTPortal.label.initialBatch.input') }} @@ -193,15 +193,15 @@ export default class WriterMessage extends Vue { initialBatchOptions = [ { batch: -1, price: this.$t('NFTPortal.label.initialBatch.free') }, // To maintain the compatibility of the DB data, minting starts from batch 7 - { batch: 7, price: 1 }, - { batch: 8, price: 2 }, - { batch: 9, price: 4 }, - { batch: 10, price: 8 }, - { batch: 11, price: 16 }, - { batch: 12, price: 32 }, - { batch: 13, price: 64 }, - { batch: 14, price: 128 }, - { batch: 15, price: 256 }, + { batch: 7, price: this.$t('NFTPortal.label.price', { price: 1 }) }, + { batch: 8, price: this.$t('NFTPortal.label.price', { price: 2 }) }, + { batch: 9, price: this.$t('NFTPortal.label.price', { price: 4 }) }, + { batch: 10, price: this.$t('NFTPortal.label.price', { price: 8 }) }, + { batch: 11, price: this.$t('NFTPortal.label.price', { price: 16 }) }, + { batch: 12, price: this.$t('NFTPortal.label.price', { price: 32 }) }, + { batch: 13, price: this.$t('NFTPortal.label.price', { price: 64 }) }, + { batch: 14, price: this.$t('NFTPortal.label.price', { price: 128 }) }, + { batch: 15, price: this.$t('NFTPortal.label.price', { price: 256 }) }, ] get shouldShowInitialBatchSettings() { diff --git a/locales/en.json b/locales/en.json index 3b80ff5b..67a118bd 100644 --- a/locales/en.json +++ b/locales/en.json @@ -276,6 +276,7 @@ "NFTPortal.label.fileUpload": "Has a file? Upload to ISCN here", "NFTPortal.label.initialBatch.input": "Initial Price (USD)", "NFTPortal.label.initialBatch.free": "All Free", + "NFTPortal.label.price": "${price}", "NFTPortal.label.input.email": "Join our community and stay in the loop on exclusive product updates and offers. {link} now!", "NFTPortal.label.input.link": "Please leave your email", "NFTPortal.label.Iscn": "ISCN ID", From 921505b47c27470825e6b4bc51b31b6b5e6c7962 Mon Sep 17 00:00:00 2001 From: AuroraHuang22 Date: Tue, 26 Sep 2023 20:22:41 +0800 Subject: [PATCH 5/5] =?UTF-8?q?=F0=9F=8E=A8=20Set=20batch=207=20as=20initi?= =?UTF-8?q?alBatch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/nft/iscn/_iscnId.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/nft/iscn/_iscnId.vue b/pages/nft/iscn/_iscnId.vue index 00bdb567..a4ae712b 100644 --- a/pages/nft/iscn/_iscnId.vue +++ b/pages/nft/iscn/_iscnId.vue @@ -263,7 +263,7 @@ export default class NFTTestMintPage extends Vue { reserveNft: number = 0 mintAmount: number = this.maxMintAmount - initialBatch: number = 4 + initialBatch: number = 7 shouldShowNoUrlWarning: boolean = false collectExpiryDate: string = ''