Skip to content

I'm creating this repo to help future Solidity developers to understand the basic fundamentals of this powerful web3 language and start making learning more accessible!!

Notifications You must be signed in to change notification settings

pcanabarro/solidity-onboarding

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Welcome to Solidity Onboarded

I'm creating this repo to help future Solidity developers to understand the basic fundamentals of this powerful web3 language and start making learning more accessible!!

First you'll start creating your first contract:

// SPDX-License-Identifier: MIT

pragma solidity 0.8.24;

contract MyFirstContract {
  string public myFirstString = "Hello";

  function updateString(string memory _updateString) {
    myFirstString = _updateString;
  }
}

WIP...

About

I'm creating this repo to help future Solidity developers to understand the basic fundamentals of this powerful web3 language and start making learning more accessible!!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published