Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kushagrasarathe/learnweb3


https://github.com/kushagrasarathe/learnweb3

Last synced: 10 days ago
JSON representation

Awesome Lists containing this project

README

        

# Solidity Notes

## Declaring the license and solidity version:

```
// SPDX-License-Identifier: MIT

pragma 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