TransactionSEALED

▪^◆▪○◇!╲^#░╳▪█~○▫□&◆*▪░?╲■@░~●*??&#!╳?▪▫▪?█╲■▪█^▫~╱█&╳◆●▫╱▪#&◇^╳

Transaction ID

Timestamp

Aug 20, 2024, 06:30:44 PM UTC
1y ago

Block Height

84,965,384

Computation

0

Proposerseq:0 key:0

Authorizers

1

Transaction Summary

Contract Call

Called TiblesNFT, Seussibles

Script Arguments

0tibleIds[UInt64]
[
  "1843218",
  "2659708",
  "2698408",
  "3062208",
  "3448164",
  "3291864",
  "3876364",
  "2171408",
  "1545918",
  "3263364",
  "3884864",
  "4510564",
  "1543818",
  "4792564",
  "1546518",
  "1836318",
  "4734564",
  "5685221",
  "2742208",
  "2378208",
  "1542018",
  "2165408",
  "3845164",
  "5936347",
  "4497164",
  "6110247",
  "2962208",
  "3791164",
  "5330208",
  "5424408",
  "4517464",
  "6534603",
  "6198947",
  "3288864",
  "4568064",
  "6013047",
  "3855064",
  "5364008",
  "2802208",
  "4815464",
  "3316764",
  "6189247",
  "5500908",
  "5217108",
  "2358208",
  "1542318",
  "3324164",
  "2164108",
  "3663264",
  "4577864",
  "4865564",
  "1842418",
  "5340408",
  "2538208",
  "5735021",
  "4754064",
  "2992908",
  "3637564",
  "3137364",
  "2688308",
  "896918",
  "5318908",
  "5578321",
  "6052947",
  "1543918",
  "4817064",
  "3643164",
  "3680564",
  "1836718",
  "2862208",
  "2164508",
  "3053008",
  "5704821",
  "4508164",
  "5385608",
  "2815608",
  "2782208",
  "3886764",
  "3893564",
  "4823364",
  "1543018",
  "897618",
  "2418208",
  "4431264",
  "4801664",
  "4339464",
  "6264047",
  "6226547",
  "3032708",
  "2398208",
  "5526608",
  "5925147",
  "2498208",
  "1832518",
  "3304264",
  "1545418",
  "3127364",
  "3710364",
  "5070164",
  "5059364"
]

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}