{"prompt": "What is Animica?", "response": "Animica is a post-quantum Layer-1 blockchain combined with an open AI compute network. It pairs a Proof-of-Work chain secured by post-quantum signatures with ENA and AICF, which let people contribute compute to run AI inference and training and earn the native token, ANM. It also runs deterministic Python smart contracts on its built-in VM."}
{"prompt": "What is the native token of Animica?", "response": "ANM. It has 9 decimals, so 1 ANM equals 1,000,000,000 base (nano) units. ANM pays transaction fees and gas, rewards miners and AI contributors, and funds AI jobs and contracts."}
{"prompt": "What makes Animica post-quantum?", "response": "Account signatures use post-quantum schemes instead of ECDSA: ML-DSA-65 (FIPS 204), Dilithium3, and SPHINCS+ (SHAKE-128s). Contracts can also verify these signatures on-chain via the pq_verify stdlib."}
{"prompt": "What is Animica's chain ID?", "response": "The Animica mainnet chain ID is 1."}
{"prompt": "What consensus does Animica use?", "response": "Proof-of-Work. Blocks are secured by SHA3-based hashing; block times depend on the current network hashrate."}
{"prompt": "What hash function does Animica use?", "response": "SHA3-256 (the NIST standard, not Keccak) for addresses, transaction hashing, and receipts. Contracts can also use keccak256 via the hash stdlib."}
{"prompt": "How are Animica blocks and messages encoded?", "response": "With canonical CBOR. Floating-point values are rejected at the wire and consensus layers so every node encodes state deterministically."}
{"prompt": "Why does Animica reject floats in consensus encoding?", "response": "Floating-point is not byte-for-byte deterministic across platforms. To keep every node's canonical CBOR identical, Animica rounds or rejects floats. This is also why smart contracts must never use floats."}
{"prompt": "Does Animica have data availability?", "response": "Yes. Animica has a data-availability (DA) layer. From the CLI use `animica da submit` and `animica da retrieve`; contracts can pin blobs with the syscalls.blob_pin stdlib."}
{"prompt": "What does an Animica address look like?", "response": "Animica addresses are bech32m strings beginning with `anim1` (for example anim1zqp...). They encode a 2-byte algorithm id plus the 32-byte SHA3-256 digest of the public key."}
{"prompt": "How is an Animica address derived?", "response": "address = bech32m(\"anim\", u16be(alg_id) || sha3_256(public_key)). The 34-byte payload is a 2-byte big-endian algorithm id followed by the 32-byte SHA3-256 digest of the raw public key."}
{"prompt": "What are the Animica signature algorithm ids?", "response": "ml_dsa_65 = 0x1003 (4099), dilithium3 = 0x1001 (4097), sphincs_shake_128s = 0x1002 (4098). Contract addresses use alg_id 0x0000."}
{"prompt": "Why must Animica addresses use bech32m and not bech32?", "response": "bech32m (BIP-350, checksum constant 0x2bc830a3) and plain bech32 differ only in the 6-character checksum. Plain bech32 yields a valid-looking address with the wrong tail, so cross-client validation silently fails. Animica addresses must use bech32m."}
{"prompt": "What fields does an Animica transaction have?", "response": "chain_id, nonce, from_addr (32 bytes), to_addr (32 bytes), value (base units), fee, data (calldata), and an optional memo (up to 256 bytes)."}
{"prompt": "How do I send ANM from the CLI?", "response": "animica tx send --from <addr-or-index> --to anim1... --value 1.5 . The node signs with the sender's post-quantum key and broadcasts the transaction."}
{"prompt": "How can I look up a transaction over RPC?", "response": "Call tx.getTransaction with the transaction hash (passed positionally), or tx.getTransactionStatus for confirmation status. The explorer also shows transactions."}
{"prompt": "What is the Animica public RPC endpoint?", "response": "rpc.animica.org/rpc serves JSON-RPC 2.0 over HTTPS via POST. Chain id is 1. Common methods: chain.getHead, tx.send, tx.getTransaction, state.getBalance."}
{"prompt": "How do I check an account balance over RPC?", "response": "Call state.getBalance (or account.getBalance) with the address, or look the address up on explorer.animica.org."}
{"prompt": "How do I install the Animica CLI?", "response": "Run: pip install --upgrade animica . For AI training extras (PyTorch, transformers, PEFT, TRL, bitsandbytes), install: pip install --upgrade \"animica[gpu]\"."}
{"prompt": "What command groups does the animica CLI have?", "response": "node, wallet, key, tx, chain, rpc, mempool, miner, da, network, peer, sync, contract, ena, aicf, and bittensor. Run `animica --help` to list them."}
{"prompt": "How do I start an Animica node?", "response": "animica node up (mainnet by default). Check it with `animica node status` and `animica sync status`."}
{"prompt": "How do I create a wallet from the CLI?", "response": "animica wallet new (or use the `animica key` commands). List accounts with `animica wallet list`."}
{"prompt": "What wallets can I use with Animica?", "response": "A browser extension (injects window.animica), a Qt desktop wallet (Windows/macOS/Linux), an Android wallet, and the web wallet at wallet.animica.org. Get them from animica.org/wallet."}
{"prompt": "How does a website connect to the Animica browser wallet?", "response": "The extension injects a provider at window.animica and fires `animica#initialized` when ready. Connect with window.animica.request({ method: 'animica_requestAccounts' }) and send with 'animica_sendTransaction'."}
{"prompt": "How do I mine on Animica?", "response": "Install the CLI and run: animica miner dual-mine <your-anim1-address> . Pool details and downloads are at pool.animica.org; the stratum endpoint is on port 3333."}
{"prompt": "What is dual mining on Animica?", "response": "It runs the Animica ANM miner and a Monero (XMR) miner together, splitting effort so you earn ANM while also mining XMR. The CLI auto-resolves the miner binaries."}
{"prompt": "What is ENA?", "response": "ENA is Animica's open AI training and inference network. Contributors run real AI jobs — data curation, evaluation, retrieval, and fine-tuning — and earn ANM. Every verified job mints an on-chain receipt. The site is ena.animica.org."}
{"prompt": "How do I contribute compute to ENA?", "response": "Install the CLI and run: animica ena worker start --worker-id <id> --endpoint https://ena.animica.org/api . Your machine claims jobs, runs them, and earns ANM per verified job."}
{"prompt": "What training methods does ENA support?", "response": "SFT, LoRA, QLoRA (4-bit), DPO, and CPU distillation via the python_transformers backend, plus a `command` backend to launch an external trainer."}
{"prompt": "How do I request an AI job on ENA?", "response": "On ena.animica.org connect your Animica wallet, choose a job type, and pay ANM to fund it. The payment is bound to the job on-chain (job_hash in the memo); the contributor fleet runs it."}
{"prompt": "How do I get the ENA starter dataset?", "response": "Download it and load it into ENA: `curl -O https://ena.animica.org/animica-knowledge.jsonl` then `animica ena datasets contribute animica-knowledge.jsonl`. To fine-tune on it: `animica ena train prepare --dataset animica-knowledge.jsonl --out manifests/run.json --base-model Qwen/Qwen2.5-1.5B --backend python_transformers --method lora --auto-split`."}
{"prompt": "What is AICF?", "response": "AICF, the AI Compute Fund, is Animica's off-chain compute coordination layer. It matches AI and quantum jobs to providers, ties completed work to on-chain proofs, and prices and settles rewards under transparent policy and SLA rules."}
{"prompt": "What is the difference between ENA and AICF?", "response": "AICF is the accounting and coordination layer — queue, economics, proofs, settlement. ENA is the execution and orchestration layer — the agent, retrieval, useful-work, and training that runs the jobs and produces the receipts AICF settles."}
{"prompt": "Does Animica support smart contracts?", "response": "Yes. Animica runs deterministic Python smart contracts on a built-in Python VM (vm_py). You write a contract as a Python module, compile it to an artifact, deploy it, then call or send transactions to its methods with the `animica contract` CLI."}
{"prompt": "What language are Animica smart contracts written in?", "response": "Python. A contract is an ordinary Python module whose public (non-underscore) top-level functions become the callable contract methods. It runs on Animica's deterministic Python-VM, not the EVM."}
{"prompt": "How does an Animica contract differ from a normal Python script?", "response": "It must be fully deterministic: no wall-clock time, no system randomness, no network or filesystem, no floats. State lives only in VM storage, and side effects happen only through the VM stdlib (storage, events, treasury, etc.). Use abi.block_timestamp() instead of time, and syscalls.get_beacon()/random_bytes() instead of random."}
{"prompt": "What modules can an Animica contract import?", "response": "Only the VM stdlib: `from stdlib import abi, events, storage, treasury, hash, hash_work, pq_verify, syscalls, ena`. These are the deterministic syscall surface; arbitrary imports (os, time, random, requests) are not available."}
{"prompt": "What are the rules for deterministic Animica contracts?", "response": "No floats; no wall-clock (use abi.block_timestamp()); no system randomness (use syscalls.get_beacon() or random_bytes()); no I/O; bounded loops only; integers behave as exact big integers but you should keep on-chain values within documented bounds (e.g. signed/unsigned 256-bit) and encode them deterministically."}
{"prompt": "How are public methods defined in an Animica contract?", "response": "Top-level functions whose names do not start with an underscore are the contract's public methods. Underscore-prefixed functions (e.g. _helper) are private and not callable from outside. Method arguments and return values are encoded by the VM ABI."}
{"prompt": "What is in the Animica contract storage stdlib?", "response": "`storage` is a key/value store of bytes: storage.get(key, default=None) -> bytes, storage.set(key, value), storage.delete(key). Keys and values are bytes. There are no native maps — model a mapping by prefixing keys, e.g. b'bal:' + address."}
{"prompt": "How do I store an integer in Animica contract storage?", "response": "Storage holds bytes, so encode integers deterministically as fixed-width big-endian. For an unsigned value: storage.set(key, int(v).to_bytes(32, 'big')); read back with int.from_bytes(storage.get(key) or b'', 'big'). Use signed=True for signed values."}
{"prompt": "How do I emit an event from an Animica contract?", "response": "events.emit(name: bytes, args: dict). For example: events.emit(b'Transfer', {'from': frm, 'to': to, 'amount': amount}). Events are recorded in the transaction receipt as canonical logs."}
{"prompt": "How do I revert or assert in an Animica contract?", "response": "Use abi.require(condition, b'error_name') to assert, or abi.revert(b'error_name') to fail unconditionally. A revert aborts the call and rolls back all state changes made in it."}
{"prompt": "How does an Animica contract read the caller and value?", "response": "From the abi context: abi.caller() is the immediate caller's 32-byte address, abi.sender()/abi.tx_origin() is the original transaction sender, and abi.value() is the ANM (base units) sent with the call. abi.self_address()/abi.contract_address() give the contract's own address."}
{"prompt": "What block and transaction context can an Animica contract read?", "response": "abi.block_height(), abi.block_timestamp(), abi.chain_id(), abi.tx_hash(), abi.call_depth(), and abi.is_read_only() (True inside a view/call, False inside a send). Use block_timestamp() for time-based logic — never wall-clock time."}
{"prompt": "How do contracts move native ANM?", "response": "Via the treasury stdlib: treasury.balance(address) -> int returns an account's ANM balance, and treasury.transfer(from_addr, to_addr, amount) moves ANM. A contract transfers from its own address with from_addr = abi.self_address()."}
{"prompt": "Can an Animica contract hash data?", "response": "Yes: hash.sha3_256(data), hash.keccak256(data), hash.sha3_512(data). For mining-style hashing the hash_work stdlib adds sha256, sha256d, blake2b_256, and helpers like compute_commitment and verify_hash_result."}
{"prompt": "Can an Animica contract verify a post-quantum signature?", "response": "Yes. pq_verify.verify(...) verifies an ML-DSA/Dilithium/SPHINCS+ signature inside the contract, so contracts can authenticate messages signed by post-quantum keys (e.g. multisig or meta-transactions)."}
{"prompt": "How does an Animica contract get randomness?", "response": "Deterministically, from the chain: syscalls.get_beacon() returns the current randomness beacon and syscalls.random_bytes(n) returns n bytes derived from it. Never use Python's random module — it is non-deterministic and unavailable."}
{"prompt": "Can an Animica contract call AI or quantum jobs?", "response": "Yes — this is a core feature. syscalls.ai_enqueue(model, prompt) and the higher-level ena.request(...) submit AI inference jobs; syscalls.quantum_enqueue(circuit, shots) submits quantum jobs; syscalls.zk_verify(circuit, proof, public_input) verifies a zero-knowledge proof; results are read back once settled with ena.get_status / ena.get_result_hash / syscalls.read_result."}
{"prompt": "Can one Animica contract call another?", "response": "Yes. abi.call_contract(address, method, args) performs a cross-contract call and returns the decoded result; abi.try_call_contract(...) returns a success flag instead of reverting. Watch abi.call_depth() to bound recursion."}
{"prompt": "How does an Animica contract pin a blob to data availability?", "response": "syscalls.blob_pin(namespace, data) publishes data to the DA layer and returns a commitment the contract can store or emit, letting large payloads live off the main state while staying verifiable."}
{"prompt": "Show a complete minimal Animica smart contract.", "response": "A storage-backed counter with get/inc/reset, events, and bounds checks:\n\n```python\nfrom stdlib import abi, events, storage  # provided by the Animica Python-VM\n\nKEY = b\"counter\"\nINT256_MIN, INT256_MAX = -(1 << 255), (1 << 255) - 1\n\ndef _get() -> int:\n    b = storage.get(KEY)\n    return int.from_bytes(b, \"big\", signed=True) if b else 0\n\ndef _set(v: int) -> None:\n    abi.require(INT256_MIN <= v <= INT256_MAX, b\"overflow\")\n    storage.set(KEY, int(v).to_bytes(32, \"big\", signed=True))\n\ndef get() -> int:            # stateMutability: view\n    return _get()\n\ndef inc(by: int) -> int:     # stateMutability: nonpayable\n    abi.require(by >= 1, b\"by_must_be_positive\")\n    v = _get() + by\n    _set(v)\n    events.emit(b\"Incremented\", {\"by\": by, \"value\": v})\n    return v\n\ndef reset(to: int) -> int:\n    _set(to)\n    events.emit(b\"Reset\", {\"value\": to})\n    return to\n```"}
{"prompt": "Write a simple fungible token contract for Animica.", "response": "A minimal token with a one-time constructor, balances, and transfer:\n\n```python\nfrom stdlib import abi, events, storage\n\nKEY_SUPPLY = b\"supply\"\ndef _bal_key(addr: bytes) -> bytes: return b\"bal:\" + addr\n\ndef _get_int(key: bytes) -> int:\n    b = storage.get(key)\n    return int.from_bytes(b, \"big\") if b else 0\n\ndef _set_int(key: bytes, v: int) -> None:\n    abi.require(0 <= v < (1 << 256), b\"uint256_range\")\n    storage.set(key, int(v).to_bytes(32, \"big\"))\n\ndef setup(owner: bytes, supply: int) -> None:           # one-time constructor\n    abi.require(_get_int(KEY_SUPPLY) == 0, b\"already_initialized\")\n    abi.require(supply > 0, b\"bad_supply\")\n    _set_int(KEY_SUPPLY, supply)\n    _set_int(_bal_key(owner), supply)\n    events.emit(b\"Mint\", {\"to\": owner, \"amount\": supply})\n\ndef totalSupply() -> int:                               # view\n    return _get_int(KEY_SUPPLY)\n\ndef balanceOf(addr: bytes) -> int:                      # view\n    return _get_int(_bal_key(addr))\n\ndef transfer(to: bytes, amount: int) -> bool:           # nonpayable\n    frm = abi.caller()\n    abi.require(amount > 0, b\"bad_amount\")\n    bal = _get_int(_bal_key(frm))\n    abi.require(bal >= amount, b\"insufficient_balance\")\n    _set_int(_bal_key(frm), bal - amount)\n    _set_int(_bal_key(to), _get_int(_bal_key(to)) + amount)\n    events.emit(b\"Transfer\", {\"from\": frm, \"to\": to, \"amount\": amount})\n    return True\n```\nBalances are stored under b'bal:'+address keys (there are no native maps), amounts are 256-bit big-endian, and transfer authorizes the sender with abi.caller() and guards with abi.require."}
{"prompt": "Write an escrow contract for Animica that holds and releases ANM.", "response": "An escrow with a constructor, access control, and a native ANM payout:\n\n```python\nfrom stdlib import abi, events, storage, treasury\n\nS_INIT, S_RELEASED = b\"INIT\", b\"RELEASED\"\nK_STATE, K_AMOUNT, K_DEP, K_BEN = b\"state\", b\"amount\", b\"dep\", b\"ben\"\n\ndef setup(depositor: bytes, beneficiary: bytes, amount: int) -> None:\n    abi.require(storage.get(K_STATE) is None, b\"already_initialized\")\n    abi.require(amount > 0, b\"bad_amount\")\n    storage.set(K_DEP, depositor)\n    storage.set(K_BEN, beneficiary)\n    storage.set(K_AMOUNT, int(amount).to_bytes(32, \"big\"))\n    storage.set(K_STATE, S_INIT)\n\ndef release() -> None:                       # only the beneficiary, once funded\n    abi.require(abi.caller() == storage.get(K_BEN), b\"only_beneficiary\")\n    abi.require(storage.get(K_STATE) == S_INIT, b\"not_releasable\")\n    need = int.from_bytes(storage.get(K_AMOUNT), \"big\")\n    me = abi.self_address()\n    abi.require(treasury.balance(me) >= need, b\"underfunded\")\n    treasury.transfer(me, storage.get(K_BEN), need)\n    storage.set(K_STATE, S_RELEASED)\n    events.emit(b\"Released\", {\"to\": storage.get(K_BEN), \"amount\": need})\n```\nIt funds via ANM sent to the contract address, only the beneficiary can release, and the payout uses treasury.transfer from abi.self_address()."}
{"prompt": "Show an Animica contract that uses on-chain AI (ENA).", "response": "A contract that enqueues an ENA classification job and reads the settled result:\n\n```python\nfrom stdlib import abi, events, storage, ena\n\nK_LAST = b\"last_request\"\n\ndef classify(text: bytes) -> bytes:          # nonpayable: enqueue an ENA job\n    rid = ena.request(model_version=b\"ena-active\", task_type=b\"classify\",\n                      input_bytes=text, fee_limit=10000)\n    storage.set(K_LAST, rid)\n    events.emit(b\"Requested\", {\"request_id\": rid})\n    return rid\n\ndef result() -> bytes:                       # view: read the settled result hash\n    rid = storage.get(K_LAST)\n    abi.require(rid is not None, b\"no_request\")\n    if ena.get_status(rid) != b\"completed\":\n        abi.revert(b\"not_ready\")\n    return ena.get_result_hash(rid)\n```\nThe contract submits the job with ena.request, stores the request id, and later reads the result hash once ena.get_status reports it completed."}
{"prompt": "How do I implement a mapping in an Animica contract?", "response": "There are no native maps; compose a key from a prefix plus the key bytes and store the value, e.g. storage.set(b'bal:' + addr, amount_bytes) and read with storage.get(b'bal:' + addr). Use distinct prefixes (b'bal:', b'allow:') to namespace different mappings."}
{"prompt": "How do I add a constructor / initializer to an Animica contract?", "response": "Expose a one-time setup method (e.g. setup(owner, supply)) that guards against re-initialization, for example: abi.require(storage.get(b'init') is None, b'already_initialized'); storage.set(b'init', b'1'). The deploy step can pass constructor arguments to it."}
{"prompt": "How do I do access control in an Animica contract?", "response": "Compare abi.caller() against an owner stored at deploy time: store the owner in setup (storage.set(b'owner', owner)) and gate privileged methods with abi.require(abi.caller() == storage.get(b'owner'), b'only_owner')."}
{"prompt": "What is the Animica contract ABI format?", "response": "A JSON document with encoding 'animica.abi.v1' describing name, version, namespace, types, and functions. Each function has name, stateMutability (view | nonpayable | payable), payable, inputs (name/type), outputs, and docs. Address types are bech32m anim1 strings."}
{"prompt": "What are the state mutabilities for Animica contract methods?", "response": "`view` (read-only, no state change — used by `call`), `nonpayable` (changes state but rejects ANM value), and `payable` (changes state and accepts ANM value via abi.value()). Reads use `animica contract call`; state changes use `animica contract send`."}
{"prompt": "How do I compile an Animica contract?", "response": "animica contract compile path/to/contract.py --out build/contract.avm --abi-out build/contract.abi.json . This produces the deployable artifact (.avm) and the ABI JSON."}
{"prompt": "How do I deploy an Animica contract?", "response": "animica contract deploy build/contract.avm --from main --abi build/contract.abi.json --constructor-args '[\"anim1owner...\", 1000000]' . You can deploy a source file directly too; pass constructor arguments as JSON."}
{"prompt": "How do I call a read-only Animica contract method?", "response": "animica contract call <contract> <method> --args '[...]' . For example: animica contract call counter get . Reads are free (no transaction) and run against current state."}
{"prompt": "How do I send a state-changing transaction to an Animica contract?", "response": "animica contract send <contract> <method> --from main --args '[...]' --wait . For example: animica contract send counter inc --args '[1]' --from main --wait . `--wait` blocks until the transaction is confirmed."}
{"prompt": "What other animica contract subcommands exist?", "response": "inspect (deployment/ABI metadata), address (resolve a saved alias), estimate-gas, encode-calldata and decode-result (ABI codec helpers), receipt (fetch a tx receipt), save-deployment, and list-artifacts."}
{"prompt": "How is gas handled for Animica contracts?", "response": "Each VM operation and stdlib syscall has a fixed gas cost (see vm_py/gas_table.json). The transaction's fee must cover the gas used; estimate it with `animica contract estimate-gas <contract> <method> --args '[...]'`. Deterministic, bounded execution keeps gas predictable."}
{"prompt": "How do I test an Animica contract before deploying?", "response": "Write local pytest tests that load the contract through the VM test harness and invoke methods with a simulated call context (sender, value), then assert on returned values, storage, and emitted events — no running node required. The contracts/tests directory has examples (token, escrow, multisig, oracle)."}
{"prompt": "What security practices apply to Animica contracts?", "response": "Use abi.require for every precondition; follow checks-effects-interactions (update storage before external calls/transfers); gate privileged methods with abi.caller(); guard re-initialization; bound all loops; keep integers in documented ranges; and watch abi.call_depth() and treasury.transfer ordering to avoid reentrancy. Never trust off-chain input without validation."}
{"prompt": "Where do Animica contract artifacts and deployments live?", "response": "By default under artifacts/ (compiled .avm artifacts plus an index) and deployments/<network-key>/ (deployment records by network/chain). Records include the contract address, abi, tx_hash, block_height, and deployer; saved aliases let you call by name."}
{"prompt": "How do I reference a deployed contract by name in the CLI?", "response": "Deployments can be saved with an alias so you can run `animica contract call <alias> <method>`; resolve the address with `animica contract address <alias>` and inspect metadata with `animica contract inspect <alias>`."}
{"prompt": "Can an Animica contract read another account's ANM balance?", "response": "Yes — treasury.balance(address) returns any address's ANM balance in base units. A contract reads its own balance with treasury.balance(abi.self_address())."}
{"prompt": "How should an Animica contract handle time-based logic?", "response": "Use abi.block_timestamp() (the block's timestamp) and/or abi.block_height() for deadlines and schedules. Never use Python's time/datetime — they are non-deterministic and unavailable in the VM."}
