Files
dodo-contractV2/contracts/NFTPool/intf/IControllerModel.sol

16 lines
376 B
Solidity
Raw Normal View History

2021-09-08 23:37:40 +08:00
/*
Copyright 2021 DODO ZOO.
SPDX-License-Identifier: Apache-2.0
*/
pragma solidity 0.6.9;
2021-09-09 15:53:53 +08:00
interface IControllerModel {
2021-09-09 22:38:19 +08:00
function getMintFee(address filterAdminAddr) external view returns (uint256);
2021-09-08 23:37:40 +08:00
2021-09-09 22:38:19 +08:00
function getBurnFee(address filterAdminAddr) external view returns (uint256);
2021-09-08 23:37:40 +08:00
2021-09-09 22:38:19 +08:00
function getEmergencySwitch(address filter) external view returns (bool);
2021-09-08 23:37:40 +08:00
}