feat: v1.0.0 祀梦笔记:从 0 到 1 的数字化花园建设

This commit is contained in:
祀梦
2026-01-09 10:03:40 +08:00
commit a5fd8545f4
75 changed files with 15529 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
---
title: Solidity 学习笔记
description: 记录Solidity智能合约开发的学习心得和基础知识
createTime: 2025/09/28 19:39:00
permalink: /programming/solidity/
---
## Solidity 智能合约概述
Solidity 是一种用于编写智能合约的静态类型编程语言它运行在以太坊虚拟机EVM上。
## 推荐的资料
推荐的编辑器
Remix IDE[https://remix.ethereum.org/](https://remix.ethereum.org/)
有在线版本,也可以下载之后使用,而且可以通过 Docker 部署,很方便
Solidity 学习资料:
- [Solidity 官方文档](https://docs.soliditylang.org/zh-cn/latest/index.html)
- [cryptozombies](https://cryptozombies.io/zh/course)