Instant token-gated event platform powered by Solana. Create events, mint attendance NFTs, and unlock exclusive dashboards in seconds.
Live Demo: https://event-pass-six.vercel.app/
Demo Video: https://youtu.be/AH_x-Rpg5UY?si=212zNNRq0krKDfeU
Repository: https://github.com/Freedteck/Event-pass
EventPass lets anyone create events and deploy NFT-based attendance passes on Solana. Attendees claim passes via QR codes or links, and NFT ownership instantly unlocks token-gated event dashboards with live interactions.
Key Features:
- Create unlimited events with unique NFT collections
- Instant NFT minting via Compressed NFTs (ultra-low cost)
- Token-gated dashboards with live polls, announcements, and attendee lists
- Automatic claim management based on time and capacity
- User profiles showing attended and created events
- QR code generation for easy venue check-ins
Speed: 3-second transaction finality enables instant claim-to-dashboard flow with no waiting.
Cost: Compressed NFTs reduce minting costs by 1000x. Organizers can mint 100+ passes for under $1 total.
Scalability: Platform handles hundreds of simultaneous events and thousands of claims without cost explosion.
This literally cannot work on other chains. Ethereum gas fees would make attendance passes economically impossible.
For Organizers:
- Connect wallet and create event (name, date, capacity, image)
- Deploy NFT collection on Solana (one-time ~0.01 SOL fee)
- Share generated claim link or QR code
- Monitor real-time claims and manage dashboard content
For Attendees:
- Scan QR code or click claim link
- Connect Solana wallet (Phantom, Solflare, Backpack)
- Mint NFT pass in ~3 seconds
- Instantly access token-gated event dashboard
- Participate in polls, view announcements, see other attendees
Token-Gating: Each event has its own NFT collection. Dashboard access checks if connected wallet owns an NFT from that specific collection. No NFT = no access.
Frontend: React, JavaScript, CSS Modules
Blockchain: Solana Mainnet, Solana Kit
Wallet: Solana Wallet Adapter
NFTs: Metaplex Compressed NFTs
Database: Supabase
Deployment: Vercel
# Clone repository
git clone https://github.com/Freedteck/Event-pass.git
cd Event-pass
# Install dependencies
npm install
# Set environment variables
cp .env.example .env
# Add your Solana RPC URL, Supabase credentials, etc.
# Run development server
npm run devRequired Environment Variables:
SOLANA_RPC_URL- Solana RPC endpointSUPABASE_URL- Supabase project URLSUPABASE_ANON_KEY- Supabase anonymous key
Multi-Event Structure:
- Each event deploys a separate Compressed NFT collection
- Collection address stored in Supabase, linked to event ID
- Token-gating queries Solana for NFT ownership per collection
- Events are completely isolated (Event A NFT ≠ Event B access)
Event Lifecycle:
- Claims auto-close at event time (can be manually overridden)
- Capacity enforced (no mints beyond max attendees)
- Events can be edited or archived by organizers