22 lines
696 B
Markdown
22 lines
696 B
Markdown
---
|
||
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)
|