Code

Generative art (code-driven)

Code-driven art where each mint gets a unique on-chain hash that seeds the script.

At deploy
Storage fee

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

Creator, once at deploy

Per mint
$0.50

Flat platform fee added to each mint transaction.

Collector, on each mint

On secondary
5%

Trades routed through the artsunami marketplace pay 5%. 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.
  • +Reveal 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.

Create