Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xdpcs/solidity-learning
Solidity 学习笔记
https://github.com/xdpcs/solidity-learning
blockchain ethereum ethereum-contract smart-contracts solidity solidity-contracts
Last synced: 13 days ago
JSON representation
Solidity 学习笔记
- Host: GitHub
- URL: https://github.com/xdpcs/solidity-learning
- Owner: XdpCs
- License: mit
- Created: 2022-07-05T06:02:04.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-08T05:55:55.000Z (6 months ago)
- Last Synced: 2024-10-04T12:57:40.657Z (about 1 month ago)
- Topics: blockchain, ethereum, ethereum-contract, smart-contracts, solidity, solidity-contracts
- Language: Solidity
- Homepage: https://xdpcs.github.io/Solidity-Learning/
- Size: 1.11 MB
- Stars: 25
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Solidity Learning
![GitHub watchers](https://img.shields.io/github/watchers/XdpCs/solidity-learning?style=social)
![GitHub stars](https://img.shields.io/github/stars/XdpCs/solidity-learning?style=social)
![GitHub forks](https://img.shields.io/github/forks/XdpCs/solidity-learning?style=social)
![GitHub last commit](https://img.shields.io/github/last-commit/XdpCs/solidity-learning?style=flat-square)
![GitHub repo size](https://img.shields.io/github/repo-size/XdpCs/solidity-learning?style=flat-square)
![GitHub license](https://img.shields.io/github/license/XdpCs/solidity-learning?style=flat-square)## Solidity 笔记
### 基础知识
* **000-序言** :[文章](./Solidity/000.Preface/README.md)
* **001-你好,世界**:[代码](https://github.com/XdpCs/Solidity-Learning/tree/master/Solidity/001.HelloWorld/HelloWorld.sol) [文章](./Solidity/001.HelloWorld/README.md)
* **002-第一个App**:[代码](https://github.com/XdpCs/Solidity-Learning/tree/master/Solidity/002.FirstApp/Counter.sol) [文章](./Solidity/002.FirstApp/README.md)
* **003-值类型**:[代码](https://github.com/XdpCs/Solidity-Learning/tree/master/Solidity/003.ValueType/ValueType.sol) [文章](./Solidity/003.ValueType/README.md)
* **004-变量**:[代码](https://github.com/XdpCs/Solidity-Learning/tree/master/Solidity/004.Variables/Variables.sol) [文章](./Solidity/004.Variables/README.md)
* **005-常量**:[代码](https://github.com/XdpCs/Solidity-Learning/tree/master/Solidity/005.Constants/Constants.sol) [文章](./Solidity/005.Constants/README.md)
* **006-不可变变量**:[代码](https://github.com/XdpCs/Solidity-Learning/tree/master/Solidity/006.Immutable/Immutable.sol) [文章](./Solidity/006.Immutable/README.md)
* **007-以太币单位**:[代码](https://github.com/XdpCs/Solidity-Learning/tree/master/Solidity/007.EtherUnits/EtherUnits.sol) [文章](./Solidity/007.EtherUnits/README.md)
* **008-时间单位**:[代码](https://github.com/XdpCs/Solidity-Learning/tree/master/Solidity/008.TimeUnits/TimeUnits.sol) [文章](./Solidity/008.TimeUnits/README.md)
* **009-Gas和Gas价格**:[代码](https://github.com/XdpCs/Solidity-Learning/tree/master/Solidity/009.GasAndGasPrice/GasAndGasPrice.sol) [文章](./Solidity/009.GasAndGasPrice/README.md)
* **010-映射(Mapping)**:[代码](https://github.com/XdpCs/Solidity-Learning/tree/master/Solidity/010.Mapping/Mapping.sol) [文章](./Solidity/010.Mapping/README.md)
* **011-结构体(Struct)**:[代码](https://github.com/XdpCs/Solidity-Learning/tree/master/Solidity/011.Structs/Todos.sol) [文章](./Solidity/011.Structs/README.md)### 工具
* **001-Alchemy** :[文章](./Tools/001.Alchemy/README.md)
## 参考资料
* [Solidity官方文档](https://docs.soliditylang.org/zh/v0.8.20/)
* [WTF-Solidity](https://github.com/AmazingAng/WTF-Solidity)
* [OpenzeppelinContracts](https://github.com/OpenZeppelin/openzeppelin-contracts)
* [Solidity By Example](https://solidity-by-example.org/)