AgentSkillsCN

compact

在Midnight Network中使用Compact(Minokawa)编写隐私保护智能合约。在创建合约、定义类型、使用标准库函数或实现ZK模式时使用。触发短语:Compact语言、电路、账本状态、哈希或零知识合约问题。

SKILL.md
--- frontmatter
name: compact
description: >-
  Write privacy-preserving smart contracts in Compact (Minokawa) for Midnight Network. Use when creating
  contracts, defining types, using standard library functions, or implementing ZK patterns. Triggers on
  Compact language, circuits, ledger state, hashing, or zero-knowledge contract questions.
metadata:
  author: FractionEstate
  version: '0.18'

Compact Smart Contracts

Compact (being renamed to Minokawa) is Midnight's domain-specific language for privacy-preserving smart contracts. Contracts compile to ZK-SNARKs, enabling selective disclosure of data.

Note: As of compiler v0.26.0, the language is being renamed from "Compact" to "Minokawa" under the Linux Foundation Decentralized Trust. The toolchain commands still use compact.

Quick Start

compact
pragma language_version 0.18;

export ledger message: Opaque<"string">;

export circuit setMessage(input: Opaque<"string">): [] {
  message = disclose(input);  // Makes private input public
}

Contract Structure

Every Compact contract has three parts:

  1. Pragma - Language version (pragma language_version 0.18;)
  2. Ledger - On-chain state declarations
  3. Circuits - ZK-proven functions

Core Concepts

Privacy Model

LevelSyntaxVisibility
Privateconst x = input;Only prover
Discloseddisclose(value)Allowed to become public
Provendisclose(a >= b)Public boolean only
Witnesswitness f(...): T;Private, DApp-provided

Notes:

  • Circuit arguments and witness returns are treated as potentially private (“witness data”).
  • disclose(...) is a compiler acknowledgement: it does not itself publish anything, it just permits an expression to flow into public outputs (ledger writes / exported circuit returns / cross-contract comms).
  • Only Opaque<"string"> and Opaque<"Uint8Array"> are currently supported.

Ledger Types

compact
ledger counter: Counter;           // Auto-incrementing
ledger balances: Map<Bytes<32>, Uint<64>>;  // Key-value
ledger members: Set<Field>;        // Membership tracking
ledger tree: MerkleTree<20, Field>;  // Cryptographic proofs

Reference Files

TopicResource
Type Systemreferences/types.md - Full type reference
Standard Libraryreferences/stdlib.md - Hashing, coins, EC ops
VS Code extensionreferences/vscode-extension.md - Editor setup and tasks
Ledger Patternsreferences/ledger-patterns.md - State management
Advanced Patternsreferences/advanced-patterns.md - Access control, state machines
Detailed API Patternsreferences/detailed-api-patterns.md - API, code

Templates

TemplateDescription
assets/basic-contract.compactSimple ledger + circuit
assets/token-contract.compactToken with transfers
assets/private-voting.compactAnonymous voting
assets/commitment-reveal.compactCommit-reveal pattern

Compilation

bash
# Compile contract
compact compile contracts/my-contract.compact contracts/managed/my-contract

# Output structure
contracts/managed/my-contract/
├── contract/    # JSON artifacts
├── keys/        # ZK proving/verifying keys
└── zkir/        # ZK Intermediate Representation

Common Errors

ErrorCauseFix
Type mismatchWrong bit widthUse correct Uint<N> size
Cannot assign private to publicMissing discloseAdd disclose() wrapper
Undefined symbolImport missingCheck pragma and imports

Best Practices

  • ✅ Start with pragma language_version 0.18;
  • ✅ Use witness for private inputs that need proofs
  • ✅ Choose smallest Uint<N> that fits your data
  • ✅ Use persistentHash for on-chain data, transientHash for temp
  • ❌ Don't expose secrets via disclose() unnecessarily
  • ❌ Avoid large state (increases gas costs)

Resources