TransactionSEALED

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

Transaction ID

Timestamp

Dec 19, 2025, 04:05:58 AM UTC
2mo ago

Block Height

136,484,689

Computation

0

Execution Fee

0.00122 FLOW

Transaction Summary

Contract Call

Called TopShot, NonFungibleToken

Script Arguments

0ids[UInt64]
[
  "43752580"
]

Cadence Script

1import TopShot from 0x0b2a3299cc857e29
2import NonFungibleToken from 0x1d7e57aa55817448
3
4// This transaction unlocks a list of TopShot NFTs
5
6// Parameters
7//
8// ids: array of TopShot moment Flow IDs
9
10transaction(ids: [UInt64]) {
11    prepare(acct: auth(Storage, Capabilities) &Account) {
12        let collectionRef = acct.storage.borrow<auth(NonFungibleToken.Update) &TopShot.Collection>(from: /storage/MomentCollection)
13            ?? panic("Could not borrow from MomentCollection in storage")
14
15        collectionRef.batchUnlock(ids: ids)
16    }
17}