TransactionSEALED

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

Transaction ID

Timestamp

Sep 30, 2025, 07:29:05 AM UTC
5mo ago

Block Height

127,894,492

Computation

0

Execution Fee

0.00000574 FLOW

Transaction Summary

Contract Call

Called NonFungibleToken, TraderflowNFT

Script Arguments

0currentOwnerAddress
1idUInt64
117647746037955
2ipfsString
QmWRkAHnkH4M75Wz5nkmJHFsEMmsPD6ee6NwgoVrtt7DhS

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}