axelar-gmp-sdk-solidity

Solidity API

IPausable

This contract provides a mechanism to halt the execution of specific functions if a pause condition is activated.

Paused

event Paused(address account)

Unpaused

event Unpaused(address account)

Pause

error Pause()

NotPaused

error NotPaused()

paused

function paused() external view returns (bool)

Check if the contract is paused

Return Values

Name Type Description
[0] bool paused A boolean representing the pause status. True if paused, false otherwise.