Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 552 Bytes

File metadata and controls

29 lines (19 loc) · 552 Bytes

第5讲(數據儲存位置)

  1. storage: 儲存在鏈上
  2. memory: Stored in RAM
  3. calldata: Stored in RAM,且不能修改

Variable Scope

  1. State Variable: 存在鏈上,所有合約內函數都可以訪問

  2. Local Variable: Stored in RAM, 僅在函數內有效。

  3. Global Variable: 都是solidty預留關鍵字。在函數內不用聲明可以直接使用

單位

  1. 以太單位
  • wei: 1
  • gwei: 1000000000
  • ether: 1000000000000000000
  1. 時間單位
  • seconds: 1
  • minutes: 60
  • hours: 3600
  • days: 86400
  • weeks: 604800