POAP Gallery is an explorer for POAP tokens that searches by event and token address. A great tool that lets you view live stats on current public POAP drops.
deploy contract: 0x22C1f6050E56d2876009903609a2cC3fEf83B415
deploy contract: 0x50C5CA3e7f5566dA3Aa64eC687D283fdBEC2A2F2
git clone https://github.com/poap-xyz/poap-gallery.git
cd
yarn
cp .env.template .env // Add your own REACT_APP_RPC_PROVIDER_URL
yarn start
From this
[[redirects]]
from = "/event/*"
to = "https://gallery-prerender.netlify.app/.netlify/functions/render/:route"
status = 200
force = true
To this
[[redirects]]
from = "/event/*"
to = "/.netlify/functions/render/:route"
status = 200
force = true
From this
const eventId = req?.baseUrl?.split('/')[2];
To this
const eventId = req?.baseUrl?.split('/')[4]
npm install netlify-cli -g
netlify init
netlify dev