Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Solidity NFT learning
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Chris
Solidity NFT learning
Commits
e6e3db35
Commit
e6e3db35
authored
11 months ago
by
Chris
Browse files
Options
Downloads
Patches
Plain Diff
Updated Notes.md to contain links to each respective file
parent
e739aea8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Learn Solidity basics/Notes.md
+22
-0
22 additions, 0 deletions
Learn Solidity basics/Notes.md
with
22 additions
and
0 deletions
Learn Solidity basics/Notes.md
+
22
−
0
View file @
e6e3db35
...
...
@@ -10,6 +10,7 @@ Covers getting started: using Remix, creating smart contracts
### Part 1 related .sol files
-
[
MyContract.sol
](
./contracts/MyContract.sol
)
### Part 1 notes
...
...
@@ -44,6 +45,9 @@ Covers variable types
### Part 2 related .sol files
-
[
MyContract.sol
](
./contracts/MyContract.sol
)
-
[
MyTypes.sol
](
./contracts/MyTypes.sol
)
### Part 2 notes
-
keep usage of strings to a minimum: strings are bytes bundled together, which means they can cost a lot of gas when used in smart contracts
...
...
@@ -78,6 +82,9 @@ continuing usage of variables with more interesting concepts, covering the `addr
### Part 3 related .sol files
-
[
MyTypes.sol
](
./contracts/MyTypes.sol
)
-
[
MyVariables.sol
](
./contracts/MyVariables.sol
)
### Part 3 notes
-
address types were created, but they should properly be typecasted (are they really primitives then...?)
...
...
@@ -117,6 +124,8 @@ this tutorial talks about operators you can use in Solidity
### Part 4 related .sol files
-
[
MyOperators.sol
](
./contracts/MyOperators.sol
)
### Part 4 notes
-
see
**MyOperators.sol**
for a list of operators you can use
...
...
@@ -132,6 +141,8 @@ this tutorial talks about measurement units (wei, gwei, ether) available in Soli
### Part 5 related .sol files
-
[
MyUnits.sol
](
./contracts/MyUnits.sol
)
### Part 5 notes
-
smart contracts always work with the unit
**wei**
...
...
@@ -168,6 +179,12 @@ uint256 costOfNFT = 0.05 ether;
### Part 6 related .sol files
-
[
MyIfElse.sol
](
./contracts/MyIfElse.sol
)
-
[
MyLoop.sol
](
./contracts/MyLoop.sol
)
-
[
MyMappings.sol
](
./contracts/MyMappings.sol
)
-
[
MyArray.sol
](
./contracts/MyArray.sol
)
-
[
MyEnums.sol
](
./contracts/MyEnums.sol
)
### Part 6 notes
-
Solidity gives us the saame familiar if/else statements and for/while loops as you see in other languages
...
...
@@ -178,11 +195,16 @@ uint256 costOfNFT = 0.05 ether;
### Part 7 video link
<https://www.youtube.com/watch?v=MpWZStxeabk&list=PLvfQp12V0hS2PQd9-X-E2AjmXj1o05WOo&index=8>
### Part 7 related .sol files
-
[
MyStructs.sol
](
./contracts/MyStructs.sol
)
### Part 7 notes
-
todo fill this out
## Part 8
### Part 8 video link
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment