TransactionSEALED

#^█▪$╳!▓?▪●~■╲*■▪!▫╲●*▪#╱^$&╲%□╲@░~~%●?@▒*~&~▪%%◇#■@●╲%~▒*~╱■╳@!

Transaction ID

Timestamp

Aug 20, 2024, 06:30:44 PM UTC
1y ago

Block Height

84,965,384

Computation

0

Proposerseq:0 key:0

Authorizers

1

Transaction Summary

Contract Call

Called NonFungibleToken, RogueBunnies_NFT

Script Arguments

0seriesIdUInt32
1
1setIdUInt32
81
2maxEditionsUInt32
23
3ipfsMetadataHashes{UInt32
{}
4metadata{String
{
  "name": "1003 Audra Lynn Rare Sexy",
  "description": "Audra Lynn Miss October 2003 Sexy Shot Rare Level",
  "image": "https://media.gigantik.io/roguebunnies/ff993b4c5dd5e4e308f61764e2382bc5",
  "preview": "https://media.gigantik.io/roguebunnies/c2d73a4e1186c9655ddd3f84cadf78ca",
  "additional_images": "[\"https://media.gigantik.io/roguebunnies/qmy6n1hltnuxqbqkzwpgyms31bs71scycso3nyguwh6vrw\"]",
  "ipfs_image": "https://ipfs.io/ipfs/QmWPUhsue6rvQpcGCPpDUbEZYk6bwMrtGw1Dw8wCqhZswA",
  "ipfs_preview": "https://ipfs.io/ipfs/QmZoxFZP2KH8CYA9uT3jXbUpZyofYfNsxErYuK5QEesbQd",
  "ipfs_additional_images": "[\"https://ipfs.io/ipfs/QmY6n1HLtnuxQbqkZWPgyms31bS71scYCSo3NyguwH6VRw\"]",
  "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": "4b16effe91da37dced706ff840165b1c91bde818373e994fde8662fd42aab57e",
  "ipfs_image_hash": "QmWPUhsue6rvQpcGCPpDUbEZYk6bwMrtGw1Dw8wCqhZswA",
  "image_file_type": "mp4",
  "collector_points": "60",
  "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": "Sexy",
  "Style": "Sexy"
}

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  }