TransactionSEALED

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

Transaction ID

Timestamp

Oct 10, 2025, 09:19:26 AM UTC
4mo ago

Block Height

128,981,247

Computation

0

Execution Fee

0.00001424 FLOW

Transaction Summary

Contract Call

Called TrmMarketV2_2

Contracts

Script Arguments

Copy:
0saleCollectionAddressAddress
1tokenIDUInt64
77214
2salePriceUFix64?
0.00000000
3auctionPriceUFix64?
null
4auctionStartTimestampUFix64?
null
5auctionPeriodSecondsUFix64?
null

Cadence Script

1import TrmMarketV2_2 from 0x61fc4b873e58733b
2
3		transaction(saleCollectionAddress: Address, tokenID: UInt64, salePrice: UFix64?, auctionPrice: UFix64?, auctionStartTimestamp: UFix64?, auctionPeriodSeconds: UFix64?) {
4    
5			let adminResource: &TrmMarketV2_2.Admin
6		
7			prepare(adminAccount: auth(BorrowValue) &Account) {   
8				self.adminResource = adminAccount.storage.borrow<&TrmMarketV2_2.Admin>(from: TrmMarketV2_2.adminStoragePath)
9					?? panic("could not borrow admin resource from account storage")
10			}
11		
12			execute {
13				self.adminResource.listForTransfer(saleCollectionAddress: saleCollectionAddress, tokenID: tokenID, salePrice: salePrice, auctionPrice: auctionPrice, auctionStartTimestamp: auctionStartTimestamp, auctionPeriodSeconds: auctionPeriodSeconds)
14			}
15		}