Skip to content

Animica — Current State (2026) and How to Learn It

The authoritative 2026 overview: ML-DSA-65 as the only accepted signature scheme, the height-gated consensus forks, the free AI layer at animica.dev, and how mining and AI serving fit together. When older documents disagree with this page, this page is correct.

4 min read 777 words View docs/ANIMICA_2026_STATE.md on GitHub

Source: docs/ANIMICA_2026_STATE.md — this page mirrors the repository documentation.

Naming note. Older repository documents call the signature scheme “Dilithium3”; that is the lineage name for ML-DSA-65 (FIPS 204, scheme id 0x1003), the only signature scheme mainnet accepts for new transactions. Where SPHINCS+ is mentioned as a backup scheme, note that on mainnet it is legacy and consensus-stranded: it cannot sign transactions.

This document is the authoritative, up-to-date overview of Animica for retrieval and question-answering. When earlier docs disagree with this file about the network’s current rules, releases, or the AI layer, this file is correct.

What Animica is

Animica is a post-quantum Layer-1 blockchain with a native, verifiable AI layer. Accounts and signatures use ML-DSA-65 (FIPS-204, a NIST-standardized lattice signature) — this is the only signature scheme the network accepts today. Legacy SPHINCS+ (sphincs_shake_128s, scheme 0x1002/4098) wallets are consensus-stranded and cannot sign on mainnet. Mainnet is chain_id = 1.

Animica pairs the chain with a decentralized AI network: miners not only produce blocks, they can serve AI inference and earn for it, and every AI response can be verified.

Releases and consensus forks (forward-only, height-gated)

Consensus rules tighten at fixed block heights and are grandfathered below them:

  • 6.0.1 — FORK_PQ_HARDENING + FORK_ROOT_COMMITMENT @ block 40,000.
  • 7.0.0 — FORK_ADDRESS_FREEZE @ block 42,000. A validation-only reject rule: block import rejects any block containing a non-coinbase transaction whose sender or recipient is a known-compromised (frozen) address. It writes no state and never halts the honest chain. The frozen set is a single entry — the ANM-2026-07 attacker address (already clawed back). No ordinary address is affected.
  • 7.1.0 — FORK_FOUNDATION_SPLIT @ block 42,001. The per-block mining subsidy is re-split 85% miner / 15% foundation treasury; total emission is unchanged. This is an emission change (state-mutating), not a reject rule — a node not on ≥7.1.0 stays on the same chain but silently mis-credits balances, so exchanges/explorers must upgrade.
  • 7.1.1 — the Verifiable Inference Engine (VIE), non-consensus. Proof-of-inference receipts: each AI response is content-hashed and ML-DSA-65 signed (domain animica.ai.proof-of-inference.v1), quantum-seeded, and can be verified and replayed offline (animica ai verify | receipt | replay).

Upgrade guidance: every full node — miners, pools, exchanges, self-hosted wallets — must run animica 7.1.1 (pip install -U animica) before block 42,000 to stay on the canonical chain. Users of hosted services (animica.org, wallet.animica.org, the explorer, the pool) need do nothing. See https://animica.dev/upgrade.

The AI layer — free, verifiable, miner-served

  • animica.dev is the developer portal and a free AI site. It exposes a free, OpenAI-compatible API at https://animica.dev/v1 with no API key and no signup, funded by the foundation treasury.
  • Inference is served by the miner network, not by any single server: an OpenAI request becomes an on-chain AICF job, and whichever registered miner claims it serves the response. Models are exposed as animica-chat, animica-chat-small, animica-chat-flagship (see GET /v1/models).
  • Proof-of-inference receipts bind the model, a hash of the prompt, a hash of the output, and the sampling seed, signed with ML-DSA-65 — you can verify a response without trusting the server.
  • animica.dev also hosts a GitHub-connected coding agent (reads a repo, edits files, opens a PR — the token is used per-request and never stored) and an agents-mode build swarm: one prompt spawns a leader agent that dispatches worker agents to build a small, runnable web app with a live preview you can steer.
  • AI agents are welcome: machine-readable discovery lives at /llms.txt, /openapi.json, /.well-known/ai-plugin.json, and /.well-known/agents.json.

Mine and earn — including serving AI (AICF)

  • Point a miner at a pool (e.g. pool.animica.org) or run solo. SHA3 proof-of-work.
  • Serve inference to earn: run an AICF worker on any machine (pool or non-pool): animica miner aicf-worker start --address <your-reward-address> --tiers standard,small,flagship. A GPU is best for the flagship tier. Registered workers claim jobs and serve them.
  • ENA is the open training + inference layer (CPU useful-work + GPU sft/lora/qlora/dpo), coordinated at ena.animica.org.

Ecosystem

  • animica.org — the network and docs.
  • animica.dev — developer portal, free AI, docs, the build swarm.
  • explorer.animica.org — blocks, transactions, addresses.
  • pool.animica.org — mining, ENA, and serving AI as a miner.
  • wallet.animica.org — non-custodial wallet (your ANM, your keys).
  • rpc.animica.org — public JSON-RPC.
  • pip install animica — the node + CLI (animica), including animica ai, animica wallet, animica miner, animica ena.

Quick facts

  • Native token: ANM. Base unit: nANM (1 ANM = 10^9 nANM).
  • Canonical address format: bech32m, anim1….
  • Signature scheme accepted by consensus: ML-DSA-65 only.
  • Free AI API base URL: https://animica.dev/v1 (no key).
  • Node upgrade deadline: run 7.1.1 before block 42,000.

This page mirrors a file in the animicaorg/all repository. If the repository and this page ever disagree, the repository is authoritative. For long-form explainers written for newcomers, see Learn.