TransactionSEALED
~▫?#■#╳^■?*◇█^◆▪░█&░?◇□□█◆╱╲□%*~░▫▪*?╲□■@░░^╲*?▪^░●#●●○?%^○▓&○&█
Transaction ID
Script Arguments
0tibleIds[UInt64]
[ "2762198", "3791154", "5253098", "5362198", "3147354", "3127354", "2902198", "3876354", "3903354", "5385598", "1546208", "2942198", "3461654", "5478698", "6198937", "4355054", "5330198", "3073098", "5264498", "4339454", "3930654", "2478198", "4908154", "5704811", "2168698", "3328754", "5587011", "5685211", "3671454", "2438198", "2669098", "2558198", "3263354", "6169237", "5514398", "4946854", "4510554", "5217098", "5714711", "3680554", "5953637", "2455698", "4801654", "5225998", "2678198", "2168598", "3270654", "2162998", "3157354", "6226537", "2418198", "4865554", "4431254", "3167354", "3923454", "3021998", "3720154", "3474554", "5054154", "901308", "1543108", "5744411", "4508154", "5500898", "2173198", "5526598", "896708", "1843508", "3324154", "2165198", "6179337", "3082298", "4497154", "5374098", "2358198", "4517454", "1843108", "3277654", "1545408", "3062198", "5424398", "6013037", "2171198", "3448154", "6022937", "4815454", "2708898", "3912354", "1828908", "2166598", "5340398", "2882198", "1541808", "5345298", "4817054", "6255437", "3700354", "4932854", "5059353", "1829907" ]
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}