For the complete documentation index, see llms.txt. This page is also available as Markdown.

IPauser

// SPDX-License-Identifier: Unlicense
pragma solidity 0.8.17;

interface IPauser {
    event Paused(address sender);

    function pause() external;

    event Unpaused(address sender);

    function unpause() external;
}

Last updated