TransactionSEALED

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

Transaction ID

Timestamp

Oct 23, 2025, 06:05:51 AM UTC
4mo ago

Block Height

130,339,875

Computation

0

Execution Fee

0.00000974 FLOW

Transaction Summary

Contract Call

Called NonFungibleToken, TraderflowNFT, TraderflowHash

Script Arguments

0currentOwnerAddress
1idUInt64
95657513759187
2hashString
4a72681eed7fffb4a9ebeaba7c02fc6fc7d65c7dbc40d6eef018154c0ba103b4

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 }