TransactionSEALED

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

Transaction ID

Timestamp

Oct 17, 2025, 11:16:27 PM UTC
4mo ago

Block Height

129,798,209

Computation

0

Proposerseq:0 key:0

Authorizers

1

Transaction Summary

Contract Call

Called LNVCT, NonFungibleToken, MetadataViews

Script Arguments

0linkString
https://livevct.com/token/0665331d-8bb1-4825-aeed-da7b15a23ce7/1
1batchUInt32
79319695
2sequenceUInt16
1
3limitUInt16
1
4nameString
Pierce The Veil - I Can't Hear You World Tour | Oct 17 2025
5descriptionString
Live Nation Digital Ticket Stub for Pierce The Veil - I Can't Hear You World Tour at American Family Insurance Amphitheater - Summerfest Grounds, Milwaukee, WI on Friday, October 17 2025
6thumbnailString
https://cdn.live-nfts.com/web/files/608177d6e9b6cc37f94f3ef8/139d60f9-d0bd-4a4e-a43c-f1c0c983c5d1-face.png
7editionNumberUInt64
0
8metadata{String
{
  "ARTIST_NAMES": "Pierce The Veil|HEALTH|Ecca Vandal|Like Roses",
  "SERIAL_NUMBER": "BD6660B",
  "EVENT_TIME": "2025-10-17T23:30:00Z",
  "TICKET_ROW": "R",
  "TICKET_SEAT": "20",
  "TICKET_SEC": "203",
  "VENUE_LOCATION": "Milwaukee, Wisconsin",
  "VENUE_NAME": "American Family Insurance Amphitheater",
  "VENUE_TIMEZONE": "America/Chicago",
  "NUMBER": "1787"
}
9addressAddress

Cadence Script

1import LNVCT from 0x1e3c78c6d580273b
2                    import NonFungibleToken from 0x1d7e57aa55817448
3                    import MetadataViews from 0x1d7e57aa55817448
4                    
5                    
6                    transaction(link: String, batch: UInt32, sequence: UInt16, limit: UInt16, name:String, description:String,thumbnail:String,editionNumber: UInt64, metadata:{String:String},address:Address) {
7                        
8                        /// local variable for storing the minter reference
9                        let minter: &LNVCT.NFTMinter
10
11                        /// Reference to the receiver's collection
12                        let recipientCollectionRef: &{NonFungibleToken.Receiver}
13                        
14                        
15                        prepare(signer: auth(BorrowValue) &Account) {
16                            
17                            let collectionData = LNVCT.resolveContractView(resourceType: nil, viewType: Type<MetadataViews.NFTCollectionData>()) as! MetadataViews.NFTCollectionData?
18                            ?? panic("ViewResolver does not resolve NFTCollectionData view")
19            
20                            // borrow a reference to the NFTMinter resource in storage
21                            self.minter = signer.storage.borrow<&LNVCT.NFTMinter>(from: LNVCT.MinterStoragePath)
22                                ?? panic("Account does not store an object at the specified path")
23                            //let recipient = getAccount(address)
24                            
25                            let recipient = address
26                            
27                            // Borrow the recipient's public NFT collection reference
28                            var cap = (getAccount(recipient).capabilities.borrow<&AnyResource>(
29                                collectionData.publicPath) ?? panic("Could not get receiver reference to the NFT Collection"))
30                            self.recipientCollectionRef = cap as!  &{NonFungibleToken.Receiver}
31
32                        }
33                        execute {
34                            
35                            // Create a new NFT
36                            let newNFT <- self.minter.mintNFT(glink: link, gbatch: batch, glimit: limit, gsequence: sequence,name:name, description: description, thumbnail:thumbnail, editionNumber: editionNumber, metadata:metadata)
37                            
38                            self.recipientCollectionRef.deposit(token: <- newNFT)
39                            
40                        }
41                    }