OrdinalsWalletでcollectionを作る方法

NFT記事
この記事は約4分で読めます。

参考

【初心者用】Ordinals Walletへコレクション掲載依頼を出す方法|Genta|NFTで遊びを創るエンジニア
オトさん(@otograf_jp)からご相談いただき、Ordinals Walletへコレクションの掲載をお手伝いさせていただきました。 Ordinals Wallet Ordinals Wallet ordinalswallet.com ...

GitHubのアカウントを作る

GitHub: Let’s build from here
GitHub is where over 100 million developers shape the future of software, together. Contribute to the open source commun...

GitHub-Forkを作成

GitHubで公開されているOrdinalsWalletのプロジェクト( https://github.com/ordinals-wallet/ordinals-collections )にアクセスする

“Fork”の隣にある”▼”を押下

“Create a new fork”を押下

“Repository name”にコレクション名を記入
※スペース不可
✅”Copy the main branch only”

Create fork “を押下

GitHub-作成したForkに自分のコレクションを追加

“collections”を押下

①押下 → ②”Create new file”押下

コレクション名を入力
※半角小文字英語、数字のみ
※記号空白不可 ex. ×:”pixel obaca” 〇:”pixel-obaca”

最後にスラッシュ“/”を入力する
ex. ordinals-collections/collections/pixel-obaca/

GitHub-コレクションにファイルを追加

必要ファイル 2点
・meta.json
・inscriptions.json

meta.jsonの作成

上記に引き続き”meta.json”と入力

“Edit new file”と記載されているところに以下を入力

{
  "name": "", 
  "inscription_icon": "", 
  "supply": "", 
  "slug": "", 
  "description": "", 
  "twitter_link": "", 
  "discord_link": "",
  "website_link": "" 
}
pixel obacaのコード

“slug”はコレクション名と同じにする
※半角小文字英、数字、ハイフンのみ

入力が完了したらスクロールし”Commit new file”のフォームに”Create new file”など編集内容を記入
→記入なしだと申請が通らない場合がある

“Commit dilectly the main branch.”を選択

Commit new file “を押下

inscription.jsonの作成

①を押下 → ②Create new file を押下

コレクションに追加する inscription ID・nameを記入する

pixel obacaのコード

[
  {
    "id": "",
    "meta": {
      "name": ""
    }
  }
]

2作品以上追加する場合

[
  {
    "id": "",
    "meta": {
      "name": ""
    }
  },
  {
    "id": "",
    "meta": {
      "name": ""
    }
  },
  {
    "id": "",
    "meta": {
      "name": ""
    }
  }
]

入力が完了したらスクロールし”Commit new file”のフォームに”Create new file”など編集内容を記入
→記入なしだと申請が通らない場合がある

“Commit dilectly the main branch.”を選択

Commit new file “を押下

inscriptionID確認方法

ordinals walletの場合
Magic Edenの場合

GitHub-コレクションの申請

https://github.com/ordinals-wallet/ordinals-collections へ戻る

“Pull request”を押下

New pull requesut “を押下

①”compare across forks.” → ② → ③”ordinals-wallet/ordinals-collections”の順に押下

Create pull request ” を押下

更に” Create pull request “を押下

以上で完成です

作品追加のやり方

commmingsoon

タイトルとURLをコピーしました