Files
dodo-contractV2/contracts/intf/IFeeDistributor.sol

24 lines
410 B
Solidity
Raw Normal View History

2021-04-04 01:05:08 +08:00
/*
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);
2021-04-12 00:53:59 +08:00
function _STAKE_VAULT_() external view returns(address);
2021-04-04 01:05:08 +08:00
}