Smart Contract
Glove
A.c649103ebbc38926.Glove
1access(all) contract Glove {
2
3 access(all) var gloves: [String]
4
5 init() {
6 self.gloves = [
7 "Charred Grips",
8 "Toxic Clawguards",
9 "Phantom Handwraps",
10 "Cryo-Fused Gauntlets",
11 "Ashborne Fingerplates",
12 "Viral Injector Gloves",
13 "Shadowwoven Mitts",
14 "Neon Pulse Gauntlets"
15 ]
16 }
17}
18