Scikit Web

Solana NFT Create Collection - 솔라나 NFT Collection 생성 본문

NFT/Solana(솔라나)

Solana NFT Create Collection - 솔라나 NFT Collection 생성

Keun0 2022. 6. 20. 21:16
728x90
반응형

https://docs.metaplex.com/programs/token-metadata/certified-collections

 

솔라나 NFT Collection을 생성하는 방법 중

 

공식적으로 제공하는 방법인 collections.metaplex.com 을 이용하는 예제 이다.

 

Collection의 경우 아래와 같이 json obejct 에 collection 정보를 넣는 방법이었는데. on-chain 이 가능한 방법이 더 좋다고 설명하고 있다

 

{
  "name": "Number #0001",
  "symbol": "NB",
  "description": "Collection of 10 numbers on the blockchain. This is the number 1/10.",
  "seller_fee_basis_points": 500,
  "image": "0.png",
  "attributes": [
    { "trait_type": "Layer-1", "value": "0" },
    { "trait_type": "Layer-2", "value": "0" },
    { "trait_type": "Layer-3", "value": "0" },
    { "trait_type": "Layer-4", "value": "1" }
  ],
  "properties": {
    "creators": [
      { "address": "N4f6zftYsuu4yT7icsjLwh4i6pB1zvvKbseHj2NmSQw", "share": 100 }
    ],
    "files": [{ "uri": "0.png", "type": "image/png" }]
  },
  "collection": { "name": "numbers", "family": "numbers" }
}

 

https://drive.google.com/file/d/1VU4xL_yF6LCe0UogVn4As5PMAzUV__8C/view

 

verified-collections.mp4

 

drive.google.com

 

728x90
반응형
Comments