Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 813 Bytes

OZ Pausable.md

File metadata and controls

24 lines (21 loc) · 813 Bytes

OpenZeppelin Pausable: provides an emergency stop mechanism using functions pause and unpause that can be triggered by an authorized account.

This module is used through inheritance.

It will make available the modifiers whenNotPaused and whenPaused, which can be applied to the functions of your contract.

Only the functions using the modifiers will be affected when the contract is paused or unpaused.


Slide Screenshot

156.jpg


Slide Text

  • Guarded Launch
    • Emergency -> Remediate
  • pause() & unpause()
    • Authorized Access
  • Modifiers: whenPaused & whenNotPaused
  • Vulnerability or Exploit Circuit-breaker

References


Tags