IMirrorgateFeeLibrary.sol 410 B

1234567891011121314151617
  1. // SPDX-License-Identifier: BUSL-1.1
  2. pragma solidity ^0.7.6;
  3. pragma abicoder v2;
  4. import "../Pool.sol";
  5. interface IMirrorgateFeeLibrary {
  6. function getFees(
  7. uint256 _srcPoolId,
  8. uint256 _dstPoolId,
  9. uint16 _dstChainId,
  10. address _from,
  11. uint256 _amountSD
  12. ) external returns (Pool.SwapObj memory s);
  13. function getVersion() external view returns (string memory);
  14. }