From f354f04aa6477c7aabf49a91971aa04bcee053cc Mon Sep 17 00:00:00 2001 From: AuroraHuang22 Date: Wed, 20 Sep 2023 22:13:09 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Adjust=20the=20starting=20batch?= =?UTF-8?q?=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() {