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]
[
  "1543313",
  "3777259",
  "2922203",
  "5926242",
  "6255442",
  "3867959",
  "6013042",
  "5763616",
  "3167359",
  "5059359",
  "5362203",
  "4815459",
  "1842213",
  "4520059",
  "3780459",
  "4510559",
  "2962203",
  "897013",
  "2169603",
  "6235042",
  "5226003",
  "3845159",
  "3042403",
  "887513",
  "5478703",
  "3912359",
  "5685216",
  "6052942",
  "3092202",
  "1543112",
  "3663258",
  "6022941",
  "2708902",
  "2166602",
  "3316758",
  "5763615",
  "6122141",
  "3923458",
  "5362202",
  "3690958",
  "6052941",
  "1541812",
  "4754058",
  "2398202",
  "5514402",
  "1543312",
  "6179341",
  "5217102",
  "4497158",
  "5725215",
  "3270658",
  "2538202",
  "6043341",
  "1544312",
  "2165402",
  "3263358",
  "3042402",
  "4946858",
  "3791158",
  "4815458",
  "4801658",
  "1543812",
  "3167358",
  "2167002",
  "6189241",
  "6033641",
  "2170502",
  "5071958",
  "4823358",
  "5264502",
  "4568058",
  "3474558",
  "2678202",
  "5508902",
  "2378202",
  "2163002",
  "1545412",
  "3137358",
  "3461658",
  "3295958",
  "1545312",
  "5578315",
  "2168702",
  "3073102",
  "2962202",
  "4431258",
  "1836712",
  "2902202",
  "5057258",
  "2922202",
  "895512",
  "2742202",
  "2171202",
  "3671458",
  "4804458",
  "3328758",
  "3652758",
  "5392802",
  "6226541",
  "3886758"
]

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}