TransactionSEALED

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

Transaction ID

Timestamp

Feb 12, 2026, 04:11:35 PM UTC
2w ago

Block Height

141,991,888

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: --> d39028b0a8e937606b824d17d6845ebec37dae428accb62ef39fa897b54d7392: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

0currentOwnerAddress
1idUInt64
172623327527569
2hashString
caea731215318aece3232d44644d506a0c8251d914b9a7879527b0d079f5041f

Cadence Script

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 }