반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 솔라나개발
- html5배경만들기
- html5popup
- 이중화
- NFT개발
- html5디자인예제
- html5웹디자인
- 웹예제
- html5포트폴리오예제
- 솔라나cookbook
- html5글자효과
- PostgresSQL
- grpc
- pgpool
- html5예제
- html5웹디자인예제
- NFT
- 서버
- solanaNFT
- 포트폴리오
- 솔라나
- html5기초예제
- 웹디자인예제
- nft예제
- 웹디자인
- HTML5
- NFT솔라나
- 솔라나NFT
- html5기초
- 포트폴리오예제
Archives
- Today
- Total
Scikit Web
Solana NFT Create Collection - 솔라나 NFT Collection 생성 본문
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
728x90
반응형
'NFT > Solana(솔라나)' 카테고리의 다른 글
Comments