Next minter wait time when N people have minted an item = item.length * N Total wait time to reach N total supply of an item = (item.length * 1) + (item.length * 2) ... + (item.length * N) = item.length * (1 + 2 ... + N) = item.length * (N * (N+1) / 2)
For item: | |
When total supply is: | |
The next minter needs to wait: | |
Total accumulated time to reach this total supply: |