File tree 3 files changed +69
-6
lines changed
3 files changed +69
-6
lines changed Original file line number Diff line number Diff line change 1
1
# <img height =" 40 " src =" https://img.icons8.com/?size=100&id=HOqGCOyHDbd4&format=png&color=000000 " > Solidity Notes
2
2
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
+
3
14
Compilation of notes for my Solidity study journey. These are the main sources:
4
15
5
16
- [ RareSkills' The Ultimate Solidity Course] ( https://www.rareskills.io/learn-solidity )
6
17
- [ Solidity by Example] ( https://solidity-by-example.org/ )
7
18
- [ Solidity Official Documentation] ( https://docs.soliditylang.org/?color=dark )
8
-
9
- ## Table of Contents
10
-
11
- - [ RareSkills Notes] ( ./rare_skills/Index.md )
Original file line number Diff line number Diff line change 91
91
## 📁 Additional Resources
92
92
93
93
- [ 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 )
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments