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]
[
  "2942208",
  "5424308",
  "2166408",
  "3263363",
  "5264507",
  "4932863",
  "5057263",
  "2169007",
  "1544117",
  "4333163",
  "6255446",
  "2708907",
  "5070163",
  "4908163",
  "4762463",
  "5424307",
  "5253107",
  "4823363",
  "1836717",
  "2815607",
  "6226546",
  "5392807",
  "6245346",
  "4810363",
  "4815463",
  "3690963",
  "2628207",
  "3845163",
  "3791163",
  "4523963",
  "5526607",
  "6264046",
  "2173207",
  "1541817",
  "4339463",
  "4857963",
  "4508163",
  "3328763",
  "3082307",
  "5217107",
  "6235046",
  "2168607",
  "2902207",
  "3867963",
  "2169607",
  "5345307",
  "2438207",
  "5514407",
  "6052946",
  "1546217",
  "5226007",
  "4801663",
  "5587020",
  "5330207",
  "3700363",
  "1542017",
  "5926246",
  "6113446",
  "5578320",
  "3334963",
  "6198946",
  "3012207",
  "3305363",
  "5754620",
  "2168107",
  "3053007",
  "2517307",
  "3643163",
  "2659707",
  "2962207",
  "5340407",
  "3324163",
  "2170507",
  "3903363",
  "1836317",
  "3855063",
  "3720163",
  "5763620",
  "6043346",
  "5735020",
  "6189246",
  "2170707",
  "2165407",
  "5071963",
  "3270663",
  "1542717",
  "1546417",
  "3042407",
  "4792563",
  "3022007",
  "2669107",
  "5308907",
  "3319063",
  "5725220",
  "893217",
  "5280407",
  "2598407",
  "2862207",
  "2165807",
  "1828917"
]

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}