惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
月光博客
月光博客
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
U
Unit 42
腾讯CDC
爱范儿
爱范儿
J
Java Code Geeks
有赞技术团队
有赞技术团队
Blog — PlanetScale
Blog — PlanetScale
N
Netflix TechBlog - Medium
B
Blog
Stack Overflow Blog
Stack Overflow Blog
GbyAI
GbyAI
T
The Blog of Author Tim Ferriss
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure Blog
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Introducing MAIS: A Privacy-Preserving Identity Standard ...
M Zidan Fato · 2026-05-18 · via DEV Community

AI agents are coming to Midnight Network. But there is no standard way for them to prove who they are.

Midnight mainnet launched in March 2026. Developer activity has surged. Midnight City runs Gemini powered agents on a live testbed. AlphaTON is building privacy agents for Telegram's billion users. Yet every team building agents on Midnight today invents its own identity scheme from scratch.

That is the problem MAIS aims to fix.

What is MAIS

MAIS stands for Midnight Agent Identity Standard. It is a proposed MIP (Midnight Improvement Proposal) that defines how autonomous AI agents register, build reputation, get validated, and disclose information on Midnight Network. All of this respects Midnight's core strength: privacy through zero knowledge proofs.

Ethereum has ERC-8004 for agent identity, but it lives on a transparent chain. Every agent's metadata, reputation score, and validation record sits in public view. That works for open ecosystems but fails when agents operate in competitive domains. A trading agent's strategy is its edge. You cannot put its full identity trail on chain for competitors to study.

Midnight lets us do better. Trust that is verifiable, without giving away how the agent operates.

The Four Contracts

MAIS is four Compact contracts.

Identity Registry

Agents register in one of two modes. Public mode uses the agent's Compact address as its identity, suitable for open marketplaces. Private mode uses a ZK credential where the contract stores only a commitment. The operator proves they know the credential without revealing the underlying identity. Both modes share the same interface.

const agent = new MAISAgent({
  identityMode: 'public',
  operator: midnightWallet,
  metadata: {
    name: 'TradingBot Alpha',
    capabilities: ['TRADING'],
  },
});
await agent.register();

Enter fullscreen mode Exit fullscreen mode

Reputation Registry

Scores are public. Anyone can read an agent's reputation tier in a single on chain lookup. But the evidence that produced the score stays private, stored as hash commitments. Competitors cannot reverse engineer an agent's strategy from its reputation trail.

Three tiers sit on top of a 0 to 100 score. Basic covers 0 to 59. Proven covers 60 to 89. Institutional covers 90 to 100. Evidence from higher tier validators carries more weight. Scores decay over time without fresh activity.

An agent can also generate a ZK proof: "my score is at least 60". The verifier learns the threshold is met without learning the exact score.

const proof = await agent.proveReputation({ minScore: 60 });
// Submit to counterparty for verification

Enter fullscreen mode Exit fullscreen mode

Validation Registry

Three validator tiers with staking and slashing. Open validators can be anyone with 10k NIGHT staked. Trusted validators need a Foundation audit and 50k NIGHT. Institutional validators need ZK KYC and 100k NIGHT. Every validator has an accuracy score tracked on chain. Bad validations cost stake.

Disclosure Tier Registry

Agent data maps directly onto Midnight's three tier privacy model. Public tier shows identity and reputation score. Auditor tier adds activity logs for designated reviewers and regulators. Private tier holds transaction contents and strategy, accessible only to the operator.

Optional ERC-8004 Bridge

A separate contract lets agents link their Midnight identity to an ERC-8004 NFT on Ethereum. This makes MAIS agents visible in the broader EVM agent ecosystem and brings Ethereum reputation data into Midnight.

Why This Matters Now

Midnight mainnet is live, with Google Cloud running as a validator. Developer activity jumped 1,600 percent after the Summit. If we do not establish an identity standard now, the ecosystem will fragment into incompatible schemes. Every project will build its own, and agents from different teams will not be able to trust each other.

MAIS gives agent builders a single standard to target. Build once, interoperate with everything.

What is Next

The proposal is in draft and collecting feedback right now. There is a forum thread for discussion, a MIP document in the GitHub repo, and plans for a community workshop in the coming weeks.

If you are building agents on Midnight, or thinking about it, I would love your input. Does the dual mode identity make sense? Are the reputation tiers right? What metadata fields do you need that are missing?

Drop your thoughts on the forum thread or open an issue on the GitHub repo.

We are building the identity layer for Midnight's agent economy. Come help shape it.


Links: