Skip to content

poap-xyz/poap-gallery

 
 

Repository files navigation

Intro

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.

POAP gallery

gitpoap badge

Mainnet

deploy contract: 0x22C1f6050E56d2876009903609a2cC3fEf83B415

Ropsten Testnet

deploy contract: 0x50C5CA3e7f5566dA3Aa64eC687D283fdBEC2A2F2

How to setup

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

How to run with functions locally

Link to configuration of Netlify

Files to change before to start running locally

netlify.toml

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

render.js

From this

const eventId = req?.baseUrl?.split('/')[2];

To this

const eventId = req?.baseUrl?.split('/')[4]

Commands to run

npm install netlify-cli -g
netlify init
netlify dev

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 53.2%
  • SCSS 45.1%
  • HTML 1.2%
  • CSS 0.5%