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

14 lines
314 B
Solidity
Raw Normal View History

2020-11-09 14:26:38 +08:00
/*
Copyright 2020 DODO ZOO.
SPDX-License-Identifier: Apache-2.0
*/
pragma solidity 0.6.9;
pragma experimental ABIEncoderV2;
interface ISmartApprove {
2020-11-23 22:33:23 +08:00
function claimTokens(address token,address who,address dest,uint256 amount) external;
2020-11-22 18:20:09 +08:00
function getSmartSwap() external view returns (address);
2020-11-09 14:26:38 +08:00
}