|
| 1 | +/* |
| 2 | + Copyright 2022 Set Labs Inc. |
| 3 | +
|
| 4 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + you may not use this file except in compliance with the License. |
| 6 | + You may obtain a copy of the License at |
| 7 | +
|
| 8 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +
|
| 10 | + Unless required by applicable law or agreed to in writing, software |
| 11 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + See the License for the specific language governing permissions and |
| 14 | + limitations under the License. |
| 15 | +
|
| 16 | + SPDX-License-Identifier: Apache License, Version 2.0 |
| 17 | +*/ |
| 18 | +pragma solidity 0.6.10; |
| 19 | + |
| 20 | +import { ISetToken } from "./ISetToken.sol"; |
| 21 | + |
| 22 | +/** |
| 23 | + * @title IIssuanceModule |
| 24 | + * @author Set Protocol |
| 25 | + * |
| 26 | + * Interface for interacting with Issuance module interface. |
| 27 | + */ |
| 28 | +interface IIssuanceModule { |
| 29 | + function updateIssueFee(ISetToken _setToken, uint256 _newIssueFee) external; |
| 30 | + function updateRedeemFee(ISetToken _setToken, uint256 _newRedeemFee) external; |
| 31 | + function updateFeeRecipient(ISetToken _setToken, address _newRedeemFee) external; |
| 32 | + |
| 33 | + function initialize( |
| 34 | + ISetToken _setToken, |
| 35 | + uint256 _maxManagerFee, |
| 36 | + uint256 _managerIssueFee, |
| 37 | + uint256 _managerRedeemFee, |
| 38 | + address _feeRecipient, |
| 39 | + address _managerIssuanceHook |
| 40 | + ) external; |
| 41 | +} |
0 commit comments