chiru-labs / ERC721A

https://ERC721A.org
MIT License
2.5k stars 840 forks source link

How can i add royaltyInfo? #473

Open sayedex opened 1 year ago

sayedex commented 1 year ago

function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view virtual returns (address receiver, uint256 royaltyAmount) { return (royaltyForwarder, calculateRoyalty(_salePrice)); } like this?

Vectorized commented 1 year ago

Yes.