Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/iamakkkhil/solidity-tutorials


https://github.com/iamakkkhil/solidity-tutorials

Last synced: 4 days ago
JSON representation

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.