14 lines
280 B
Solidity
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);
|
|
}
|