midnight-mcp 0.1.10 → 0.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -78,6 +78,14 @@ export const REPO_ALIASES = {
|
|
|
78
78
|
starter: { owner: "MeshJS", repo: "midnight-starter-template" },
|
|
79
79
|
midnames: { owner: "midnames", repo: "core" },
|
|
80
80
|
did: { owner: "midnames", repo: "core" },
|
|
81
|
+
// Sea Battle Hackathon Winners (Feb 2025)
|
|
82
|
+
"naval-battle": { owner: "ErickRomeroDev", repo: "naval-battle-game_v2" },
|
|
83
|
+
"edda-labs": { owner: "ErickRomeroDev", repo: "naval-battle-game_v2" },
|
|
84
|
+
"sea-battle-hackathon": {
|
|
85
|
+
owner: "eddex",
|
|
86
|
+
repo: "midnight-sea-battle-hackathon",
|
|
87
|
+
},
|
|
88
|
+
shipyspace: { owner: "eddex", repo: "midnight-sea-battle-hackathon" },
|
|
81
89
|
};
|
|
82
90
|
export const EXAMPLES = [
|
|
83
91
|
{
|
|
@@ -124,5 +132,51 @@ export const EXAMPLES = [
|
|
|
124
132
|
"Advanced state management",
|
|
125
133
|
],
|
|
126
134
|
},
|
|
135
|
+
// Sea Battle Hackathon Winners (Feb 2025)
|
|
136
|
+
{
|
|
137
|
+
name: "Sea Battle (Brick Towers)",
|
|
138
|
+
repository: "bricktowers/midnight-seabattle",
|
|
139
|
+
description: "1st place hackathon winner. Fully playable battleship game with token staking (100 shielded tBTC). Features ZK-protected ship placements and moves.",
|
|
140
|
+
category: "game",
|
|
141
|
+
complexity: "advanced",
|
|
142
|
+
mainFile: "contract/src/seabattle.compact",
|
|
143
|
+
features: [
|
|
144
|
+
"ZK game mechanics",
|
|
145
|
+
"Shielded token staking",
|
|
146
|
+
"Turn-based gameplay",
|
|
147
|
+
"Private state management",
|
|
148
|
+
"Lace wallet integration",
|
|
149
|
+
],
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
name: "Naval Battle (Edda Labs)",
|
|
153
|
+
repository: "ErickRomeroDev/naval-battle-game_v2",
|
|
154
|
+
description: "2nd place hackathon winner. Clean implementation with 4 ZK circuits: join game, commit grid, start game, make move. Modern drag-and-drop UI.",
|
|
155
|
+
category: "game",
|
|
156
|
+
complexity: "intermediate",
|
|
157
|
+
mainFile: "contract/src/naval.compact",
|
|
158
|
+
features: [
|
|
159
|
+
"4 ZK circuits",
|
|
160
|
+
"Drag-and-drop UI",
|
|
161
|
+
"Real-time updates",
|
|
162
|
+
"Clean circuit design",
|
|
163
|
+
"Open-source docs",
|
|
164
|
+
],
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
name: "Sea Battle (ShipySpace)",
|
|
168
|
+
repository: "eddex/midnight-sea-battle-hackathon",
|
|
169
|
+
description: "3rd place hackathon winner. Great beginner-friendly example showing core game mechanics without centralized server. Good first ZK project reference.",
|
|
170
|
+
category: "game",
|
|
171
|
+
complexity: "beginner",
|
|
172
|
+
mainFile: "contract/src/game.compact",
|
|
173
|
+
features: [
|
|
174
|
+
"No centralized server",
|
|
175
|
+
"Deploy/join/resume games",
|
|
176
|
+
"Basic ZK patterns",
|
|
177
|
+
"Beginner friendly",
|
|
178
|
+
"Clear player interactions",
|
|
179
|
+
],
|
|
180
|
+
},
|
|
127
181
|
];
|
|
128
182
|
//# sourceMappingURL=constants.js.map
|
package/dist/utils/config.js
CHANGED
|
@@ -224,5 +224,20 @@ export const DEFAULT_REPOSITORIES = [
|
|
|
224
224
|
patterns: ["**/*.compact", "**/*.ts", "**/*.md"],
|
|
225
225
|
exclude: ["node_modules/**", "dist/**"],
|
|
226
226
|
},
|
|
227
|
+
// Sea Battle Hackathon Winners (Feb 2025)
|
|
228
|
+
{
|
|
229
|
+
owner: "ErickRomeroDev",
|
|
230
|
+
repo: "naval-battle-game_v2",
|
|
231
|
+
branch: "main",
|
|
232
|
+
patterns: ["**/*.compact", "**/*.ts", "**/*.tsx", "**/*.md"],
|
|
233
|
+
exclude: ["node_modules/**", "dist/**"],
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
owner: "eddex",
|
|
237
|
+
repo: "midnight-sea-battle-hackathon",
|
|
238
|
+
branch: "main",
|
|
239
|
+
patterns: ["**/*.compact", "**/*.ts", "**/*.md"],
|
|
240
|
+
exclude: ["node_modules/**", "dist/**"],
|
|
241
|
+
},
|
|
227
242
|
];
|
|
228
243
|
//# sourceMappingURL=config.js.map
|