一个系列,多糖机

发布于 2025-01-30 05:10:04 字数 810 浏览 4 评论 0原文

我正在尝试创建999件的NFT集合。在这999件中,将为早期投资者保留23件(他们将获得自定义NFT)。因为没有办法造成特定的NFT(投资者NFT) - 建议我创建2台糖果机,一位将与Candy Machine UI连接的公众和一个私人,我将用来手动磨碎所有投资者NFTS和AIRDROP 。

我设置了这样的文件夹
./ public -assets/ - 公共机器的NFTS
./ private -assets/ - 专用机器的NFTS
./ public -config.json - 公共机器的配置
./ private-config.json - 私人机器的配置

现在,从理论上讲,公共资产目录将包含976个资产,而私人资产目录将包含23个NFT,配置将与该数字匹配。

我对此方法有许多问题:

  1. 我有重复的NFT号码,例如“ Collection Name#0”(public Mint)“ = ” Collection name#0”(私有Mint) - 即使NFTS
  2. 在Minting Platform上剩余的项目的总数不同,UI是999-23 //我通过修改Candy Machine UI来连接到私人机器并获取其余物品的数量来解决的,但我却得到了剩余的项目数量 - 但是我不知道
  3. NFT是否有一种更好的方式,即使附加到每个资产的元数据都有相同的收藏名称,而家族也

有更好的方法吗?那么,它如何解决我面临的所有问题?

I'm trying to create a NFT collection of 999 pieces. Out of this 999 pieces 23 will be reserved for early investors (they will receive a custom NFT). Because there is no way to mint a specific NFT (investor NFT) - I was advised to create 2 candy machines, one public which will be connected to the Candy Machine UI and one private which I will use to mint all investor NFTs and airdrop manually.

I set up the folder like this

./public-assets/ - NFTs for the Public Machine

./private-assets/ - NFTs for the Private Machine

./public-config.json - Configuration for the Public Machine

./private-config.json - Configuration for the Private Machine

Now in theory the public-assets directory will contain 976 assets and the private-assets directory will contain 23 NFTs and configurations will match that number.

I have a number of issues regarding this approach:

  1. I have duplicate NFT numbers e.g. "Collection Name #0" (public mint)" = "Collection Name #0" (private mint) - even though the NFTs are different
  2. Total number of items remaining on minting platform UI is 999 - 23 // this one I solved by modifying the candy machine UI to connect to the private machine and get the number of remaining items - but I don't know if there is a better way
  3. The NFTs do not seem to be part of the same collection, even though the metadata attached to every asset has the same collection name and family

Would there be a better approach to this problem? And if so how can it solve all the issues I'm facing? TMy first stack overflow post, sorry if didn't provide enough details.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

往事风中埋 2025-02-06 05:10:04

重复的NFT数字意味着您没有更改用于以后的数字开始增量的脚本/艺术引擎以补偿已经采用的数字。默认情况下,哈希和其他引擎从#0开始其生成收藏。

理想情况下,您希望收集1在#0-#976中具有元数据,然后收集#978-#999的Collection 2 Metadata。

链数据,以循环并调整文件收集名称,或者是手动进行的,因为它仅为23。

您可以使用快速PY或JS脚本(或Langauge或您的选择)轻松地修改Collection 2生成的 通过将Collection 2的元数据集合地址更新与收藏1相同的新糖果和铸造,可以将它们合并到较大的集合中。然后将所有内容分组在同一集合下。

更新Solana NFT的元数据的主要工具之一是Metaboss。
https://metaboss.rs

在前端计数器中,如果有效,它可以工作:p

您所做的事情要小心是新的机器人税。例如,如果第二个较小的Candymachine不售罄,但是前端的UI仍然说990/999此时成功尝试铸造的任何人都会被征税0.01 SOL,因为实质上是公共机器,但私人机器已售罄,但私人机器将剩下一些,但数字不能反映这一点。因此,需要确保您的UI逻辑已关注,并阻止人们在公共机器售罄时尝试薄荷。

The duplicate NFT numbers means you didn't change the script/art engine you used to start incrementing at a later number to compensate for numbers already taken. By default Hashlips and other engines start their generative collections at #0.

Ideally you wanted Collection 1 to have metadata from #0 - #976 and then collection 2 metadata from #978 - #999.

You can easily modify collection 2's generated off chain data with a quick py or JS script (or langauge or your choice) to loop through and adjust the file collection names, or do it manually since it's only 23.

Once collection 2 is reuploaded to a new candymachine and minted these can then be merged to the larger collection by updating collection 2's metadata collection address to be the same as collection 1. This will then group everything under the same collection.

One of the major tools for updating Solana NFT's metadata is Metaboss.
https://metaboss.rs

In regards to the front end counter, if it works it works :P

What you do have to be careful with is the new bot tax. If for example the 2nd smaller candymachine doesn't sell out, but the UI on the front end still says 990/999 anyone who successfully attempts to mint at this point would be taxed 0.01 SOL because essentially the public machine is sold out but the private machine would have some remaining, but the numbers don't reflect this. So need to make sure your UI logic is onpoint and stops people from trying to mint when public machine does sell out.

终止放荡 2025-02-06 05:10:04
  1. 就必须在元数据生成 /重命名它们上,在元数据生成 /重命名上,或重命名它们
  2. 在创建Candy Machine是的,最好的方法是连接到私人机器,或者只是整个数字,
  3. 。您需要确保它们在链收集中都是相同的一部分。关闭链条中的收集名称和家庭并不重要。
    为了实现这一目标,您可以
  • 正常创建第一台糖果机。这将创建一个新的集合,
  • 使用此集合在第二个计算机上载入-m< collection>的薄荷。这将自动使该系列的铸造NFT部分成为一部分。
  1. you will have to take care of that on metadata generation / rename them before creating the candy machine
  2. yes, best method is to either connect to the private machine, too or just hardcode the whole number.
  3. You need to make sure that they are all part of the same on chain collection. The collection name and family in the off chain JSON does not matter for that.
    To achieve that you can for example
  • create the first candy machine as normal. This will create a new collection
  • use this collection mint on upload of the second machine with -m <collection>. This will automatically make the minted NFTs part of that collection.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文