Files
dodo-contractV2/contracts/intf/IFeeRateModel.sol

15 lines
238 B
Solidity
Raw Normal View History

2020-06-26 00:31:25 +08:00
/*
Copyright 2020 DODO ZOO.
SPDX-License-Identifier: Apache-2.0
*/
pragma solidity 0.6.9;
pragma experimental ABIEncoderV2;
2020-10-23 01:16:52 +08:00
interface IFeeRateModel {
function getFeeRate(uint256 amount) external view returns (uint256);
2020-06-26 00:31:25 +08:00
}