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
function owner() external view returns (address)Returns the address of the current owner.
Returns
_0
address
undefined
pause
function pause() external nonpayablePause the contract. Revert if already paused.
paused
function paused() external view returns (bool)Returns true if the contract is paused, and false otherwise.
Returns
_0
bool
undefined
renounceOwnership
function renounceOwnership() external nonpayableLeaves 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
function transferOwnership(address newOwner) external nonpayableTransfers ownership of the contract to a new account (newOwner). Can only be called by the current owner.
Parameters
newOwner
address
undefined
unpause
function unpause() external nonpayableUnpause the contract. Revert if already unpaused.
Events
OwnershipTransferred
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner)Parameters
previousOwner indexed
address
undefined
newOwner indexed
address
undefined
Paused
event Paused(address account)Parameters
account
address
undefined
Unpaused
event Unpaused(address account)Parameters
account
address
undefined
Last updated
Was this helpful?