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]
[
  "5308899",
  "2168599",
  "3448155",
  "1545709",
  "6013038",
  "2982399",
  "5374099",
  "5057255",
  "3277655",
  "2163999",
  "2358199",
  "3324155",
  "4333155",
  "5217099",
  "3127355",
  "5340399",
  "5392799",
  "5508899",
  "3312154",
  "2165798",
  "3288854",
  "1832508",
  "3893554",
  "5070154",
  "6043337",
  "3304254",
  "1836308",
  "4333154",
  "5363998",
  "2163998",
  "4523954",
  "1836708",
  "6052937",
  "2598398",
  "893908",
  "5236698",
  "3316754",
  "6235037",
  "1545308",
  "6113437",
  "5946637",
  "3474754",
  "2648398",
  "2172798",
  "3777254",
  "5508898",
  "5578311",
  "3338154",
  "2802198",
  "3845154",
  "4520054",
  "3042398",
  "2378198",
  "3012198",
  "6264037",
  "2164098",
  "1545708",
  "1546508",
  "2538198",
  "3319054",
  "3032698",
  "2922198",
  "4823354",
  "1843208",
  "5280398",
  "3663254",
  "3867954",
  "2608398",
  "3690954",
  "2982398",
  "3637554",
  "6052537",
  "2618298",
  "5059354",
  "5936337",
  "2862198",
  "2688298",
  "3092198",
  "1542708",
  "2962198",
  "4804454",
  "3305354",
  "3334954",
  "2628198",
  "6122137",
  "4792554",
  "6189237",
  "4810354",
  "5057254",
  "6033637",
  "1542308",
  "2398198",
  "2161998",
  "4362954",
  "3003198",
  "2815598",
  "4734554",
  "1833408",
  "1544408",
  "4568054"
]

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}