Solidity代码规范(官方建议)

Style Guide

The goal of this guide is not to be the right way or the best way to write solidity code. 本指南的目标并不是编写稳定性代码的正确方法或最佳方法。

1. 在一个solidity源文件中,合约与合约(或库、接口等)空两行。
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.0 <0.9.0; contract A { // ... } contract B { // ... } contract C { // ... } 2. 在一个合约中,函数与函数之间空一行。 abstract 合约,未实现的函数体可不留白行。 // SPDX-License-Identifier: GPL-3

Solidity代码规范(官方建议)最先出现在Python成神之路

版权声明:
作者:倾城
链接:https://www.techfm.club/p/13192.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>