TransactionUNKNOWN

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

Transaction ID

Timestamp

Mar 06, 2024, 11:41:33 PM UTC
2y ago

Block Height

73,476,967

Computation

0

Proposerseq:38747 key:2891

Authorizers

1

Transaction Summary

UpdatingTransaction

Script Arguments

Copy:
0linkString
https://livevct.com/token/980455e5-bc64-4763-9391-fff8509bc485/1
1batchUInt32
43007336
2sequenceUInt16
1
3limitUInt16
1
4nameString
The Doobie Brothers 2024 | Jun 18 2024
5descriptionString
Live Nation Virtual Commemorative Ticket for The Doobie Brothers 2024 at Hayden Homes Amphitheater, Bend, OR on Tuesday, June 18 2024
6thumbnailString
https://cdn.live-nfts.com/web/files/608177d6e9b6cc37f94f3ef8/c368c5c7-a3a1-4086-8a4d-1cc4f8341ed6-face.png
7editionNumberUInt64
0
8metadata{String:String}
{
  "ARTIST_NAMES": "The Doobie Brothers|Robert Cray Band",
  "SERIAL_NUMBER": "BG75GDB",
  "EVENT_TIME": "2024-06-19T01:00:00Z",
  "TICKET_ROW": "GYY",
  "TICKET_SEAT": "JPG",
  "TICKET_SEC": "LAWN4",
  "VENUE_LOCATION": "Bend, Oregon",
  "VENUE_NAME": "Hayden Homes Amphitheater",
  "VENUE_TIMEZONE": "America/Los_Angeles",
  "NUMBER": "2259"
}

Cadence Script

1import LNVCT from 0x1e3c78c6d580273b
2                import NonFungibleToken from 0x1d7e57aa55817448
3                transaction(link: String, batch: UInt32, sequence: UInt16, limit: UInt16, name:String, description:String,thumbnail:String,editionNumber: UInt64, metadata:{String:String}) {
4                    let receiverRef: &{LNVCT.LNVCTCollectionPublic}
5                    let minterRef: &LNVCT.NFTMinter
6                    
7                    prepare(acct: AuthAccount) {
8                        // Get the owner's collection capability and borrow a reference
9                        self.receiverRef = acct.getCapability<&{LNVCT.LNVCTCollectionPublic}>(LNVCT.CollectionPublicPath)
10                            .borrow()
11                            ?? panic("Could not borrow receiver reference")
12                        // Borrow a capability for the NFTMinter in storage
13                        self.minterRef = acct.borrow<&LNVCT.NFTMinter>(from: LNVCT.MinterStoragePath)
14                            ?? panic("could not borrow minter reference")
15                    }
16                    execute {
17                        
18                        // Create a new NFT
19
20                        let newNFT <- self.minterRef.mintNFT(glink: link, gbatch: batch, glimit: limit, gsequence: sequence,name:name, description: description, thumbnail:thumbnail, editionNumber: editionNumber, metadata:metadata)
21                        self.receiverRef.deposit(token: <-newNFT)
22                        log("NFT Minted and deposited to Account 2's Collection")
23                    }
24                }