TransactionUNKNOWN

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

Transaction ID

Timestamp

Feb 13, 2026, 04:32:05 AM UTC
2w ago

Block Height

142,047,006

Computation

0

Transaction Summary

Transaction

Script Arguments

0QRStoragePathStoragePath
storage/qrNFLPackCapability
1recipientAddress
2withdrawIDUInt64
101155072272174

Cadence Script

1import NonFungibleToken from 0x1d7e57aa55817448
2    import PackNFT from 0xe4cf4bdc1751c65d
3    transaction(QRStoragePath: StoragePath, recipient: Address, withdrawID: UInt64) {
4        prepare(signer: auth(CopyValue) &Account) {
5            let recipient = getAccount(recipient)
6            let depositRef = recipient.capabilities.borrow<&PackNFT.Collection>(PackNFT.CollectionPublicPath)!
7            let capability = signer.storage.copy<Capability<auth(NonFungibleToken.Withdraw) &PackNFT.Collection>>(from: QRStoragePath)!
8            let capRef = capability.borrow()!
9            let nft <- capRef.withdraw(withdrawID: withdrawID)
10            depositRef.deposit(token: <-nft)
11        }
12    }