How I'm moving into Web3 as a Web Developer

8 years ago I started getting into cryptocurrencies as a hobby. I had found a currency you may know about called "Dogecoin". I was initially skeptical of a currency based on a meme but after finding the community that was forming around the new coin I was hooked. I setup my computer to mine the coins and even bought hats to help Sponsor a nascar driver and fund the Jamaican bobsled team. After a while though I sold the coins when the first bear market hit. I now regret that decision 🤣

Recently with the rise of NFT's and Web3 my passion has returned. I see the community that is currently forming around Ethereum with things like DAO's and it brought me right back to 2014 when I was mining doge in my bedroom for fun. Not only that but as a developer I see the power of Ethereum and other blockchains and I have started to consume any content I can. The issue currently is that the field moves so quick that it's hard to find a way to get an idea of what you need to start building. So I decided to document at least what I have been doing in the case that it could help someone else out.

I'm going to assume you have at least a baseline knowledge of javascript and basic web development. You should be able to at least be able to spin up something like a react site and a node server and then be able to deploy them. If not you can jump over to youtube and find hundreds of tutorials and come back here.

Building a Theoretical Base

While there are multiple blockchains currently competing over who will be the primary Layer 1 solution, the biggest developer ecosystem exists currently around Ethereum so that's the place I would recommend starting at. The first thing I did was read over the Ethereum Developer documentation which gives you a good primer on what smart contracts are, what gas is and all the other more theoretical parts of the current blockchain landscape.

Getting Hands-On with Smart Contracts

The next thing you probably want to do is start getting a deeper understanding about Solidity and how to start writing smart contracts because they are going to be the backend of your new Web3 apps. The best way I found was to go through the CryptoZombies tutorial . It will walk you though the Solidity syntax as well as how to optimize your gas fees. After this I also read through the OpenZeppelin docs for the various ERC standards because you will be using them extensively when writing your own contracts. By the end of it you should have enough a good enough handle on Ethereum smart contracts to start writing your own.

Your First Dapp

I like to learn by doing so the next thing that I did was building a demo NFT marketplace by following this tutorial by Nader Dabit. It will go through:

  • The basics of building an ERC721 token contract as well as an NFT Marketplace contract

  • It also covers how to deploy the contract to the Polygon Network which is an Ethereum layer 2 sidechain that you can use to minimize gas fee's (more on that later.)

  • Setting up a Hardhat development environment to test and deploy your Solidity contracts

  • Scaffolding a basic Next.js app with Ethers.js and Web3Modal to interact with your deployed contracts

After all this you should have a baseline understanding of full-stack Ethereum development but the field is moving so quickly that there is so much more to learn.

Diving Deeper

Now that we have build a foundation for blockchain development we can start diving deeper into the field. I have been listening to podcasts like:

  • This Tim Ferris episode where he goes over the current Web3 Landscape with two large investors in the field

  • This Tim Ferris episode with Vitalik Buterin who is one of the founders of Ethereum

  • Any episodes from the Bankless podcast which will keep you updated on the Crypto universe as well as educating you in the process

I have also been reading this book which you can read on Github for free. It's one of the best books currently available for a deeper dive on the theory of the blockchain and token economies.

I have also been using lots of the current Ethereum Dapps like Opensea and even bought an ENS domain (wiker.eth 😎). You can view the current top Dapps by using this site

Exploring outside Ethereum

Currently Ethereum has very high gas fees which makes building any dapps on it very cost prohibitive. The Ethereum organization has a roadmap for fixing this though and one of the ways is using Layer 2 rollup solutions. I have been exploring some of them like:

You can also take a look at some of the other Layer 1 Solutions outside Ethereum like:

Conclusion

I'm super excited about everything going on in Web3 and I hope this helped you get a better idea on how to start developing and building more apps. This is only the beginning though and I hope you're able to learn even more about the ecosystem. If you have any other questions feel free to reach out for sure and all the best on your Web3 journey!

25