TransactionSEALED
◇○▒&&!╲╳◇▒%◆$█●╲$~*^▪~◇~□╲!●╲╱●╳╲~$█■◇*?□@╲░@●□╱$#▒^●╲#▪^*░◆╲▒▓░
Transaction ID
Script Arguments
0tibleIds[UInt64]
[ "3930643", "2698287", "1542497", "2992887", "2648387", "4508143", "2163287", "2418187", "5586900", "4857943", "5072643", "5363987", "6113426", "1543697", "5477187", "2160987", "2167587", "3328643", "4362043", "6226526", "5924726", "2455687", "4761943", "2782187", "3263343", "4954043", "2164787", "1841897", "4577743", "2478187", "1541697", "4865543", "1545097", "5735000", "3790143", "2962187", "4332843", "2598287", "4816343", "1538897", "6052926", "5392787", "6189226", "2162287", "5424287", "3886743", "6159726", "2640787", "3062187", "2862187", "3637543", "4804343", "5763600", "2982387", "3147343", "1541997", "4431143", "4496943", "3780443", "2678186", "5578299", "3137342", "3338142", "3012186", "4431142", "3777042", "3637542", "5385386", "2166586", "4518942", "3328642", "5725199", "3893542", "6189225", "1835596", "3288542", "5225986", "2982386", "2992886", "2164486", "3876142", "2162886", "3003186", "2478186", "2171186", "2161586", "2815586", "5308886", "3930642", "5433886", "892696", "3923342", "1539896", "5053742", "2902186", "5523286", "5953625", "1540496", "4752842", "2167786" ]
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}