TransactionSEALED
○▫╳░□▪□▒◆░@◆╱*▓$▫▒█╲$▓%~▓&%╱╱%@!●@●░◆▒░╳◆%%%^▒▒○~▪╳▪╳!█╳▫*◆░░@▓◇
Transaction ID
Execution Fee
0.00000749 FLOWTransaction Summary
Contract CallCalled NonFungibleToken, TraderflowNFT
Contracts
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}