Skip to main content
Version: V2

Quick Setup

This guide will teach you how to create a social application where users can create on-chain badges that can be linked to an event. Once users have set up their profiles, they will be able to create badges for an event and attendees will have the ability to collect them by attending that event.

This is a basic example with the sole purpose of going over core features and highlighting how easy to implement them. Later on you can extrapolate and get creative with your project to create different use cases that would truly make your app stand out.

Jump to

How to Build Badge app covers the following sections:

  1. Create a Profile
  2. Authentication
  3. Create a Badge
  4. Collect a Badge

Prerequisites

The app you're about to build is using Next.js. Make sure that you have installed Node.js on your computer and MetaMask extension in your Chrome browser.

Installation

Clone the repo https://github.com/cyberconnecthq/cc-badge-app.git and run the following command in your terminal to install all the packages that are necessary to start the development server: npm install or yarn install.

Local Development

To start the local development server run the command npm run dev or yarn dev and open up the browser window http://localhost:3000. Most changes are reflected live without having to restart the server.

Live demo

This is the link for the live version of the app you are about to build: https://cc-badge-app.vercel.app/

Let's get started with building an application where users can issue and collect badges!

Designed by