nftproxy&®ister&&fix
This commit is contained in:
28
contracts/GeneralizedFragment/intf/IFragment.sol
Normal file
28
contracts/GeneralizedFragment/intf/IFragment.sol
Normal file
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
|
||||
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,
|
||||
uint256 buyoutTimestamp,
|
||||
bool isOpenBuyout
|
||||
) external;
|
||||
|
||||
function buyout(address newVaultOwner) external;
|
||||
|
||||
function redeem(address to) external;
|
||||
|
||||
function _QUOTE_() external view returns (address);
|
||||
}
|
||||
Reference in New Issue
Block a user