Code has been added to clipboard!

Solidity Contract Structure Function Modifiers

Example
address public seller;

    modifier sellerOnly() { // Modifier itself
        require(msg.sender == seller);
        _;
    }

    function abort() sellerOnly { // Usage of modifier
        // ...
    }