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

24 lines
410 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);
function _STAKE_VAULT_() external view returns(address);
}