Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iamakkkhil/solidity-tutorials
https://github.com/iamakkkhil/solidity-tutorials
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/iamakkkhil/solidity-tutorials
- Owner: iamakkkhil
- Created: 2021-12-10T14:27:17.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-10T14:34:24.000Z (about 3 years ago)
- Last Synced: 2024-03-17T05:53:48.579Z (11 months ago)
- Language: Solidity
- Size: 1.95 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Solidity-Tutorials
Solidity is a statically typed high level programming language.
## State Variables:
1. Variables declared in contract.
2. Declared variables are stored in blockchain, ie blocks.
3. Need to declare those variables carefully, as they are store in blocks they require gas and can be expensive.> View Keyword: when we want to only see the variable and don't want to edit it's value.