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.
1 parent 32ae17b commit de73d4cCopy full SHA for de73d4c
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