midnight-mcp 0.1.11 → 0.1.12
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,19 @@ export const REPO_ALIASES = {
|
|
|
86
86
|
repo: "midnight-sea-battle-hackathon",
|
|
87
87
|
},
|
|
88
88
|
shipyspace: { owner: "eddex", repo: "midnight-sea-battle-hackathon" },
|
|
89
|
+
// Mini DApp Hackathon Winners (Sep 2025)
|
|
90
|
+
statera: { owner: "statera-protocol", repo: "statera-protocol-midnight" },
|
|
91
|
+
"statera-protocol": {
|
|
92
|
+
owner: "statera-protocol",
|
|
93
|
+
repo: "statera-protocol-midnight",
|
|
94
|
+
},
|
|
95
|
+
lucentlabs: { owner: "statera-protocol", repo: "statera-protocol-midnight" },
|
|
96
|
+
stablecoin: { owner: "statera-protocol", repo: "statera-protocol-midnight" },
|
|
97
|
+
"midnight-bank": { owner: "nel349", repo: "midnight-bank" },
|
|
98
|
+
bank: { owner: "nel349", repo: "midnight-bank" },
|
|
99
|
+
zkbadge: { owner: "Imdavyking", repo: "zkbadge" },
|
|
100
|
+
badge: { owner: "Imdavyking", repo: "zkbadge" },
|
|
101
|
+
davyking: { owner: "Imdavyking", repo: "zkbadge" },
|
|
89
102
|
};
|
|
90
103
|
export const EXAMPLES = [
|
|
91
104
|
{
|
|
@@ -178,5 +191,51 @@ export const EXAMPLES = [
|
|
|
178
191
|
"Clear player interactions",
|
|
179
192
|
],
|
|
180
193
|
},
|
|
194
|
+
// Mini DApp Hackathon Winners (Sep 2025)
|
|
195
|
+
{
|
|
196
|
+
name: "Statera Protocol (LucentLabs)",
|
|
197
|
+
repository: "statera-protocol/statera-protocol-midnight",
|
|
198
|
+
description: "1st place Mini DApp winner. Private overcollateralized stablecoin with shielded liquidations. Institutional-grade DeFi with KYC compliance and full transaction privacy.",
|
|
199
|
+
category: "defi",
|
|
200
|
+
complexity: "advanced",
|
|
201
|
+
mainFile: "contract/src/statera.compact",
|
|
202
|
+
features: [
|
|
203
|
+
"Shielded stablecoin",
|
|
204
|
+
"Automated liquidations",
|
|
205
|
+
"Off-chain KYC",
|
|
206
|
+
"Private minting/staking",
|
|
207
|
+
"Institutional DeFi",
|
|
208
|
+
],
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
name: "Midnight Bank",
|
|
212
|
+
repository: "nel349/midnight-bank",
|
|
213
|
+
description: "2nd place Mini DApp winner. Private banking DApp demonstrating prove/hide/compute/reveal patterns. Shared accounts with PIN, multi-party authorization, and selective disclosure.",
|
|
214
|
+
category: "defi",
|
|
215
|
+
complexity: "intermediate",
|
|
216
|
+
mainFile: "contract/src/bank.compact",
|
|
217
|
+
features: [
|
|
218
|
+
"Encrypted balances",
|
|
219
|
+
"PIN-protected accounts",
|
|
220
|
+
"Multi-party auth",
|
|
221
|
+
"Selective disclosure",
|
|
222
|
+
"Private transfers",
|
|
223
|
+
],
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
name: "zkBadge (Davyking)",
|
|
227
|
+
repository: "Imdavyking/zkbadge",
|
|
228
|
+
description: "3rd place Mini DApp winner. Privacy-preserving identity and access control. Issue verifiable credentials (e.g., age proof) without revealing personal data. Only 'verified' status stored on-chain.",
|
|
229
|
+
category: "identity",
|
|
230
|
+
complexity: "intermediate",
|
|
231
|
+
mainFile: "contract/src/zkbadge.compact",
|
|
232
|
+
features: [
|
|
233
|
+
"ZK credentials",
|
|
234
|
+
"Off-chain verification",
|
|
235
|
+
"On-chain badges",
|
|
236
|
+
"Access control",
|
|
237
|
+
"Reputation system",
|
|
238
|
+
],
|
|
239
|
+
},
|
|
181
240
|
];
|
|
182
241
|
//# sourceMappingURL=constants.js.map
|
package/dist/utils/config.js
CHANGED
|
@@ -239,5 +239,27 @@ export const DEFAULT_REPOSITORIES = [
|
|
|
239
239
|
patterns: ["**/*.compact", "**/*.ts", "**/*.md"],
|
|
240
240
|
exclude: ["node_modules/**", "dist/**"],
|
|
241
241
|
},
|
|
242
|
+
// Mini DApp Hackathon Winners (Sep 2025)
|
|
243
|
+
{
|
|
244
|
+
owner: "statera-protocol",
|
|
245
|
+
repo: "statera-protocol-midnight",
|
|
246
|
+
branch: "main",
|
|
247
|
+
patterns: ["**/*.compact", "**/*.ts", "**/*.md"],
|
|
248
|
+
exclude: ["node_modules/**", "dist/**"],
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
owner: "nel349",
|
|
252
|
+
repo: "midnight-bank",
|
|
253
|
+
branch: "main",
|
|
254
|
+
patterns: ["**/*.compact", "**/*.ts", "**/*.md"],
|
|
255
|
+
exclude: ["node_modules/**", "dist/**"],
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
owner: "Imdavyking",
|
|
259
|
+
repo: "zkbadge",
|
|
260
|
+
branch: "main",
|
|
261
|
+
patterns: ["**/*.compact", "**/*.ts", "**/*.md"],
|
|
262
|
+
exclude: ["node_modules/**", "dist/**"],
|
|
263
|
+
},
|
|
242
264
|
];
|
|
243
265
|
//# sourceMappingURL=config.js.map
|