Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ETH: Solidity #339

Open
3 tasks done
Tracked by #337
hhstore opened this issue Jan 30, 2022 · 6 comments
Open
3 tasks done
Tracked by #337

ETH: Solidity #339

hhstore opened this issue Jan 30, 2022 · 6 comments

Comments

@hhstore
Copy link
Owner

hhstore commented Jan 30, 2022

related:

@hhstore
Copy link
Owner Author

hhstore commented Jan 30, 2022

Solidity 核心语法点:

  • Solidity 本身并不复杂, 类似 JS 的语法规则.
  • 只需要注意几个语法点.

构造函数:

函数重写(Overriding)

  • https://learnblockchain.cn/docs/solidity/contracts.html#overriding
  • 如果函数没有标记为 virtual , 那么派生合约将不能更改函数的行为(即不能重写)。
  • private 的函数是不可以标记为 virtual 的
  • 除接口之外(因为接口会自动作为 virtual ),没有实现的函数必须标记为 virtual
父合约标记为 virtual 函数可以在继承合约里重写(overridden)以更改他们的行为。重写的函数需要使用关键字 override 修饰。

重写函数只能将覆盖函数的可见性从 external 更改为 public 

可变性可以按照以下顺序更改为更严格的一种: nonpayable 可以被 view  pure 覆盖。 view 可以被 pure 覆盖。 payable 是一个例外,不能更改为任何其他可变性。


对于多重继承,如果有多个父合约有相同定义的函数, override 关键字后必须指定所有父合约名。


如果函数没有标记为 virtual  那么派生合约将不能更改函数的行为(即不能重写)。

fallback:

@hhstore
Copy link
Owner Author

hhstore commented Jan 30, 2022

View 视图函数:

events:

cheatsheet:

全局变量:

函数可见性:

image

@hhstore
Copy link
Owner Author

hhstore commented Jan 30, 2022

基本用例:

withdraw:

合约编写漏洞:

重入攻击:

tx-origin:

@hhstore
Copy link
Owner Author

hhstore commented Jan 30, 2022

1

2 similar comments
@hhstore
Copy link
Owner Author

hhstore commented Jan 30, 2022

1

@hhstore
Copy link
Owner Author

hhstore commented Jan 30, 2022

1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant