MarketplaceSEALED

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

Transaction ID

Timestamp

Feb 13, 2026, 03:17:04 AM UTC
2w ago

Block Height

142,041,409

Computation

0

Execution Fee

0.02806 FLOW

Transaction Summary

Marketplace

Called NFTStorefrontV2

Script Arguments

0storefrontAddressAddress
1fromIndexUInt64
0
2toIndexUInt64
159

Cadence Script

1import NFTStorefrontV2 from 0x4eb8a10cb9f87357
2
3transaction(storefrontAddress: Address, fromIndex: UInt64, toIndex: UInt64) {
4  let storefront: &{NFTStorefrontV2.StorefrontPublic}
5
6  prepare(acct: auth(BorrowValue) &Account) {
7    self.storefront = getAccount(storefrontAddress)
8      .capabilities
9      .borrow<&{NFTStorefrontV2.StorefrontPublic}>(NFTStorefrontV2.StorefrontPublicPath)
10        ?? panic("Could not borrow Storefront from provided address")
11  }
12
13  execute {
14    self.storefront.cleanupExpiredListings(fromIndex: fromIndex, toIndex: toIndex)
15  }
16}