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]
[
  "4568053",
  "4577853",
  "5071953",
  "5685210",
  "1542607",
  "3032697",
  "2962197",
  "2358197",
  "6033636",
  "4362953",
  "3042397",
  "4762453",
  "5926236",
  "5587010",
  "1546607",
  "1545707",
  "3855053",
  "2162997",
  "5478697",
  "2478197",
  "5725210",
  "3474553",
  "3003197",
  "4801653",
  "3319053",
  "5674810",
  "4804453",
  "6264036",
  "3923453",
  "2815597",
  "6255436",
  "3312153",
  "2558197",
  "5578310",
  "3334953",
  "2942197",
  "2618297",
  "5385597",
  "2418197",
  "3652753",
  "2762197",
  "6235036",
  "6226536",
  "3663253",
  "3912353",
  "6198936",
  "3263353",
  "1544407",
  "2378197",
  "1545907",
  "5236697",
  "4523953",
  "3671453",
  "6122136",
  "3338153",
  "4754053",
  "2578197",
  "2173197",
  "1843107",
  "6110236",
  "4333153",
  "3845153",
  "1545507",
  "3137352",
  "3777252",
  "4355052",
  "2168696",
  "1545506",
  "2164096",
  "3923452",
  "1842406",
  "5674809",
  "2922196",
  "2165396",
  "2837896",
  "4431252",
  "1829906",
  "5953635",
  "5478696",
  "2982396",
  "5424396",
  "5385596",
  "897406",
  "5754609",
  "5936335",
  "5508896",
  "6235035",
  "4508152",
  "2171396",
  "5587009",
  "3032696",
  "5695109",
  "3304252",
  "5926235",
  "3127352",
  "4792552",
  "2455696",
  "6013035",
  "4857952",
  "2171196"
]

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}