OwnerPausableUpgradeable
OwnerPausable
An ownable contract allows the owner to pause and unpause the contract without a delay.
Only methods using the provided modifiers will be paused.
Methods
owner
Returns the address of the current owner.
Returns
_0
address
undefined
pause
Pause the contract. Revert if already paused.
paused
Returns true if the contract is paused, and false otherwise.
Returns
_0
bool
undefined
renounceOwnership
Leaves the contract without owner. It will not be possible to call onlyOwner
functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.
transferOwnership
Transfers ownership of the contract to a new account (newOwner
). Can only be called by the current owner.
Parameters
newOwner
address
undefined
unpause
Unpause the contract. Revert if already unpaused.
Events
OwnershipTransferred
Parameters
previousOwner indexed
address
undefined
newOwner indexed
address
undefined
Paused
Parameters
account
address
undefined
Unpaused
Parameters
account
address
undefined
Last updated