Thoughts - decentralized Twitter-like app (web3.0)

Introduction to web 3.0 with the project.

·

3 min read

Thoughts - decentralized Twitter-like app (web3.0)

Thoughts - Decentralized twitter-like app (Block-chain Project)

live at: dthoughts.vercel.app

Overview

This is a very basic blockchain project, which is a short message(thought) sharing app. This is basically a decentralized twitter-like app, which takes users and allows them to share a short message which is publicly viewable. The source code for this is available on GitHub at the following link: github.com/om2137/Thoughts

Components used

Ethereum: project is based on Ethereum as a smart contract platform.
Solidity: The programming language used in this project for smart contracts.
Hardhat: Hardhat development environment used in the project, used to compile contracts, set up the local blockchain, etc.
Waffle: waffle is used to test the contracts in the project.
Ethers.js: library used to connect with the Ethereum network to perform the operation.
Metamask: Metamask is the wallet used in this project for the transaction.
Next.js: Next.js is the framework used in the project to build the web app or decentralized app.
Tailwind.css: For styling the application Tailwind.css is used.

Working on project

This project is divided into two parts one is a contract, where the smart contract resides and the other is a decentralized app(Dapp).
In the first part, there is a smart contract written in solidity which has two main components user and thought. Users have their address, name, unique username, bio, and avatar. Address and username are unique to each user. This contract has the basic features used by the user like signup and posting messages.
In the second part, there is a next.js app that has the components which we will see and use to interact with the application. It has the index.tsx in pages which is the main page where all other components are assembled like the signup page, the home page, etc. It also contains a hook useThoughts.ts which is used to connect the application with the contract. It has all the functions like connect, createuser(signup), post message, etc. used in the application.
In very basic form, a smart contract is first compiled and tested on hardhat, then a node or a local Ethereum network which have multiple accounts. The smart contract is then deployed on the local network and we get the address. This address is used in Dapp to connect with the contract and the local network. Dapp is ready to run, when first started you will have to connect it with the metamask, and then one of the accounts on the local network which we ran with hardhat. After connecting Metamask signup with the relevant information and then the user is ready to tweet.

working archi.png

Future Article of the series

This article is just an overview of the project. What components does it use and what is the basic structure and working of the project. In future articles, we will see each component in-depth and how the project is made from scratch.

follow on Twitter: twitter.com/omtwts

Did you find this article valuable?

Support Om Raut by becoming a sponsor. Any amount is appreciated!