2020-11-24 17:25:10 +08:00
|
|
|
/*
|
|
|
|
|
|
|
|
|
|
Copyright 2020 DODO ZOO.
|
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
pragma solidity 0.6.9;
|
|
|
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
|
|
|
|
|
|
interface IDPPAdmin {
|
2020-11-26 13:35:22 +08:00
|
|
|
function init(address owner, address dpp,address operator, address dodoSmartApprove) external;
|
2020-11-24 17:25:10 +08:00
|
|
|
}
|