TransactionSEALED
╲▓╲*#^░╲╲%&▫&█◇%░╲▒◇╳!▪▫█#◇▓▪▓□◆▫#◆▒&▒◇▒╱■!▒&!■▪░?▒╳□╳◆╲╳%@&▓%!■
Transaction ID
Execution Fee
0.0013 FLOWScript Arguments
0ids[UInt64]
[ "48677294" ]
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}