DeploySEALED
@◆●$◇?□!!○◇~╱●#&○▪▒#?╳$◆@^╱*!□%▓%$#~◇▫?░$@■○*▫□╳&#█▪■╳~$●*^□□^!●
Transaction ID
Execution Fee
0.00000699 FLOWTransaction Summary
DeployContract 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 }