Files
dodo-contractV2/contracts/GeneralizedFragment/intf/IFragment.sol

28 lines
481 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 IFragment {
function init(
address dvm,
address vaultPreOwner,
address collateralVault,
uint256 totalSupply,
uint256 ownerRatio,
2021-04-08 00:31:25 +08:00
uint256 buyoutTimestamp
2021-04-04 01:05:08 +08:00
) external;
function buyout(address newVaultOwner) external;
function redeem(address to) external;
function _QUOTE_() external view returns (address);
}