TransactionSEALED

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

Transaction ID

Timestamp

Aug 20, 2024, 06:30:44 PM UTC
1y ago

Block Height

84,965,384

Computation

0

Proposerseq:0 key:0

Authorizers

1

Transaction Summary

Contract Call

Called TiblesNFT, Seussibles

Script Arguments

0tibleIds[UInt64]
[
  "5217089",
  "3637545",
  "3147345",
  "5251389",
  "3167345",
  "3700345",
  "2608389",
  "2162989",
  "3073089",
  "5735002",
  "2992889",
  "4362045",
  "2538189",
  "3277645",
  "5477189",
  "2162888",
  "3003188",
  "5477188",
  "5578301",
  "3690944",
  "3886744",
  "3052988",
  "5345288",
  "5264488",
  "3652544",
  "3876144",
  "4752844",
  "1842798",
  "3893544",
  "3662744",
  "6052927",
  "5704801",
  "5373988",
  "3316744",
  "5392788",
  "3328644",
  "4907744",
  "4523944",
  "3710344",
  "3855044",
  "5385388",
  "5217088",
  "2782188",
  "5523288",
  "4339044",
  "4857944",
  "6234927",
  "3062188",
  "4407644",
  "3700344",
  "2922188",
  "5318888",
  "3295944",
  "3073088",
  "884998",
  "5685201",
  "1539598",
  "1540398",
  "1541698",
  "4816344",
  "3637544",
  "1545098",
  "1542498",
  "5754601",
  "3288544",
  "6022927",
  "3012188",
  "2578188",
  "5363988",
  "6179327",
  "2698288",
  "4733944",
  "5236688",
  "1542898",
  "2166588",
  "2478188",
  "3167344",
  "3680544",
  "3780444",
  "3912044",
  "6198927",
  "4354944",
  "3311944",
  "2862188",
  "3291844",
  "3319044",
  "3082288",
  "4431944",
  "4810344",
  "5330188",
  "5586901",
  "2802188",
  "1832198",
  "1541198",
  "3903244",
  "5926227",
  "2815588",
  "6113427",
  "3324144",
  "2962188"
]

Cadence Script

1import TiblesNFT from 0x5cdeb067561defcb
2import Seussibles from 0x321d8fcde05f6e8c
3
4transaction(tibleIds: [UInt64]) {
5  let collection: &Seussibles.Collection
6
7  prepare(acct: AuthAccount) {
8    self.collection = acct.borrow<&Seussibles.Collection>(from: Seussibles.CollectionStoragePath)
9      ?? panic("Failed to borrow collection")
10  }
11
12  execute {
13    for tibleId in tibleIds {
14      self.collection.destroyTible(id: tibleId)
15    }
16  }
17}