TransactionSEALED

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

Transaction ID

Timestamp

Jul 01, 2025, 03:19:39 AM UTC
8mo ago

Block Height

118,173,444

Computation

0

Execution Fee

0.00001374 FLOW

Transaction Summary

Contract Call

Called NonFungibleToken

Script Arguments

Copy:

Cadence Script

1import NonFungibleToken from 0x1d7e57aa55817448
2
3// this transaction transfers an NFT from one account to another.
4transaction() {
5    prepare(signerAcct: auth(BorrowValue) &Account) {
6        // get the recipients public account object
7        let recipientAcct = getAccount(0x068da75c4521e17e)
8
9        // borrow a reference to the signers NFT collection
10        let signerCollectionRef = signerAcct.storage.borrow<auth(NonFungibleToken.Withdraw) &{NonFungibleToken.Provider}>(from: /storage/FlowverseShirtCollection)
11            ?? panic("Could not borrow a reference to the owners collection")
12
13        // borrow a public reference to the receivers collection
14        let depositRef = recipientAcct.capabilities.borrow<&{NonFungibleToken.CollectionPublic}>(/public/FlowverseShirtCollection)!
15
16        // withdraw the NFT from the owners collection
17        let nft <- signerCollectionRef.withdraw(withdrawID: 203)
18
19        // deposit the NFT in the recipients collection
20        depositRef.deposit(token: <-nft)
21    }
22}