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]
[
  "2598394",
  "5236694",
  "2168994",
  "5217094",
  "3855050",
  "5058650",
  "3643150",
  "3777250",
  "6169233",
  "5308894",
  "897004",
  "6159733",
  "897404",
  "4523950",
  "5578307",
  "3312150",
  "2173194",
  "3338150",
  "5925133",
  "5340394",
  "3062194",
  "2942194",
  "3092194",
  "4362950",
  "2517294",
  "1543104",
  "3305350",
  "2659694",
  "4810350",
  "3042394",
  "3923450",
  "5674807",
  "4804450",
  "3474750",
  "5073450",
  "3157350",
  "5714707",
  "2171194",
  "5374094",
  "2558194",
  "4801650",
  "1842404",
  "2837894",
  "6179333",
  "6198933",
  "2164094",
  "2378194",
  "3127350",
  "3328750",
  "3720150",
  "5392794",
  "5695107",
  "1832504",
  "5936333",
  "5318894",
  "5735007",
  "5345294",
  "2538194",
  "5508894",
  "3791150",
  "2982394",
  "3167350",
  "4932850",
  "4762450",
  "895504",
  "3461650",
  "4865550",
  "2455694",
  "1545703",
  "3637549",
  "3474549",
  "3791149",
  "3003193",
  "4754049",
  "5725206",
  "3671449",
  "5926232",
  "6226532",
  "6122132",
  "3876349",
  "1542303",
  "6255432",
  "5236693",
  "5308893",
  "6113432",
  "1541803",
  "5330193",
  "6022932",
  "3137349",
  "2669093",
  "3903349",
  "1836303",
  "3312149",
  "5340393",
  "1842203",
  "4734549",
  "5587006",
  "2538193",
  "6198932",
  "2640793"
]

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}