TransactionSEALED
╱█╲▒▒^$~!◇●◇&■◇??╳?!◆~╱●╱●□!!^^░▓$%▓%◇●▓▪$*█░○╳▪░●@@□■&■@○~■░*%~
Transaction ID
Script Arguments
0tibleIds[UInt64]
[ "1543913", "4497159", "6022942", "2608403", "3003203", "4946859", "3884859", "6226542", "5057259", "1842413", "1542713", "5340403", "6264042", "5070159", "3022003", "897613", "1543113", "3680559", "5253103", "6043342", "3791159", "5054159", "3690959", "6113442", "4577859", "2815603", "5433903", "5946642", "2992903", "6033642", "5674816", "4734559", "3637559", "3671459", "2942203", "3316759", "3288859", "4431259", "2165203", "2171203", "1546613", "3720159", "2164103", "2802203", "4362959", "1843113", "3053003", "3923459", "3147359", "1545713", "3157359", "2418203", "3277659", "2378203", "4339459", "4508159", "2782203", "1543813", "5217103", "4568059", "3082303", "2164003", "1544413", "2618303", "5364003", "3930659", "4801659", "1838113", "5936342", "6122142", "4754059", "3263359", "2517303", "2558203", "1543013", "5345303", "3448159", "3893559", "3855059", "4804459", "5695116", "5587016", "6245342", "1544313", "3334959", "2598403", "3338159", "5514403", "4908159", "1833413", "4817059", "4932859", "2166603", "1836313", "3876359", "5058659", "5071959", "2165803", "3012203", "6179342" ]
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}