Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kushagrasarathe/learnweb3
https://github.com/kushagrasarathe/learnweb3
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kushagrasarathe/learnweb3
- Owner: kushagrasarathe
- Created: 2022-09-02T08:05:58.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-12T14:06:55.000Z (almost 2 years ago)
- Last Synced: 2024-04-12T20:23:03.591Z (7 months ago)
- Language: JavaScript
- Homepage: learnweb3-d0d222.spheron.app
- Size: 931 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Solidity Notes
## Declaring the license and solidity version:
```
// SPDX-License-Identifier: MITpragma solidity 0.8.7;
```## Data Types in Solidity
There are two types of data-types in solidity:
- Values: Data stored is a value, e.g, boolean, integers,
- References: Store reference to where the data is actually stored, e.g, arrays