Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 422 Bytes

avoiding_common_attacks.md

File metadata and controls

13 lines (7 loc) · 422 Bytes

Contract security measures

SWC-103 (Floating pragma)

Specific compiler pragma >=0.4.22 <0.9.0 used in contracts to avoid accidental bug inclusion through outdated compiler versions.

Modifiers used only for validation

All modifiers in contract(s) only validate data with require statements.

Pull over push

All functions that modify state are based on receiving calls rather than making contract calls.