split mint money metaplex



我是区块链技术的新手,我对使用metaplex将薄荷钱分成多个钱包有一定的问题

我想知道是否有可能有一些钱包将获得主要销售(薄荷)的百分比,但不会获得任何版税?如果可能的话,怎么做呢?(Json属性在元数据?)

这是我的json元数据:

{
"name": "name",
"symbol": "symbol",
"description": "Collection of 2 NFTS on the blockchain. this is the number 1 out of 2.",
"seller_fee_basis_points": 500, // Here only public key 1 gets the royalties 
"image": "1.png",
"attributes": [
{"trait_type:": "Background", "value": "Door"},
{"trait_type:": "Ninja", "value": "Red"}
],
"properties": {
"creators": [
{"address": "public key 1", "share": 50},
{"address": "public key 2", "share": 50}

],
"files": [{"uri": "1.png", "type": "image/png"}]
},
"collection": {"name": "Lavish Fighters", "family": "Rare"}
}

我知道我们不能在Json中注释只是为了让它更容易理解

元数据json字段的创建者在新标准中是不赞成的。此外,这些创作者只是为了二级市场的版税分成。

你可以看看Hydra,它是一个钱包的钱包,可以在不同的钱包之间分配薄荷资金。这是一个可以在主网上工作的Hydra-UI。

最新更新