Skip to content

Commit cd351ed

Browse files
committedNov 15, 2024
new structure
1 parent bd82f13 commit cd351ed

File tree

3 files changed

+69
-6
lines changed

3 files changed

+69
-6
lines changed
 

‎README.md

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
# <img height="40" src="https://img.icons8.com/?size=100&id=HOqGCOyHDbd4&format=png&color=000000"> Solidity Notes
22

3+
## 📄 Table of Contents
4+
5+
These are my personal notes from documentation, courses, bootcamps, etc.
6+
7+
- [RareSkills Notes](./rare_skills/Index.md)
8+
- [Solidity By Example Notes](./solidity_by_example/Index.md)
9+
- [Encode EVM Bootcamp](#)
10+
- [Arbitrum](#)
11+
12+
## ⛲ Sources
13+
314
Compilation of notes for my Solidity study journey. These are the main sources:
415

516
- [RareSkills' The Ultimate Solidity Course](https://www.rareskills.io/learn-solidity)
617
- [Solidity by Example](https://solidity-by-example.org/)
718
- [Solidity Official Documentation](https://docs.soliditylang.org/?color=dark)
8-
9-
## Table of Contents
10-
11-
- [RareSkills Notes](./rare_skills/Index.md)

‎rare_skills/Index.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -91,5 +91,4 @@
9191
## 📁 Additional Resources
9292

9393
- [RareSkills Blog](https://www.rareskills.io/blog)
94-
95-
[Course Link](https://www.rareskills.io/learn-solidity)
94+
- [Course Link](https://www.rareskills.io/learn-solidity)

‎solidity_by_example/Index.md

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Solidity by Example Notes
2+
3+
## 📄 Table of Contents
4+
5+
- Hello World
6+
- First App
7+
- Primitive Data Types
8+
- Variables
9+
- Constants
10+
- Immutable
11+
- Reading and Writing to a State Variable
12+
- Ether and Wei
13+
- Gas and Gas Price
14+
- If/Else
15+
- For and While Loop
16+
- Mapping
17+
- Array
18+
- Enum
19+
- User Defined Value Types
20+
- Structs
21+
- Data Locations - Storage, Memory and Calldata
22+
- Transient Storage
23+
- Function
24+
- View and Pure Functions
25+
- Error
26+
- Function Modifier
27+
- Events
28+
- Events Advanced
29+
- Constructor
30+
- Inheritance
31+
- Shadowing Inherited State Variables
32+
- Calling Parent Contracts
33+
- Visibility
34+
- Interface
35+
- Payable
36+
- Sending Ether - Transfer, Send and Call
37+
- Fallback
38+
- Call
39+
- Delegatecall
40+
- Function Selector
41+
- Calling Other Contract
42+
- Creating Contracts from a Contract
43+
- Try / Catch
44+
- Import
45+
- Library
46+
- ABI Encode
47+
- ABI Decode
48+
- Hashing with Keccak256
49+
- Verifying Signature
50+
- Gas Optimizations
51+
- Bitwise Operators
52+
- Unchecked Math
53+
- Assembly Variable
54+
- Assembly Conditional Statements
55+
- Assembly Loop
56+
- Assembly Error
57+
- Assembly Math

0 commit comments

Comments
 (0)
Please sign in to comment.