NFT Tickets
NFT Registration Ticket
Ticket representation inside blockchain:
{
"ticket": {
"type": "nft-reg",
"nft_ticket": bytes, // NFT ticket (encoded with base64), see below
"version": integer, // version, 0 now
"signatures": object, // signatures, see below
"key1": string, // Unique key
"key2": string, // Second unique key
"creator_height": int, // Block height at which NFT Ticket was created
// it is used to check if the SN that created
// this ticket was indeed in the list of top 10 SN
// at the moment of registration
"total_copies": int, // Number of available copies in NFT
"royalty": float, // Royalty %
"royalty_address": string, // Address to pay royalty
"green": boolean, // Indicate whether there green payment
"storage_fee": int, // Registration fee, in PSL
}
}Where nft_ticket is base64 encoding of the following JSON, as a string:
nft_ticket is base64 encoding of the following JSON, as a string:Where app_ticket is ascii85 of the following JSON, as a string:
app_ticket is ascii85 of the following JSON, as a string:Dupe detection and fingerprints files and IDs
rq_ids files and IDs
And signatures are the following JSON object:
signatures are the following JSON object:NFT Activation Ticket
NFT Sell Ticket
NFT Buy Ticket
NFT Trade Ticket
Last updated
Was this helpful?