// This contract is part of Zellic’s smart contract dataset, which is a collection of publicly available contract code gathered as of March 2023. | |
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
/** | |
* EIP-2981 | |
*/ | |
interface IEIP2981 { | |
/** | |
* bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a | |
* | |
* => 0x2a55205a = 0x2a55205a | |
*/ | |
function royaltyInfo(uint256 tokenId, uint256 value) external view returns (address, uint256); | |
} |