Live Demo https://marry-soul.vercel.app/
Project name - AcademicNFT
- Link to working code in a public repo - Steps to check the Unstoppable Domain integration - https://marry-soul.vercel.app/
- Clone the Repo
- cd AcademicNFT
- npm install
- npm start
- Go to http://localhost:3000/
- Recorded video demo of the integration - https://www.loom.com/share/7ccbae89d9094f159324900cc1ef8498
- Person of contact in case there are any questions - Vishal Pachpor (Email - vishalpatil080502@gmail.com )
- Discord ID - vishalpatil01#5005
- UnstoppableDomain registered account email address - vishalpatil080502@gmail.com
- Code where UnstoppableDomain is used -
// #web3 #NFT #dApp
- git clone https://github.com/VISHAL-143x/AcademicNFT; /https://github.com/shabbiryk/AcademicNFT
- Copy a .env file
>cp -a env.example .env
and fill with your own parameters. - Get an NFT.Storage API key https://nft.storage/ and add this to the .env
- Add your sepolia blockchain server api and url to the .env file (ive used alchemy here, though moralis & infura are also awesome)
- Install packages
>npm install
- Deploy the solidity contract to the sepolia testnet using hardhat '>npx hardhat run scripts/deploy.js --network sepolia`
- Add your contract address to the .env file
- Run your front end in dev mode
>npm start
OR deploy with Fleek https://fleek.co/
npx create-react-app my-app-name cd my-app-name npm install --save-dev hardhat npx hardhat (to get a sample project - choose basic project so we get all the folders. Choose no to gitignore and y to dependencies)
install dependencies:
npm install --save-dev @nomiclabs/hardhat-waffle ethereum-waffle chai @nomiclabs/hardhat-ethers @nomiclabs/hardhat-etherscan @openzeppelin/contracts npm install ethers dotenv
Tasks - development of contract
add .env to the .gitignore file rm ./contracts/Greeter.sol rm ./scripts/sample-script.js
touch ./contracts/SoulToken.sol touch ./scripts/run.js touch ./scripts/deploy.js
Write solidity contract Write run.js and test your contract
npx hardhat run scripts/run.js
Sign up for etherscan / get an API key & add it to hardhat.config networks: { sepolia: { url: process.env.MORALIS_SEPOLIA_API_URL, accounts: [process.env.METAMASK_SEPOLIA_PRIVATE_KEY], }, }, etherscan: { // Your API key for Etherscan // Obtain one at https://etherscan.io/ apiKey: process.env.ETHERSCAN_API_KEY, }
- Read the IPFS best practice guide for NFT's https://docs.ipfs.io/how-to/mint-nfts-with-ipfs/#a-short-introduction-to-nfts
- See the NFT.School guide https://nftschool.dev/
- Public Gateway status checker: https://ipfs.github.io/public-gateway-checker/
- Faucets for sepolia eth: https://faucets.chain.link/sepolia
AcademicNFT is a permissionless soulbound token issuance/attestation protocol that enables people to bring relationships on-chain.
Future Plan
We decided to take it further and launch it on mainnet and L2 with a better design and complete implementation, which
-
enables people to revoke their SBT;
-
enable people to search, issue, and attest with ENS integration;
-
link to various DID services like Proof of Humanity and brightID.
We believe a decentralized society will be formed from the grassroots, with the help and support of the individuals.
Thank you!