forked from DecentralizedClimateFoundation/DCIPs
8 lines
139 B
Solidity
8 lines
139 B
Solidity
|
// SPDX-License-Identifier: CC0-1.0
|
||
|
|
||
|
pragma solidity >=0.5.0;
|
||
|
|
||
|
interface IInfluencer {
|
||
|
function isEnforcer(address sender) external;
|
||
|
}
|