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]
[
  "2455700",
  "5725213",
  "3912356",
  "5054156",
  "3042400",
  "2498200",
  "5071956",
  "5362200",
  "2170500",
  "6226539",
  "4355056",
  "3903356",
  "5674813",
  "2171300",
  "3637556",
  "3643156",
  "2171400",
  "5704813",
  "1545710",
  "1544110",
  "3288856",
  "3032700",
  "1542010",
  "896910",
  "1838110",
  "3923456",
  "4568056",
  "2628200",
  "1843210",
  "1546210",
  "2173200",
  "5763613",
  "5478700",
  "5744413",
  "5340400",
  "3884856",
  "5953639",
  "6235039",
  "3700356",
  "3867956",
  "3886756",
  "5058656",
  "896710",
  "3448156",
  "2618300",
  "3305356",
  "3876356",
  "2782200",
  "6110239",
  "4932856",
  "2698400",
  "2163000",
  "2982400",
  "1545510",
  "6122139",
  "2659700",
  "4754056",
  "2418200",
  "1543810",
  "1547510",
  "5587013",
  "6198939",
  "6052539",
  "2164500",
  "5508900",
  "3062200",
  "3845156",
  "2478200",
  "3291856",
  "4792556",
  "5236700",
  "2166700",
  "6159739",
  "4946856",
  "3316756",
  "3855056",
  "3690956",
  "4734556",
  "3137356",
  "2169600",
  "4333156",
  "3312156",
  "5946639",
  "2708900",
  "5925139",
  "3461656",
  "4520056",
  "1542610",
  "3147356",
  "1543010",
  "2608400",
  "4817056",
  "1832510",
  "3319056",
  "5070156",
  "5253100",
  "2902200",
  "1545910",
  "3073100",
  "2640800"
]

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}