简体   繁体   English

分裂薄荷钱元

[英]split mint money metaplex

I am new to blockchain technology and I have a certain issue with spliting into multiple wallet the mint money with metaplex我是区块链技术的新手,我对使用 metaplex 将薄荷钱分成多个钱包有一定的问题

I want to know if it is possible to have some wallets that will get a percentage of the primary sale (mint) but will not get any royalties ?我想知道是否有可能有一些钱包可以获得主要销售(薄荷)的一定百分比但不会获得任何版税? And if it is possible how to do it ?如果有可能怎么办? (Json attribute in the metadata ? ) (元数据中的 Json 属性?)

Here is my json metadata :这是我的 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"}

}

I do know we can't comment in Json it is just to make it more understandable我知道我们不能在 Json 中发表评论,这只是为了让它更容易理解

creators on the json field inside the metadata are deprecated on the newers standards.元数据内 json 字段的创建者在较新的标准中已被弃用。 Also those creators are just for secondary markets royalty share.这些创作者也只是为了二级市场的版税份额。

You can take a look at Hydra its a wallet of wallets that work to split mint funds between different wallets.你可以看看Hydra ,它是一个钱包钱包,用于在不同钱包之间分配铸币厂资金。 Here is a Hydra-UI that can work on mainnet.这是一个可以在主网上运行的 Hydra-UI

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

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