15 lines
643 B
Solidity
15 lines
643 B
Solidity
|
pragma solidity >=0.6.12;
|
||
|
|
||
|
// Author: Louis Holbrook <dev@holbrook.no> 0826EDA1702D1E87C6E2875121D2E7BB88C2A746
|
||
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
// File-version: 2
|
||
|
|
||
|
// This is a representation of an officially approved Ethereum Improvement Proposal, Zainan Victor Zhou (@xinbenlv).
|
||
|
// The proposal source used as reference was a Markdown file with the following digests:
|
||
|
// - sha256:7e799dd22588f62c52c4886d7b523c12696441a6c2350b739562ea8fb5d60649
|
||
|
|
||
|
interface IERC5679Ext721 {
|
||
|
function safeMint(address _to, uint256 _id, bytes calldata _data) external;
|
||
|
function burn(address _from, uint256 _id, bytes calldata _data) external;
|
||
|
}
|