Skip to main content

OwnerPausableUpgradeable

An ownable contract allows the owner to pause and unpause the contract without a delay.

Only methods using the provided modifiers will be paused.

Functions#

__OwnerPausable_init#

function __OwnerPausable_init(
) internal

pause#

function pause(
) external

Pause the contract. Revert if already paused.

unpause#

function unpause(
) external

Unpause the contract. Revert if already unpaused.