TransactionSEALED
&●@▫●□╳▪╳╱●▫●◆╱%□◆$█%○~&╳?◆░╱^!▓*!◆#^■╳░?╱□?░?▪◆!▒^◆╱%╳▓@*!◇$^○■
Transaction ID
Script Arguments
0tibleIds[UInt64]
[ "3092207", "1543317", "2837907", "6022946", "3680563", "5318907", "1838117", "2455707", "5364007", "1543017", "2992907", "3304263", "1843517", "6013046", "2166407", "3338163", "5433907", "5385607", "3127363", "3288863", "2171207", "2742207", "2418207", "4497163", "2640807", "6159746", "2782207", "5946646", "3032707", "2882207", "6169246", "2982407", "2171407", "5424407", "3474563", "3652763", "6122146", "2678207", "1545717", "4734563", "3277663", "4431263", "5058663", "1545917", "4517463", "6179346", "3886763", "1829917", "3876363", "3157363", "3637563", "6033646", "2688307", "5500907", "1542617", "2166607", "4520063", "1545517", "4865563", "6110246", "5054163", "5704820", "5236707", "4946863", "1842217", "3884862", "2902206", "3305362", "2922206", "5318906", "6122145", "2688306", "2678206", "1546416", "6179345", "2558206", "6022945", "3867962", "6245345", "3855062", "5362206", "3912362", "2418206", "3157362", "5754619", "5514406", "2598406", "5345306", "2438206", "3167362", "897016", "2942206", "4510562", "5725219", "3791162", "2802206", "2166406", "5058662", "3845162", "2165406" ]
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}