TransactionSEALED
░%&!#╳▒□░╱~%%█*░?@@╱╱╱!■╱○$╳$%*@!■╲?!●?@*◆░▫!○◆░?^!▓╳&░◇▫?╲###╳$
Transaction ID
Script Arguments
0tibleIds[UInt64]
[ "5374111", "4339467", "6198950", "5926250", "4568067", "6159750", "5953650", "3652767", "2558211", "5362211", "5744424", "3324167", "3092211", "3277667", "5058667", "1843221", "3338167", "1832521", "2170711", "4497167", "3167367", "2169011", "6043350", "4508167", "3893567", "3700367", "2862211", "3319067", "5226011", "2962211", "6110250", "1545921", "5392811", "5073467", "4932867", "2438211", "3710367", "3690967", "2538211", "5071967", "2166411", "4762467", "2902211", "3663267", "6255450", "6245350", "4520067", "2162011", "2678211", "2172811", "2922211", "2166711", "2640811", "4815467", "4355067", "6022950", "2837911", "2802211", "3680567", "1544421", "3312167", "2698411", "3062211", "3328767", "6189250", "3073111", "3637567", "5059367", "3886767", "4810367", "3893566", "2648410", "2164510", "3127366", "3461666", "4517466", "2628210", "3316766", "2378210", "3867966", "5385610", "5685223", "5714723", "2962210", "5054166", "4333166", "6179349", "1829920", "2782210", "3903366", "6198949", "2659710", "2902210", "5217110", "5374110", "3073110", "2698410", "2802210", "5744423", "3448166" ]
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}