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

18 lines
338 B
Solidity

/*
Copyright 2020 DODO ZOO.
SPDX-License-Identifier: Apache-2.0
*/
pragma solidity 0.6.9;
interface ICollateralVault {
function _OWNER_() external returns (address);
function init(address owner, string memory name, string memory baseURI) external;
function directTransferOwnership(address newOwner) external;
}