[JA] nft-fixed-supply

- add nft-fixed-supply to dactyl-config.yml
This commit is contained in:
develoQ
2023-03-02 15:08:32 +09:00
parent 4013650445
commit 2f32bba928
3 changed files with 31 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
---
html: nft-fixed-supply.html
parent: non-fungible-tokens.html
blurb: 新しいアカウントを使って一定数のNFTをミントし、そのアカウントをブラックホール化します。
labels:
- 非代替性トークン, NFT
---
# NFTの一定の供給量を保証する
プロジェクトによっては、発行アカウントから一定数以上のNFTがミントされないことを保証したい場合があります。
一定数のNFTを保証するためには、
1. 新しいアカウント、_発行者_ を作成し、資金を提供します。このアカウントは、コレクション内のトークンの発行者となります。[アカウントの作成](accounts.html#アカウントの作成)を参照してください。
1. `AccountSet`を使用して、自分の運用するウォレットを発行者の認可Minterとして割り当てます。[代理Mint](nftoken-authorized-minting.html)を参照してください。
1. 運用アカウントで`NFTokenMint`を使ってトークンをミントします。運用中のウォレットには、発行者のためにMintされたすべてのトークンが保管されます。[バッチMint](nftoken-batch-minting.html)を参照してください。
1. 発行者の認可Minterである自分の運用するウォレットを削除するために、`AccountSet`を使用します。
1. 発行者アカウントを"ブラックホール化"する。[マスターキーペアの無効化](disable-master-key-pair.html)を参照してください。
この時点で、発行者のアドレスを発行アカウントとする新たなトークンのミントは不可能となります。
**注意** 一度、アカウントを「ブラックホール化」すると、あなた自身を含め、誰も将来のNFTの販売に対するロイヤリティを受け取ることができなくなります。

View File

@@ -5,7 +5,6 @@ blurb: Use a new account to mint a fixed number of NFTs, then black hole the acc
labels:
- Non-fungible Tokens, NFTs
---
# Guaranteeing a Fixed Supply of NFTs
For some projects, you might want to guarantee that no more than a fixed number of NFTs are minted from an issuing account.
@@ -20,4 +19,4 @@ To guarantee a fixed number of NFTs:
At this point, it is impossible for any new tokens to be minted with the issuers address as the issuing account.
**Caution** Once you "blackhole" the account, no one, including you, receives transfer fees for future sales of the NFTs.
**Caution** Once you "blackhole" the account, no one, including you, receives transfer fees for future sales of the NFTs.