DeploySEALED

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

Transaction ID

Timestamp

Oct 10, 2025, 08:20:50 AM UTC
4mo ago

Block Height

128,976,858

Computation

0

Execution Fee

0.00000699 FLOW

Transaction Summary

Deploy

Contract deployment

Contract deployment

Script Arguments

0nameString
Glove
1codeString
access(all) contract Glove { access(all) var gloves: [String] init() { self.gloves = [ "Charred Grips", "Toxic Clawguards", "Phantom Handwraps", "Cryo-Fused Gauntlets", "Ashborne Fingerplates", "Viral Injector Gloves", "Shadowwoven Mitts", "Neon Pulse Gauntlets" ] } }

Cadence Script

1transaction(name: String, code: String ) {
2		prepare(signer: auth(AddContract) &Account) {
3			signer.contracts.add(name: name, code: code.utf8 )
4		}
5	}