Skip to content

Base Onchain Summer project, DevNet is a website for developer to create personal profile, like Linkedin / Github, but in DevNet, you can also create "learning plan", and "mint SBT" when finishing the plan, the minting price of SBT is set by plan creator.

Notifications You must be signed in to change notification settings

LI-YONG-QI/devnet

Repository files navigation

DevNet

Base Onchain Summer project. (Discovery track)

Overview

DevNet is a website for developers to create personal profiles, like Linkedin / Github, but in DevNet, you can also create "learning plans", and "mint NFTs" upon completing plan, the minting price of SBT is set by plan creator.

People can create a learning plan, setting appropriate learning paths according to different goals like a roadmap, to provide guidance for newcomers who are not yet familiar with the technology.

Creators can also use these features to build their own business models. For example, create plans as part of a comprehensive course, and allow NFT holders to access to subsequent course content. In this case, NFTs can serve as a source of revenue for the course.

Features

Social Login (Homepage & Profile)

User can login with their social account, like Github, Google, Twitter, etc.

image image image

Create plan

User can create learning plan, and set the price of SBT, and the number of SBT.

image

Start Plan

User can start the plan, and the plan will be shown in the user's profile.

image

User can mint NFT when finishing the plan, the price of NFT is set by plan creator. And the NFT will shown in the user's profile.

Explore

User can explore recently created / minted / completed plans.

Note: not finished yet, only display plan contract address by fetched event log

image

Tech

Smart Contract

PlanRouter

Core contract to implement main plan functions.

  • createPlan() Create new Plan contract and record plan address owned by user
  • active() Active(start) specific plan contract

Plan

ERC721 Contract record the information of each plan

The information include totalSupply / period / mintPrice

  • active() recorder starter and timestamp
  • mint() mint NFT to starter and pay mintPrice ether
  • withdraw() withdraw ether from plan creator

Fleek Functions

In fleek-fn/getEvents.ts

Use Fleek Functions to read event(minted / created) from on-chain contracts.

How to start ?

  1. create .env file by .env.example
  2. pnpm install
  3. pnpm dev

How to deploy Fleek Functions ?

If you want to know more details on deploy Fleek Function, please check this guide

  1. esbuild bundle getEvents.ts with package to out/out.js
pnpm bundle
  1. create function
fleek functions create --name <YOUR_FUNCTION_NAME>
  1. deploy function (--path must be out.js file path)
fleek functions deploy \
  --name <YOUR_FUNCTION_NAME> \
  --path <out.js file path>
  1. check function deployment
fleek function deployments --name <YOUR_FUNCTION_NAME>

About

Base Onchain Summer project, DevNet is a website for developer to create personal profile, like Linkedin / Github, but in DevNet, you can also create "learning plan", and "mint SBT" when finishing the plan, the minting price of SBT is set by plan creator.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages