TransactionSEALED
■%■$□◇%●@▫□&~~▓#█▒◇$!▪╳▓╱░◆■╲~^■?^%○?◇!!■■█╲~%╲#$@●■?~▫#╳╲◆?░?$^
Transaction ID
Execution Fee
0.00114 FLOWScript Arguments
0distIdUInt64
6474
1titleString
Holo Icon: Chance Hit I (December - 2025)
2metadata{String
{
"tier": "STANDARD",
"distributionUUID": "b0e02c44-342b-4b79-bc77-2f0894c8a00f",
"productID": "AllDay",
"name": "Holo Icon: Chance Hit I (December - 2025)",
"description": "The legends that define football greatness — power vs. speed, grit vs. finesse — arrive in Holo Icons. Pull Legendary and Rare Moments from the NFL’s biggest stars: Saquon Barkley, George Pickens, Trey McBride, Lamar Jackson, Justin Herbert, Puka Nacua, and more.\n\nComplete Locking Challenges after the drop from stars like Josh Jacobs, Myles Garrett, Jahmyr Gibbs, Josh Allen, CeeDee Lamb, Jaxon Smith-Njigba, and Micah Parsons.",
"thumbnail": "https://assets.nflallday.com/tmp/HoloIcon3_Pack_CHANCE-HIT_1.png",
"numberOfPackSlots": "3",
"images": "[{\"type\":\"DEFAULT\",\"url\":\"https://assets.nflallday.com/tmp/HoloIcon3_Pack_CHANCE-HIT_1.png\"},{\"type\":\"BACKGROUND\",\"url\":\"https://assets.nflallday.com/tmp/NFLAD_PACK-BG_HI_CHANCE-HIT.png\"}]",
"videos": "[{\"type\":\"RIP\",\"url\":\"https://assets.nflallday.com/tmp/HoloIcon3_Pack_Chance-Hit_1.mp4\"},{\"type\":\"HYPE\",\"url\":\"\"}]",
"isEnabled": "false",
"startTime": "2025-12-12 02:00:00 +0000 UTC",
"endTime": "2025-12-19 02:00:00 +0000 UTC",
"price": "5.00000000",
"type": "DEFAULT"
}Cadence Script
1import PDS from 0xb6f2481eba4df97b
2
3transaction (distId: UInt64, title: String, metadata: {String: String}) {
4 prepare(pds: auth(BorrowValue) &Account) {
5 // get distribution manager reference
6 let managerRef = pds.storage.borrow<auth(PDS.Operate) &PDS.DistributionManager>(from: PDS.DistManagerStoragePath)
7 ?? panic("pds does not have Dist manager")
8
9 // update distribution
10 managerRef.updateDist(
11 distId: distId,
12 title: title,
13 metadata: metadata,
14 )
15 }
16}