TransactionSEALED

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

Transaction ID

Timestamp

Feb 12, 2026, 07:10:55 PM UTC
3w ago

Block Height

142,005,097

Computation

0

Execution Fee

0.00034 FLOW

Execution Error

Error Code: 1101

panic: This account does not own an NFT with this id.

Error ContextLine 20
15           ?? panic("This is not the Minter account.")
16   }
17
18   execute {
19     self.Admin.pushHash(id: id, currentOwner: currentOwner, hash: hash)
20   }
21 }
Call Stack
Raw Error

[Error Code: 1101] error caused by: 1 error occurred: * transaction execute failed: [Error Code: 1101] cadence runtime error: Execution failed: --> 3fef9d294e6e905a4ff41e7dee153ef9d0e5845a92a22ed54d8c948646b17ac9:20:5 | 20 | self.Admin.pushHash(id: id, currentOwner: currentOwner, hash: hash) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ error: panic: This account does not own an NFT with this id. --> bb12a6da563a5e8e.TraderflowNFT:207:82 Was this error unhelpful? Consider suggesting an improvement here: https://github.com/onflow/cadence/issues.

Transaction Summary

Contract Call

Called NonFungibleToken, TraderflowNFT, TraderflowHash

Script Arguments

Copy:
0currentOwnerAddress
1idUInt64
172623327527569
2hashString
f1851026e0adb0f513a9d627b086fb4bf794b37820a06d30c6796d7f24569bc5

Cadence Script

Open in Playground
1import NonFungibleToken from 0x1d7e57aa55817448
2 import TraderflowNFT from 0xbb12a6da563a5e8e
3 import TraderflowHash from 0xbb12a6da563a5e8e
4
5 transaction(
6   currentOwner: Address,
7   id: UInt64,
8   hash: String
9 ) {
10
11   let Admin: &TraderflowNFT.Administrator
12
13   prepare(signer: auth(BorrowValue) &Account) {
14     self.Admin = signer.storage.borrow<&TraderflowNFT.Administrator>(from: TraderflowNFT.MinterStoragePath)
15           ?? panic("This is not the Minter account.")
16   }
17
18   execute {
19     self.Admin.pushHash(id: id, currentOwner: currentOwner, hash: hash)
20   }
21 }