All Projects → owanhunte → ethereum-solidity-course-updated-code

owanhunte / ethereum-solidity-course-updated-code

Licence: other
Up-to-date Solidity/web3.js/React/Next.js code for the udemy.com course Ethereum and Solidity: The Complete Developer's Guide.

Programming Languages

javascript
184084 projects - #8 most used programming language
solidity
1140 projects
CSS
56736 projects
HTML
75241 projects
shell
77523 projects

Projects that are alternatives of or similar to ethereum-solidity-course-updated-code

Eth Crypto
Cryptographic javascript-functions for ethereum and tutorials to use them with web3js and solidity
Stars: ✭ 420 (+160.87%)
Mutual labels:  smart-contracts, web3
starter-kit-gsn
An OpenZeppelin starter kit focused on GSN.
Stars: ✭ 39 (-75.78%)
Mutual labels:  smart-contracts, web3
Web3swift
Elegant Web3js functionality in Swift. Native ABI parsing and smart contract interactions on Ethereum network.
Stars: ✭ 462 (+186.96%)
Mutual labels:  smart-contracts, web3
Alpha
Follow the white rabbit 🐇
Stars: ✭ 304 (+88.82%)
Mutual labels:  smart-contracts, web3
docs
Unleash Bitcoin's full potential with decentralized apps and smart contracts. The documentation covers key aspects of the Stacks network and technology and provides tutorials and other helpful content for developers.
Stars: ✭ 134 (-16.77%)
Mutual labels:  smart-contracts, web3
Ethereum Php
PHP interface to Ethereum JSON-RPC API. Fully typed Web3 for PHP 7.X
Stars: ✭ 343 (+113.04%)
Mutual labels:  smart-contracts, web3
Eth.social
An Ethereum dApp for posting social events.
Stars: ✭ 17 (-89.44%)
Mutual labels:  smart-contracts, web3
awesome-waves
Curated list of awesome things for development on Waves blockchain.
Stars: ✭ 60 (-62.73%)
Mutual labels:  smart-contracts, web3
useWeb3
useWeb3 provides a curated overview of the best and latest resources on Ethereum, blockchain and Web3 development.
Stars: ✭ 325 (+101.86%)
Mutual labels:  smart-contracts, web3
Web3swift
Elegant Web3js functionality in Swift. Native ABI parsing and smart contract interactions.
Stars: ✭ 237 (+47.2%)
Mutual labels:  smart-contracts, web3
Web3.swift
A pure swift Ethereum Web3 library
Stars: ✭ 295 (+83.23%)
Mutual labels:  smart-contracts, web3
trufflepig
🍄🐷Truffle contract artifact loading tool for local development
Stars: ✭ 45 (-72.05%)
Mutual labels:  smart-contracts, web3
Solidity Idiosyncrasies
Solidity gotchas, pitfalls, limitations, and idiosyncrasies.
Stars: ✭ 267 (+65.84%)
Mutual labels:  smart-contracts, web3
React Ethereum Dapp Example
A starter boilerplate for an Ethereum dapp using web3.js v1.0, truffle, react, and parity
Stars: ✭ 384 (+138.51%)
Mutual labels:  smart-contracts, web3
full-blockchain-solidity-course-py
Ultimate Solidity, Blockchain, and Smart Contract - Beginner to Expert Full Course | Python Edition
Stars: ✭ 5,349 (+3222.36%)
Mutual labels:  smart-contracts, web3
Web3.php
A php interface for interacting with the Ethereum blockchain and ecosystem. Native ABI parsing and smart contract interactions.
Stars: ✭ 507 (+214.91%)
Mutual labels:  smart-contracts, web3
blockhead
Crypto portfolio tracker, DeFi dashboard, NFT viewer and data explorer for the Ethereum/EVM-based blockchain ecosystem and the web 3.0-powered metaverse https://gitcoin.co/grants/2966/blockhead
Stars: ✭ 41 (-74.53%)
Mutual labels:  smart-contracts, web3
go-ethutil
Ethereum utility functions for Go.
Stars: ✭ 17 (-89.44%)
Mutual labels:  smart-contracts, web3
Blockchainbooks.github.io
Blockchain Books
Stars: ✭ 139 (-13.66%)
Mutual labels:  smart-contracts, web3
eth-decoder
Simple library to decode ethereum transaction and logs
Stars: ✭ 32 (-80.12%)
Mutual labels:  smart-contracts, web3

Ethereum and Solidity: The Complete Developer's Guide (Community Contributed Code Updates)

Update In Progress... Hi all, it's been a long time coming but I've finally gotten around to putting some time into bringing this repo up-to-date. I have started by renaming the default branch from master to main, and I created a new branch named update_solidity_0_8 which I'll be committing all the updated code to. As I make progress, I'll be merging this branch back into the main branch.

Purpose of this Repo

Up-to-date Solidity/web3.js/React/Next.js code for the udemy.com course Ethereum and Solidity: The Complete Developer's Guide.

The Reason

Toward the end of 2019 I became very interested in entering the blockchain development space and so I embarked on a journey to learn as much as I can, as quickly as I can, within this ever-evolving tech space we refer to as Blockchain, and to be more specific, the Ethereum ecosystem. Of course, I quickly realised that the development tools and packages being used to build, develop and deploy dApps and tech within this ecosystem all share a common trend: rapid change and evolution, often introducing breaking changes through iterations of their releases.

I make heavy use of the online learning website udemy.com and find it to be a great supplementary learning tool. So naturally I bought a few courses on Ethereum and Solidity. The problem is, each of these courses target outdated versions of Solidity, web3.js and Truffle in their course lessons and code examples. In the course creators' defense, remember, this is rapidly evolving tech we're dealing with here and the respective effort required to keep their video course content up-to-date with current software releases can be rather challenging.

And so, that's where I decided to lend a bit of a helping hand.

Let the Code speak

I figured that if I wanted the online courses I enrolled in to provide up-to-date code then other developers also had to want this. So, I decided to take action and just write the updated code myself, starting with the Udemy course Ethereum and Solidity: The Complete Developer's Guide, the one I found most enjoyable and acceptable so far.

Repository structure

This repository was setup as a monorepo, so as to keep the updated versions of the isolated bits of the course's code and tests well organized all within a single repository.

Smart Contracts

The smart contracts created in the course are:

Working with the latest React tooling

The course sections that cover building out a front-end application using React make use of outdated versions of Create React App and Next.js.

For Create React App, the previous approach of installing globally via npm install -g create-react-app is no longer the recommended approach. As such if you have already used this command and installed create-react-app globally then you should uninstall the package using npm uninstall -g create-react-app or yarn global remove create-react-app. To create a new React app you may now use one of the following methods to ensure that you always use the latest React version:

  • npx: npx create-react-app my-app
  • npm: npm init react-app my-app
  • Yarn: yarn create react-app my-app

For more details on the above methods, see https://create-react-app.dev/docs/getting-started.

For the Kickstart/CrowdCoin app I used the latest version of Next.js when I created this repo, and this is now being updated to the currently latest version of Next.js (v12) as part of my current efforts to bring this repo up-to-date.

The lottery-react App

To create the lottery-react app I chose to use the yarn command option, as follows:

yarn create react-app lottery-react

The Kickstart/CrowdCoin App

Acknowledgement

I would like to give credit to Stephen Grider for creating the excellent course for which I created this repository as my own personal add-on. If any mistakes or errors are found within any of this repository's content they should be attributed to an oversight on my part, and in no part should be deemed any fault of the Udemy course author, Stephen Grider.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].