dodomine v2

This commit is contained in:
owen05
2021-03-24 18:08:20 +08:00
parent 08a0660960
commit 078fb40f1f
10 changed files with 451 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
/*
Copyright 2020 DODO ZOO.
SPDX-License-Identifier: Apache-2.0
*/
pragma solidity 0.6.9;
interface IDODOApproveProxy {
function isAllowedProxy(address _proxy) external view returns (bool);
function claimTokens(address token,address who,address dest,uint256 amount) external;
}