Pages of the Eternal Story are lore-based items that will be upgradable into a collectable NFT.
interface IEternalStory {
event ApprovalForAll(address indexed account, address indexed operator, bool approved);
event TransferBatch(address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values);
event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);
event URI(string value, uint256 indexed id);
function balanceOf(address account, uint256 id) view returns (uint256);
function balanceOfBatch(address[] accounts, uint256[] ids) view returns (uint256[]);
function burn(address account, uint256 id, uint256 value);
function burnBatch(address account, uint256[] ids, uint256[] values);
function decimals() view returns (uint8);
function isApprovedForAll(address account, address operator) view returns (bool);
function name() view returns (string);
function paused() view returns (bool);
function safeBatchTransferFrom(address from, address to, uint256[] ids, uint256[] amounts, bytes data);
function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes data);
function setApprovalForAll(address operator, bool approved);
function symbol() view returns (string);
function uri(uint256) view returns (string);
}
These contracts have been deprecated and should not be used. They are listed here for data analysis and tracking purposes only.