// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity ^0.8.16; /// @dev Core dependencies. import {BadgerHook} from "../BadgerHook.sol"; abstract contract BadgerMintHook is BadgerHook { /// @dev The schema used for the execute method. string public constant override EXECUTE_SCHEMA = "address,address,uint256,uint256,bytes"; }