TransactionSEALED
▪╱~◇$◆■@○*▫*&░%!▓□▒*□*□●░#○□○█◆░^□○▒◇╲▪@▒╳◆%○▓*╳◇&█░▪╳╳▫*?~▓╲#?◇
Transaction ID
Transaction Summary
Contract CallCalled NonFungibleToken, RogueBunnies_NFT
Contracts
Script Arguments
0seriesIdUInt32
1
1setIdUInt32
85
2maxEditionsUInt32
76
3ipfsMetadataHashes{UInt32
{}4metadata{String
{
"name": "1003 Audra Lynn Uncommon Lip Print",
"description": "Audra Lynn Miss October 2003 Signature and Lip Print Uncommon Level",
"image": "https://media.gigantik.io/roguebunnies/3f2a9e38e0e8788c3e13f3663c5c5a5a",
"preview": "https://media.gigantik.io/roguebunnies/86373893562e36e301dddadb282be0b7",
"additional_images": "[]",
"ipfs_image": "https://ipfs.io/ipfs/Qme3kxua9qD9iL77CWkg4ecqrpfSspEsZpSD2e4ptPBdQJ",
"ipfs_preview": "https://ipfs.io/ipfs/QmXvJfBStxwRG1GiPFkt9gbkCKn3TWStL3PGKGaXHTRAbt",
"ipfs_additional_images": "[]",
"collection_name": "Rogue Bunnies",
"collection_description": "100 Bunnies with big plans have come together to shape their own destiny. No longer conforming, they are said to have gone \"rogue\". What that really means is taking control and launching the most bad ass women led project to date. Combining digitally hand painted art with the creative flare you would expect from this talented crew. The Rogue Bunnies NFTs are your entry point to an exclusive VIP community in the metaverse!",
"external_url": "https://tradingcards.roguebunnies.com",
"external_token_base_url": "https://tradingcards.roguebunnies.com/tokens",
"sha256_image_hash": "30d78d71f8c5249328d8a8720474f336883498c15fa897b6ad3cb92f5339ebc7",
"ipfs_image_hash": "Qme3kxua9qD9iL77CWkg4ecqrpfSspEsZpSD2e4ptPBdQJ",
"image_file_type": "mp4",
"collector_points": "20",
"creator_url": "roguebunnies.com",
"creator_name": "Rogue Bunnies",
"royalty_cut_roguebunnies": ".09",
"royalty_rcv_roguebunnies": "GenericFTReceiver",
"royalty_addr_roguebunnies": "0x76f4d30b2b909722",
"royalty_desc_roguebunnies": "Rogue Bunnies Wallet",
"trait_Bunny": "1003 Audra Lynn",
"Bunny": "1003 Audra Lynn",
"trait_Style": "Lip Print",
"Style": "Lip Print"
}Cadence Script
1import NonFungibleToken from 0x1d7e57aa55817448
2import RogueBunnies_NFT from 0x396646f110afb2e6
3
4// This script uses the Admin resource to add a new Series
5// It must be run with the account that has the Admin resource
6// stored in /storage/RogueBunnies_NFTAdmin
7
8transaction(
9 seriesId: UInt32,
10 setId: UInt32,
11 maxEditions: UInt32,
12 ipfsMetadataHashes: {UInt32: String},
13 metadata: {String: String}) {
14
15 // local variable for storing the RogueBunnies_NFT admin reference
16 let admin: &RogueBunnies_NFT.Admin
17
18 prepare(signer: AuthAccount) {
19 // borrow a reference to the Admin resource in storage
20 self.admin = signer.borrow<&RogueBunnies_NFT.Admin>(from: RogueBunnies_NFT.AdminStoragePath)
21 ?? panic("Could not borrow a reference to the NFT Admin")
22 }
23 execute {
24 // borrow a reference to the Series
25 let series = self.admin.borrowSeries(seriesId: seriesId)
26
27 // Update Series Info
28 series.updateSetMetadata(
29 setId: setId,
30 maxEditions: maxEditions,
31 ipfsMetadataHashes: ipfsMetadataHashes,
32 metadata: metadata
33 )
34 }
35 }