Skip to content
Code

Generative (code-driven)

One deterministic script - art, game, music or PFP - where each mint gets a unique on-chain hash that seeds it. Same contract and pricing across the whole family.

At deploy
Storage fee

Free under 5 MB, $0.05/MB above with a $0.50 minimum.

Creator, once at deploy

1st sale (primary)
5%

artsunami takes 5% of the first sale. On the platform's own mint the collector pays it on top of the mint price; on SeaDrop / OpenSea mints it's deducted on-chain from the sale (creator receives 95%).

Taken on the first sale

2nd market (secondary)
5%

Resales routed through the artsunami marketplace pay 5% to the platform. Off-platform resales are unaffected.

Settled out of the resale

EIP-2981 royalty (separate from the fees above)

On top of the table above, you set your own royalty rate at deploy (capped at 10%). Every honest marketplace - including artsunami - pays it directly to your wallet on every resale. The royalty is never withheld by artsunami: the contract sends it to you in the same transaction as the seller payout.

Specific to code

Cost breakdown for this format

Estimated mainnet gas
One-time cost paid to Ethereum at deploy. artsunami takes nothing on top.
~$50-80
  • Typical storage footprint
    Script bytes (chunked into the contract) plus per-token metadata. A typical p5.js sketch is 10-50 KB; a heavy three.js scene 100-300 KB.
  • Resulting storage fee
    Script storage is gas, not a storage fee. Metadata is generated on the fly from the contract, so the storage fee is usually zero.
Format quirks
  • +Script is stored on-chain in chunks - one transaction per ~24 KB chunk. Three or four chunks is normal.
  • +Token URI is fully on-chain (base64 JSON) so marketplaces always have something to render.
  • +Each mint stores its hash in the contract; the script reads it via the standard tokenData hook.
  • +Artwork is live from mint #1 - there's no off-chain renderer to wait on.

Other formats

Same two fees apply. Pick the format that fits your project.