Series
A Series is a collection of multiple unique tokens — each with its own name, image, and attributes. Unlike editions (where every token shares the same artwork), series tokens are individually distinct.
How series work
Section titled “How series work”- Fixed supply — the total number of tokens is set at creation.
- Unique metadata per token — each gets its own name, image, animation, and attributes.
- Bulk upload — one zip containing all per-token assets and metadata.
Series are always ERC-721.
Two variants
Section titled “Two variants”| Variant | Who picks the token ID | Backing contract |
|---|---|---|
| Collectors Choice | Collector — tokenIds passed with claim | SeriesImplementation |
| Standard | Platform — sequential or random | RandomSeriesImplementation |
Both contracts are non-reusable (one per collection).
Revealed vs unrevealed
Section titled “Revealed vs unrevealed”Orthogonal to the variant — either variant can be revealed or unrevealed.
- Revealed — metadata visible before mint. Ideal with Collectors Choice so collectors can browse and pick.
- Unrevealed — metadata hidden until post-mint. “Blind mint” experience.
Choose-token mechanic
Section titled “Choose-token mechanic”Collectors Choice collections always use the gatedSeriesMintChooseToken executor-signed path (even on public sales) because the collector specifies exact token IDs. Exception: public Dutch auctions on Collectors Choice use mechanicMintChoose (fully on-chain with selection).
See support matrix: series for the full mint-method mapping.
Ranked auctions are not supported for Collectors Choice. Standard series support ranked auctions (public only).
Related
Section titled “Related”- Collections — types overview
- Mechanics — choose-token internals
- Support matrix — valid combinations
- Creating a collection — dashboard walkthrough