forked from DecentralizedClimateFoundation/DCIPs
8 lines
271 B
Solidity
8 lines
271 B
Solidity
|
// SPDX-License-Identifier: CC0-1.0
|
||
|
pragma solidity ^0.8.0;
|
||
|
|
||
|
interface IERC5496Cloneable {
|
||
|
event PrivilegeCloned(uint tokenId, uint privId, address from, address to);
|
||
|
function clonePrivilege(uint tokenId, uint privId, address referrer) external returns (bool);
|
||
|
}
|