We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 32ae17b + de73d4c commit 50b7325Copy full SHA for 50b7325
src/DropKit.ts
@@ -275,15 +275,6 @@ export default class DropKit {
275
const presaleActive = await this.presaleActive()
276
const saleActive = await this.saleActive()
277
278
- const tokensCount = await this.walletTokensCount()
279
- const maxPerWallet = await this.maxPerWallet()
280
-
281
- if (tokensCount + quantity > maxPerWallet) {
282
- throw new Error(
283
- `You can't mint more than ${maxPerWallet} tokens on your wallet`
284
- )
285
- }
286
287
if (!saleActive && !presaleActive) {
288
throw new Error('Collection is not active')
289
}
0 commit comments