Files
dodo-contractV2/contracts/intf/IDODOApprove.sol
owen05 97b3f4604d ing
2021-07-02 17:20:37 +08:00

14 lines
280 B
Solidity

/*
Copyright 2020 DODO ZOO.
SPDX-License-Identifier: Apache-2.0
*/
pragma solidity 0.6.9;
interface IDODOApprove {
function claimTokens(address token,address who,address dest,uint256 amount) external;
function getDODOProxy() external view returns (address);
}