我正在使用Metaplex店面进行测试。我已经为我的拍卖页面添加了两个白色钱包,通过管理页面(其中一个白色钱包是我用来初始化页面)。我做了一个测试拍卖与这个nft(https://explorer.solana.com/address/E7Hmkff1kPiYMJdFbLxRe9vp5Ba9cEuwntwxFusddCb5?cluster=devnet),有两个创造者,50-50分裂和NFT被验证,但当拍卖结束时,只有拍卖开始钱包收到了全部的钱。这是tx:https://explorer.solana.com/address/E7Hmkff1kPiYMJdFbLxRe9vp5Ba9cEuwntwxFusddCb5?cluster=devnet
拍卖:https://jester91.github.io/metaplex#/auction/3S8sAb1vMxjF9F54WYEbpX8hnvhCzgNbk5j7Z3d87KJP
发布于 2022-07-09 18:09:24
creator数组适用于二级销售(例如市场),将在二级销售中获得的版税百分比与创建者数组地址平分。
例如,您的NFT有4%的卖方费用,您的创建者数组份额设置为50-50,然后每个创建者将从该NFT获得任何二级销售资金的2%。
That Metadata Account holds a lot of valuable information that can be used throughout the ecosystem. For instance, it maintains a list of creators for the token. Each creator has a Verified attribute that, when True, guarantees the token was signed by that creator. Each creator also has a Share attribute that can be used by marketplaces to distribute royalties. (来自正式的元工文档)
https://stackoverflow.com/questions/72923295
复制相似问题