Files
SiMengWebSite_Notes/docs/notes/programming/solidity/README.md
2025-10-10 10:54:35 +08:00

22 lines
696 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
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)