[Ethereum] NFT royalties with solidity smart contracts

nftsolidity

I hope you are all well.
Do you know how NFT royalties work with solidity smart contracts??
Or do you know a tutorial about it?

Thank you

Take care

Pierre

Best Answer

The simplest way is to send extra fees to the artist when an NFT is traded. A quick search on GitHub would give you many examples. For example, here is a smart contract template to support NFTs whereby the artist gets a royalty from all future transactions of the NFT.

Disclaimer: I am not the author of the code mentioned above. I'm mentioning it here for educational purpose only.

Related Topic