midnight-mcp 0.1.12 → 0.1.13
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.
|
@@ -86,6 +86,23 @@ export const REPO_ALIASES = {
|
|
|
86
86
|
repo: "midnight-sea-battle-hackathon",
|
|
87
87
|
},
|
|
88
88
|
shipyspace: { owner: "eddex", repo: "midnight-sea-battle-hackathon" },
|
|
89
|
+
// Core Partner - PaimaStudios (Gaming Infrastructure)
|
|
90
|
+
"midnight-game-2": { owner: "PaimaStudios", repo: "midnight-game-2" },
|
|
91
|
+
"paima-game": { owner: "PaimaStudios", repo: "midnight-game-2" },
|
|
92
|
+
"dust-to-dust": { owner: "PaimaStudios", repo: "midnight-game-2" },
|
|
93
|
+
"midnight-wasm-prover": {
|
|
94
|
+
owner: "PaimaStudios",
|
|
95
|
+
repo: "midnight-wasm-prover",
|
|
96
|
+
},
|
|
97
|
+
"wasm-prover": { owner: "PaimaStudios", repo: "midnight-wasm-prover" },
|
|
98
|
+
"midnight-batcher": { owner: "PaimaStudios", repo: "midnight-batcher" },
|
|
99
|
+
batcher: { owner: "PaimaStudios", repo: "midnight-batcher" },
|
|
100
|
+
"midnight-impact-rps": {
|
|
101
|
+
owner: "PaimaStudios",
|
|
102
|
+
repo: "midnight-impact-rps-example",
|
|
103
|
+
},
|
|
104
|
+
"impact-rps": { owner: "PaimaStudios", repo: "midnight-impact-rps-example" },
|
|
105
|
+
"vm-bindings": { owner: "PaimaStudios", repo: "midnight-impact-rps-example" },
|
|
89
106
|
// Mini DApp Hackathon Winners (Sep 2025)
|
|
90
107
|
statera: { owner: "statera-protocol", repo: "statera-protocol-midnight" },
|
|
91
108
|
"statera-protocol": {
|
|
@@ -237,5 +254,71 @@ export const EXAMPLES = [
|
|
|
237
254
|
"Reputation system",
|
|
238
255
|
],
|
|
239
256
|
},
|
|
257
|
+
// Core Partner - PaimaStudios (Gaming Infrastructure)
|
|
258
|
+
{
|
|
259
|
+
name: "Midnight Game 2 (PaimaStudios)",
|
|
260
|
+
repository: "PaimaStudios/midnight-game-2",
|
|
261
|
+
description: "Full production game from core Midnight partner. Complete Phaser frontend, CLI admin tools, and batcher integration. Demonstrates advanced game mechanics with battles, quests, spirits, and upgrades using ZK proofs.",
|
|
262
|
+
category: "game",
|
|
263
|
+
complexity: "advanced",
|
|
264
|
+
mainFile: "contract/src/template.compact",
|
|
265
|
+
features: [
|
|
266
|
+
"Phaser game frontend",
|
|
267
|
+
"Batcher mode (no wallet needed)",
|
|
268
|
+
"Admin CLI tools",
|
|
269
|
+
"Battle system circuits",
|
|
270
|
+
"Quest mechanics",
|
|
271
|
+
"Spirit upgrades",
|
|
272
|
+
"Code generation for circuits",
|
|
273
|
+
],
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
name: "WASM Prover (PaimaStudios)",
|
|
277
|
+
repository: "PaimaStudios/midnight-wasm-prover",
|
|
278
|
+
description: "Browser-based WASM ZK prover for Midnight transactions. Enables client-side proving without external services. Essential infrastructure for decentralized DApps.",
|
|
279
|
+
category: "infrastructure",
|
|
280
|
+
complexity: "advanced",
|
|
281
|
+
mainFile: "src/lib.rs",
|
|
282
|
+
features: [
|
|
283
|
+
"Browser-based proving",
|
|
284
|
+
"Multi-threaded WASM",
|
|
285
|
+
"WebWorker integration",
|
|
286
|
+
"KZG trusted setup handling",
|
|
287
|
+
"No server dependency",
|
|
288
|
+
"Webpack demo included",
|
|
289
|
+
],
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
name: "Midnight Batcher (PaimaStudios)",
|
|
293
|
+
repository: "PaimaStudios/midnight-batcher",
|
|
294
|
+
description: "Transaction batching service for Midnight. Enables wallet-less DApp interactions by handling transaction fees and submission. Production-ready Rust implementation.",
|
|
295
|
+
category: "infrastructure",
|
|
296
|
+
complexity: "advanced",
|
|
297
|
+
mainFile: "src/main.rs",
|
|
298
|
+
features: [
|
|
299
|
+
"Wallet-less transactions",
|
|
300
|
+
"Fee sponsorship",
|
|
301
|
+
"Contract whitelisting",
|
|
302
|
+
"Pre-proving service",
|
|
303
|
+
"WebSocket indexer sync",
|
|
304
|
+
"Local chain setup scripts",
|
|
305
|
+
],
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
name: "Impact VM RPS Example (PaimaStudios)",
|
|
309
|
+
repository: "PaimaStudios/midnight-impact-rps-example",
|
|
310
|
+
description: "Low-level Impact VM programming example. Shows how to write Midnight contracts without Compact, directly using Impact opcodes and zkir. Rock-Paper-Scissors with commitment schemes.",
|
|
311
|
+
category: "infrastructure",
|
|
312
|
+
complexity: "advanced",
|
|
313
|
+
mainFile: "lib/src/lib.rs",
|
|
314
|
+
features: [
|
|
315
|
+
"Impact VM direct programming",
|
|
316
|
+
"Bypass Compact compiler",
|
|
317
|
+
"zkir circuit building",
|
|
318
|
+
"Commitment schemes",
|
|
319
|
+
"TypeScript WASM bindings",
|
|
320
|
+
"Full RPS game logic",
|
|
321
|
+
],
|
|
322
|
+
},
|
|
240
323
|
];
|
|
241
324
|
//# sourceMappingURL=constants.js.map
|
package/dist/utils/config.js
CHANGED
|
@@ -261,5 +261,34 @@ export const DEFAULT_REPOSITORIES = [
|
|
|
261
261
|
patterns: ["**/*.compact", "**/*.ts", "**/*.md"],
|
|
262
262
|
exclude: ["node_modules/**", "dist/**"],
|
|
263
263
|
},
|
|
264
|
+
// Core Partner - PaimaStudios (Gaming Infrastructure)
|
|
265
|
+
{
|
|
266
|
+
owner: "PaimaStudios",
|
|
267
|
+
repo: "midnight-game-2",
|
|
268
|
+
branch: "main",
|
|
269
|
+
patterns: ["**/*.compact", "**/*.ts", "**/*.tsx", "**/*.js", "**/*.md"],
|
|
270
|
+
exclude: ["node_modules/**", "dist/**", "phaser/node_modules/**"],
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
owner: "PaimaStudios",
|
|
274
|
+
repo: "midnight-wasm-prover",
|
|
275
|
+
branch: "main",
|
|
276
|
+
patterns: ["**/*.rs", "**/*.ts", "**/*.md"],
|
|
277
|
+
exclude: ["target/**", "node_modules/**", "pkg/**"],
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
owner: "PaimaStudios",
|
|
281
|
+
repo: "midnight-batcher",
|
|
282
|
+
branch: "main",
|
|
283
|
+
patterns: ["**/*.rs", "**/*.ts", "**/*.md"],
|
|
284
|
+
exclude: ["target/**", "node_modules/**"],
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
owner: "PaimaStudios",
|
|
288
|
+
repo: "midnight-impact-rps-example",
|
|
289
|
+
branch: "main",
|
|
290
|
+
patterns: ["**/*.rs", "**/*.ts", "**/*.md"],
|
|
291
|
+
exclude: ["target/**", "node_modules/**", "www/pkg/**"],
|
|
292
|
+
},
|
|
264
293
|
];
|
|
265
294
|
//# sourceMappingURL=config.js.map
|