Files
dodo-contractV2/contracts/intf/IFeeDistributor.sol
2021-07-02 17:19:09 +08:00

22 lines
348 B
Solidity

/*
Copyright 2020 DODO ZOO.
SPDX-License-Identifier: Apache-2.0
*/
pragma solidity 0.6.9;
interface IFeeDistributor {
function init(
address baseToken,
address quoteToken,
address stakeToken
) external;
function stake(address to) external;
function _STAKE_TOKEN_() external view returns(address);
}