A registry of CryptoPunks that have been burned (sent to unrecoverable addresses).
Live at burnedpunks.com.
Static site built with Eleventy v3. Content lives in .md files. Punk images are SVGs fetched from the on-chain CryptoPunksData contract and committed to the repo. Deploys via Cloudflare Pages on push to main.
The previous WordPress + Hostinger implementation is preserved on the wp-legacy branch for reference.
punks/ One .md file per burned punk (filename = punk ID).
pages/ Top-level pages (homepage, /the-punks/, /about/, /faq/).
images/
├── logos/ Site logos (png, gif).
└── punks/ On-chain SVGs, one per punk (filename = punk ID).
_includes/layouts/ Nunjucks templates (base, punk).
_data/site.js Site-wide config (title, external URLs).
css/style.css All styles.
js/mosaic.js Homepage mosaic layout (runs in browser).
scripts/
├── fetch-punk-svgs.mjs Pulls SVGs from the CryptoPunksData contract.
└── import-narratives.mjs Re-pulls verbatim narratives from the live WP site via defuddle (historical; no longer needed).
eleventy.config.mjs
- Create
punks/{id}.mdwith the frontmatter schema below. - Run
npm run fetch-svgs -- {id}to pull the punk's SVG from chain intoimages/punks/{id}.svg. - Commit + push. Cloudflare Pages builds and deploys automatically.
---
id: 5237 # required; matches filename
intent: intentional # accidental | intentional
burn_date: "2023-08-10" # required, YYYY-MM-DD (quoted)
claimer_wallet: "0x..." # required
claimer_name: "Optional Name" # optional; falls back to short wallet
claim_date: 18 # day of June 2017 (1–30)
burner_wallet: "0x..." # optional
burner_name: "Optional Name" # optional
final_wallet: "0x..." # optional; where the punk ended up
final_name: "Optional Name" # optional
v1_wrapped: false # bool; if true, "Wrapped" renders as a link
# to the OpenSea wrapped-punks contract for this ID
---
Narrative body in markdown. Inline links encouraged.Every page is a .md file under punks/ or pages/. Edit, commit, push. Cloudflare Pages rebuilds on every push to main (takes ~30–60 seconds). Every branch and PR gets its own *.pages.dev preview URL.
Content (prose, data, curation): CC-BY 4.0. See individual punk pages for sources.
Site code: MIT-adjacent; do what you like.