简体   繁体   English

了解NFT erc721二次交易的销售手续费

[英]Understanding the sales fee for NFT erc721 secondary transaction

I am developing a solidity contract to upload Ethereum-based erc721 NFT to opensea.我正在开发一个 solidity 合约,将基于以太坊的 erc721 NFT 上传到 opensea。 As a result, there is a way to create a collection in opensea and charge a secondary fee.于是就有了在opensea创建集合,收取二次费用的方法。 Also, I know that there is a way to configure eip-2981 by combining it with erc721.另外,我知道有一种方法可以通过将 eip-2981 与 erc721 结合来配置它。 I am trying to minting using erc721A and minting to buyers through the minting page.我正在尝试使用 erc721A 铸造并通过铸造页面铸造给买家。 Do I have to write a contract with eip-2981 because OpenC is not making a collection?我是否必须与 eip-2981 签订合同,因为 OpenC 不进行收集? Even after reading articles on the web, I don't quite understand which method to use and why.甚至看了web上的文章,也不是很明白应该用什么方法,为什么。 I wish someone could sort it out.我希望有人能解决这个问题。

Your collection will not show up on OS until at least 1 NFT has been minted.在至少铸造 1 个 NFT 之前,您的收藏不会显示在操作系统上。 I would recommend testing this out on their test site using the Rinkeby.network.我建议使用 Rinkeby.network 在他们的测试站点上对此进行测试。 Also to answer your main question, secondary sales goes something like this:另外为了回答你的主要问题,二次销售是这样的:

You as the collection owner can choose how much of a fee you would like to charge up to 10%.作为馆藏所有者,您可以选择收取多少费用,最高可达 10%。 You must also know that OS takes 2.5% off the top of any sale regardless as well.您还必须知道,无论如何,操作系统都会从任何销售的最高价中扣除 2.5%。 So say someone wanted to sell their NFT for 1 ETH, and the collection royalty was set to 10%.假设有人想以 1 ETH 的价格出售他们的 NFT,并且收取的版税设置为 10%。 When that NFT sells, the collection owner would get 0.1 ETH and OS would take 0.025 ETH.当 NFT 出售时,收藏所有者将获得 0.1 ETH,而 OS 将获得 0.025 ETH。 The total royalties collected would be 0.125 and the seller would receive 0.875 ETH.收取的总特许权使用费为 0.125,卖方将收到 0.875 ETH。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM