13 lines
258 B
Solidity
13 lines
258 B
Solidity
/*
|
|
|
|
Copyright 2020 DODO ZOO.
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
pragma solidity 0.6.9;
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
interface IDPPAdmin {
|
|
function init(address owner, address dpp,address operator, address dodoSmartApprove) external;
|
|
} |