TransactionSEALED

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

Transaction ID

Timestamp

Oct 28, 2025, 09:27:49 AM UTC
4mo ago

Block Height

130,894,777

Computation

0

Execution Fee

0.00000749 FLOW

Transaction Summary

Contract Call

Called NonFungibleToken, TraderflowNFT

Script Arguments

0currentOwnerAddress
1idUInt64
1099513825473
2ipfsString
QmZd8hagK9dukv5FyQidxTxXkvmNjKst4LLTsGGUnWbJJp

Cadence Script

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