This commit is contained in:
mingda
2020-11-05 00:26:45 +08:00
parent 2c27386c34
commit 4a7c5a546d
17 changed files with 366 additions and 234 deletions

View File

@@ -8,7 +8,6 @@
pragma solidity 0.6.9;
pragma experimental ABIEncoderV2;
interface IFeeRateModel {
function getFeeRate(uint256 amount) external view returns (uint256);
function getFeeRate(address trader, uint256 amount) external view returns (uint256);
}