TransactionSEALED
%#●&@▪╱▒╲╲╱╲■^╳&▓╱▓◇○▪▓$▒╲╳▫#▫╳▫╲^▒◆◆░□▪~○□~╲◆?~~□◆*■▫@■#◇●#*&╲▪
Transaction ID
Script Arguments
0tibleIds[UInt64]
[ "3886749", "3304249", "3643149", "4932849", "3062193", "3867949", "3334949", "2168093", "3167349", "2517293", "4523949", "3652749", "4946849", "2608393", "3845149", "4333149", "4568049", "3328749", "2837893", "5318893", "2648393", "3295949", "3157349", "2762193", "2578193", "4865549", "6189232", "5526593", "2172793", "6110232", "2455693", "5744406", "1842403", "3474749", "2902193", "2598393", "1833403", "2418193", "3777249", "3032693", "3710349", "2438193", "6179332", "2992893", "4792549", "3448149", "2618293", "5674806", "5424293", "3319049", "5073449", "1843503", "5714706", "4908149", "2815593", "3277649", "5054149", "2164093", "1547503", "4431249", "2659693", "4510549", "2782193", "1543803", "1543903", "6169232", "2688293", "3082293", "2708893", "3338149", "3127349", "5936332", "3147349", "4810349", "2162993", "1542003", "4762449", "2558193", "1843203", "5500893", "3305349", "4857949", "6033632", "1543103", "6245332", "2170493", "5057249", "6235032", "5385593", "5695106", "2942193", "3324149", "5345293", "5704806", "1836703", "1546503", "3042393", "3021993", "5225993", "1542703" ]
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}