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]
[
  "2598405",
  "3022005",
  "4946861",
  "1543315",
  "6179344",
  "2162005",
  "3324161",
  "3053005",
  "3710361",
  "3167361",
  "3680561",
  "892515",
  "5308905",
  "3291861",
  "3876361",
  "6264044",
  "3893561",
  "5695118",
  "4339461",
  "3867961",
  "6245344",
  "2578205",
  "3720161",
  "5236705",
  "3295961",
  "5280405",
  "3845161",
  "2358205",
  "4865561",
  "2992905",
  "3288861",
  "3690961",
  "5362205",
  "1828915",
  "5926244",
  "1829915",
  "3277661",
  "1543115",
  "4817061",
  "895515",
  "1547515",
  "5217105",
  "2862205",
  "2168705",
  "4762461",
  "4932861",
  "2742205",
  "4412361",
  "4431261",
  "1541815",
  "6113444",
  "6159744",
  "5936344",
  "5725218",
  "5073461",
  "2166605",
  "6033644",
  "5685218",
  "2538205",
  "4734561",
  "6110244",
  "6013044",
  "896715",
  "5424305",
  "3082305",
  "2882205",
  "5345305",
  "3319061",
  "3643161",
  "3305361",
  "2498205",
  "5330205",
  "3316761",
  "2166705",
  "1542315",
  "4810361",
  "4908161",
  "1836315",
  "2166405",
  "2398205",
  "2165805",
  "5587018",
  "3886761",
  "3461661",
  "4520061",
  "4355061",
  "2648405",
  "2669105",
  "1838115",
  "4804461",
  "3663261",
  "6052544",
  "5714718",
  "3270661",
  "2171305",
  "6189244",
  "2171405",
  "2837905",
  "3137361",
  "5500905"
]

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}