鑄造 NFT
建立 NFT 但不立即鑄造
mutation {
assetCreate(
ticket: "TICKET"
contractId: "123"
input: {
metadata: {
name: "My First NFT"
description: "This is my first NFT"
externalLink: "https://myfirstnft.com"
backgroundColor: "#CCC"
animation: "" # or animationUrl
image: "" # or imageUrl
imageThumbnail: "" # or imageThumbnailUrl
traits: [
{
type: "Color"
value: "Blue"
displayType: "STRING"
}
]
}
saleData: {
currency: "TWD"
freeMintEnabled: false
maxOrderLimit: {
enabled: true
limit: 10
}
variants: [
{
maxQuantity: 1
supply: 100
price: "1000"
}
]
}
}
) {
id
createdAt
}
}直接鑄造(空投)
引導購買者至付款頁面
Last updated