16 lines
906 B
Solidity
16 lines
906 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, William Entriken (@fulldecent), Dieter Shirley dete@axiomzen.co, Jacob Evans jacob@dekz.net, Nastassia Sachs nastassia.sachs@protonmail.com
|
||
|
// The proposal source used as reference was a Markdown file with the following digests:
|
||
|
// - sha256:f25b41ad1bff14ec57e8c247f2ecf372fd86245d08ba3cbd005c21a42744a7ca
|
||
|
// - swarmhash:cf43d96b21b0b017ae32fb2ac8df9268f13344d9fd20aa1d959453eaf379a51b
|
||
|
interface IERC721Enumerable {
|
||
|
function totalSupply() external view returns (uint256);
|
||
|
function tokenByIndex(uint256 _index) external view returns (uint256);
|
||
|
function tokenOfOwnerByIndex(address _owner, uint256 _index) external view returns (uint256);
|
||
|
}
|