# IXO Docs Hub ## Docs - [Authentication](https://ixoworld-mintlify-9a7944b6.mintlify.app/api-reference/authentication.md): Authentication patterns used across IXO Protocol and IXO service APIs. - [IXO Blocksync GraphQL API](https://ixoworld-mintlify-9a7944b6.mintlify.app/api-reference/blocksync-graphql-api.md): Read-only GraphQL query interface for indexed IXO chain data. - [Error Handling](https://ixoworld-mintlify-9a7944b6.mintlify.app/api-reference/errors.md): Comprehensive guide to error handling in IXO API - [Blockchain REST API](https://ixoworld-mintlify-9a7944b6.mintlify.app/api-reference/grpc-gateway-api.md): HTTP/JSON gateway reference for IXO Protocol gRPC query services. - [API reference](https://ixoworld-mintlify-9a7944b6.mintlify.app/api-reference/index.md): Interface reference for IXO Protocol gateways and IXO application services. - [Introduction](https://ixoworld-mintlify-9a7944b6.mintlify.app/api-reference/intro-apis.md): How to choose between IXO Protocol APIs and IXO service APIs. - [Matrix state bot API](https://ixoworld-mintlify-9a7944b6.mintlify.app/api-reference/matrix-state-bot-api.md): Service API for state and ACL operations in IXO Matrix rooms. - [Pagination](https://ixoworld-mintlify-9a7944b6.mintlify.app/api-reference/pagination.md): Guide to pagination in the IXO Blocksync GraphQL API - [Registry API](https://ixoworld-mintlify-9a7944b6.mintlify.app/api-reference/registry-api.md): Application service API reference for Impact Hub Registry workflows. - [Blockchain RPC API](https://ixoworld-mintlify-9a7944b6.mintlify.app/api-reference/rpc-api.md): Node-level API interface for IXO Protocol transactions and state queries. - [USSD gateway API](https://ixoworld-mintlify-9a7944b6.mintlify.app/api-reference/ussd-api.md): Endpoint reference for the IXO USSD gateway session API. - [Agentic Oracles](https://ixoworld-mintlify-9a7944b6.mintlify.app/articles/agentic-oracles.md): Governed AI evaluators and workflow actors that are identity-bound, evidence-grounded, protocol-governed, and audit-producing economic actors. - [Digital Twin Domains](https://ixoworld-mintlify-9a7944b6.mintlify.app/articles/cdt-systems.md): An introduction to Cognitive Digital Twin Systems - [Claim evaluation protocol](https://ixoworld-mintlify-9a7944b6.mintlify.app/articles/claim-evaluation-protocol.md): How Claims, evidence, rubrics, Agentic Oracles, and UDID records fit together in accountable IXO evaluation workflows. - [Identity and credentials](https://ixoworld-mintlify-9a7944b6.mintlify.app/articles/identity-and-credentials.md): How DIDs, claims, and verifiable credentials fit together on IXO, and how they relate to controllers, subjects, and registry state. - [Articles](https://ixoworld-mintlify-9a7944b6.mintlify.app/articles/intro-articles.md): Two reading paths: outcome-first workflows, then deeper stack articles for IXO Graph, protocol, Matrix, Blocksync, oracles, and Qi. - [Platform architecture](https://ixoworld-mintlify-9a7944b6.mintlify.app/articles/intro-platforms.md): Conceptual model of the IXO Platform stack and links to implementation docs. - [IXO Blocksync](https://ixoworld-mintlify-9a7944b6.mintlify.app/articles/ixo-blocksync.md): Conceptual overview of IXO Blocksync as the indexed graph query layer for IXO Protocol data. - [IXO Matrix](https://ixoworld-mintlify-9a7944b6.mintlify.app/articles/ixo-matrix.md): Secure cooperation spaces for people, services, and AI agents—encrypted rooms, messaging, and shared context tied to real IXO workflows. - [IXO USSD gateway](https://ixoworld-mintlify-9a7944b6.mintlify.app/articles/ixo-ussd.md): How the IXO USSD gateway extends IXO services to any GSM mobile phone. - [IXO PODs](https://ixoworld-mintlify-9a7944b6.mintlify.app/articles/pods.md): Programmable Organisational Domains for coordinating people, AI agents, services, workflows, evidence, and outcomes. - [Project Domains](https://ixoworld-mintlify-9a7944b6.mintlify.app/articles/projects.md): Manage agents and resources according to defined protocols. - [Create your oracle app](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/develop/create-oracle-app.md): createOracleApp is the entry point of every QiForge oracle. This recipe writes a complete main.ts and enumerates every option you can pass. - [Deploy your oracle](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/develop/deploy.md): Build a production bundle, persist the Matrix store, wire health probes. Platform-agnostic with a reference Dockerfile. - [Enable bundled plugins](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/develop/enable-bundled-plugins.md): Toggle the 15 bundled QiForge plugins via the features map — opt out, force on, or let auto-detect handle it — and retune their manifests. - [Identity and auth](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/develop/identity-and-auth.md): An oracle has a persistent blockchain identity (entity DID + Matrix bot) and per-user auth via UCAN delegation. This guide covers both. - [Observability](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/develop/observability.md): LangSmith tracing auto-wires from env vars. Listen to plugin lifecycle via onPluginStatusChange. Log through ctx.logger for plugin-scoped output. - [Build track — start here](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/develop/overview.md): The order to read the Build track. Recipes are code-first; concepts live in the Deep dive track and are always optional. - [Add a middleware](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/develop/plugin-recipes/add-a-middleware.md): Hook into every LLM call via beforeModel, afterModel, and wrapModelCall using createMiddleware. - [Add a sub-agent](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/develop/plugin-recipes/add-a-sub-agent.md): Wrap a focused inner agent as a single tool the main agent can delegate to. - [Add a tool](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/develop/plugin-recipes/add-a-tool.md): Register a tool the agent can call by returning it from getTools or getRequestTools. - [Add config and env vars](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/develop/plugin-recipes/add-config-and-env.md): Declare your plugin's env vars with a Zod configSchema; read typed values from ctx.config. - [Add HTTP endpoints](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/develop/plugin-recipes/add-http-endpoints.md): Contribute NestJS controllers and modules from a plugin via getNestModules, and opt routes out of UCAN auth via getAuthExcludedRoutes. - [Declare dependencies](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/develop/plugin-recipes/declare-dependencies.md): Use dependsOn for hard requirements (fails boot if missing) and softDependsOn for optional enrichment. - [Set visibility](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/develop/plugin-recipes/set-visibility.md): Control whether a plugin's tools are bound at boot, discoverable on demand, or invisible to the agent. - [Share state across plugins](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/develop/plugin-recipes/share-state.md): Expose a read-only accessor from one plugin so other plugins can read it via ctx.shared. - [Test your oracle](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/develop/test-your-oracle.md): Two layers — unit tests against a stub runtime, and integration tests that boot the real Nest app against real Matrix and a real LLM. - [Write a plugin](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/develop/write-a-plugin.md): Build the Weather plugin end-to-end. Every OraclePlugin hook against Open-Meteo (no API key required). - [For AI agents](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/for-ai-agents.md): Dense single-page reference. Every signature, every option, every env var, plus a copy-pasteable plugin template. Built so an AI agent can scaffold a QiForge oracle from this page alone. - [Build an Oracle](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/index.md): QiForge is the framework for shipping Agentic Oracles — governed AI evaluators and workflow actors with verifiable identity, encrypted per-user storage, and a plugin runtime you wire up in ~30 lines of TypeScript. - [Quickstart](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/quickstart.md): Scaffold a working oracle, boot it, and watch the agent call a plugin tool — in about ten minutes. - [API endpoints](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/api-endpoints.md): The HTTP and WebSocket surface a QiForge oracle exposes — sessions, messages, streaming chat, health, and the typed events emitted on every turn. - [agui](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/bundled-plugins/agui.md): Renders interactive UI components (tables, charts, forms) in the user's browser via AG-UI actions. - [calls](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/bundled-plugins/calls.md): LiveKit call integration — stub. Full implementation deferred. - [composio](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/bundled-plugins/composio.md): External SaaS tools (Gmail, GitHub, Linear, Slack, Notion, Jira, …) invoked on behalf of the user. - [credits](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/bundled-plugins/credits.md): Enforces per-user credit budgets and settles held credits to the chain on a cron. - [domain-indexer](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/bundled-plugins/domain-indexer.md): Domain analysis and entity lookup across the IXO ecosystem — organisations, projects, DAOs, DIDs. - [editor](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/bundled-plugins/editor.md): Reads and edits BlockNote pages — collaborative documents in the user's workspace. - [firecrawl](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/bundled-plugins/firecrawl.md): Web search and scraping of human-readable pages via Firecrawl. - [flows](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/bundled-plugins/flows.md): Opt-in flow-builder plugin: author, inspect, wire, and form-fill multi-step Qi Flow action templates on top of the editor's Qi Flow engine. - [matrix-group-chats](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/bundled-plugins/matrix-group-chats.md): Lets the oracle participate cleanly in Matrix group rooms — only replies when relevant, and keeps a searchable per-room memory. - [memory](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/bundled-plugins/memory.md): Durable memory across conversations: who the user is, what you made for them, and what worked. - [Bundled plugins](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/bundled-plugins/overview.md): Reference for every plugin the oracle runtime ships with — toggle each one through the features map, set its env vars, and ship to production. - [portal](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/bundled-plugins/portal.md): Browser-side actions on the user's Portal UI — open URLs, manipulate the DOM, run FE-declared browser tools. - [sandbox](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/bundled-plugins/sandbox.md): Per-user Linux box for code execution. Runs shell/python; writes raw bytes under /workspace/data/. - [skills](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/bundled-plugins/skills.md): Discover IXO skill capsules — the caller's published private skills first, then the public registry. - [slack](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/bundled-plugins/slack.md): Slack bot transport — runs as a NestJS module with socket-mode lifecycle. No agent-visible tools. - [tasks](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/bundled-plugins/tasks.md): Schedule the main agent to run on time-based triggers and deliver results to the user's chat — in the background, not inline. - [user-preferences](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/bundled-plugins/user-preferences.md): Behavioural preferences — how the user wants you to respond (tone, language, formality, what to call you). - [CLI reference](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/cli.md): Every qiforge-cli command — installation, authentication, oracle scaffolding, plugin scaffolding, entity ops, chat. - [@ixo/oracles-client-sdk](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/client-sdk.md): The React client SDK for QiForge oracles. useChat() hook, browser tools, and event rendering. - [createOracleApp](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/createoracleapp.md): The single entry point of every QiForge oracle. Full signature, every option, the returned OracleApp shape, and the boot sequence the function runs. - [Environment variables](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/environment-variables.md): Tier-0 (core) vars the runtime always requires, plus per-plugin vars contributed by each bundled plugin's configSchema. - [Glossary](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/glossary.md): Short definitions of QiForge terms with links to the concept or reference page where each one is fully covered. - [Manifest schema](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/manifest-schema.md): Field-by-field reference for PluginManifest — every field, type, constraint, and validation rule the runtime enforces at boot. - [Plugin API](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/plugin-api.md): OraclePlugin — the abstract class every plugin extends. Every hook signature, the defineOraclePlugin POJO helper, and the related types. - [PluginContext](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/plugin-context.md): The boot-time context passed to plugin builder hooks. Carries config, identity, availablePlugins, and a scoped logger. No user, no session, no request data. - [RuntimeContext](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/runtime-context.md): The per-request context. Every tool handler, sub-agent handler, middleware hook, and request-time builder receives one. Carries user, session, history, secrets, Matrix, UCAN, LLM, events. - [Graph state schema](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/reference/state-schema.md): MainAgentGraphState is the LangGraph state that flows through every node. Fields, reducers, the loadedPlugins addition, and what plugins may read. - [Troubleshooting](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/troubleshooting.md): Common QiForge boot errors, Matrix issues, plugin loading problems, and the fix for each. - [Architecture](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/understand/architecture.md): The three layers — your oracle, the runtime, the bundled plugins — and how they fit together. - [Plugin context vs runtime context](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/understand/contexts.md): Plugin code sees two contexts — PluginContext (boot-time, no user) and RuntimeContext (per-request, authenticated user). Knowing which one you're in is the first thing to learn. - [Manifest](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/understand/manifest.md): The plugin's interface to the LLM. Structured metadata the runtime composes into the system prompt and feeds to the discovery meta-tools. - [Meta-tools and loading](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/understand/meta-tools-and-loading.md): The agent always has two built-in tools — list_capabilities and load_capability — that power dynamic discovery and per-thread loading of on-demand plugins. - [Anatomy of a plugin](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/understand/plugin-anatomy.md): The ten contribution channels an OraclePlugin can declare and where each one plugs into the runtime. - [Plugin vs Skill](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/understand/plugins-vs-skills.md): Both extend what your oracle can do — but they're fundamentally different. Plugins ship with your oracle. Skills are discovered and executed at runtime. - [Prompt anatomy](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/understand/prompt-anatomy.md): How the runtime assembles the system prompt — 16 sections, what's automatic, what you configure. - [Request lifecycle](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/understand/request-lifecycle.md): What happens between an incoming user message and the streamed response — auth, controller, agent build, checkpointer, tool calls, save. - [Shared state](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/understand/shared-state.md): How plugins expose read-only values for other plugins to consume, without coupling their code paths. Flat namespace, read-only contract, lazy accessors. - [Visibility tiers](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/understand/visibility-tiers.md): Three modes — always, on-demand, silent — that control whether a plugin is advertised in the prompt, discoverable via the meta-tools, and callable by the LLM. - [What is QiForge?](https://ixoworld-mintlify-9a7944b6.mintlify.app/build-an-oracle/understand/what-is-qiforge.md): QiForge is the framework for building Agentic Oracles on IXO — AI agents with a verifiable identity, encrypted per-user storage, and a plugin runtime. - [Core concepts](https://ixoworld-mintlify-9a7944b6.mintlify.app/core-concepts.md): Vocabulary and mental models for IXO, Qi, entities, claims, evidence, verification, and workflows. - [Agent Evaluations](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/agent-evaluations.md): Evaluate agent work in Qi Flows using UCAN authority, Claims, evidence, rubrics, and UDID records. - [Authentication](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/authentication.md): Choose and implement the correct authentication pattern for each IXO API surface. - [Manage authorization](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/authz.md): Grant, revoke, and execute Cosmos authz and feegrant messages on the IXO Protocol. - [Authorization (Authz)](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/authz-custom.md): Understanding the core concepts and implementation of authorization in the IXO ecosystem - [Manage bonds](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/bonds.md): Create and manage algorithmic bonds, trade them, and settle outcome payments on the IXO Protocol. - [Domain privacy](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/domain-privacy.md): Apply privacy controls to domain-linked data without mixing protocol and service concerns. - [Domain settings](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/domain-settings.md): Manage domain-level DID document settings through IXO Protocol interfaces. - [Manage entities](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/entities.md): Create, transfer, verify, and govern entity domains on the IXO Protocol with the IXO MultiClient SDK. - [Implementation examples](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/examples.md): Worked end-to-end TypeScript examples for IXO MultiClient SDK and IXO Matrix Client SDK. - [Image Handling](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/image-handling.md): Learn how to use Cloudflare Image transformations for optimizing and serving images in the IXO client applications - [Claims management](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/ixo-claims.md): Build claim workflows while keeping IXO Protocol and service API responsibilities separate. - [IXO Stack SDKs](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/ixo-stack-sdks.md): Pointer page — SDK reference and developer guides for the IXO stack live in the linked locations. - [Manage liquid staking](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/liquid-staking.md): Stake and unstake IXO tokens through the liquid staking module to receive stIXO. - [Developer Overview](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/overview.md): Build AI-operable workflows on IXO: SDKs, APIs, and paths from shared state to Qi cooperation and agents. - [Session signing with SignX](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/session-keys.md): Sign transactions in browser apps without per-action wallet confirmations using the SignX SDK and the user's Impacts X mobile wallet. - [Manage smart accounts](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/smart-accounts.md): Add, remove, and toggle authenticators on IXO smart accounts to extend Cosmos SDK signing with conditional rules. - [Manage tokens](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/tokens.md): Create, mint, transfer, retire, and govern IXO Protocol tokens with the IXO MultiClient SDK. - [Deploy the IXO USSD gateway](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/ussd-gateway.md): Fork, configure, and run the open-source IXO USSD gateway to give any GSM phone access to IXO services. - [VFS hidden files and folders](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/vfs-hidden-files.md): Keep sensitive files out of listings, reads, and search in the IXO Virtual Filesystem, and reveal them selectively with the nb.hidden UCAN caveat. - [Developer workflows](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/dev/workflows.md): End-to-end IXO MultiClient SDK patterns: query client, signing client, entities, claims, and oracle-assisted evaluation. - [Digital MRV](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/digital-mrv.md): Build automated measurement, reporting, and verification systems using IoT devices, blockchain, and Agentic Oracles - [Cognitive Digital Twins](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/digital-twins.md): Build and manage cognitive digital twin systems for optimizing real-world systems and processes - [Domain Registration](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/domain-registration.md): Create and manage digital twins of real-world entities using the IXO Stack - [Impact Hub Registry](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/registry.md): Build and operate registry workflows using the Impact Hub Registry service. - [Introduction](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/users/intro-users.md): Get started with using the IXO Stack - [Use IXO services via USSD](https://ixoworld-mintlify-9a7944b6.mintlify.app/guides/users/ussd.md): How to access IXO services on any basic mobile phone using USSD — no smartphone or internet required. - [Act on Reality](https://ixoworld-mintlify-9a7944b6.mintlify.app/introduction.md): Turn your intent into verifiable outcomes, through intelligent cooperation. - [MCP Servers](https://ixoworld-mintlify-9a7944b6.mintlify.app/mcp/model-context-protocol.md): Model Context Protocol (MCP) servers for the IXO ecosystem - [Emerging Platform concepts](https://ixoworld-mintlify-9a7944b6.mintlify.app/platforms/Emerging/concepts.md): Understand the core concepts of the Emerging Platform and how they relate to Emerging Household Energy. - [Emerging Platform credential issuance](https://ixoworld-mintlify-9a7944b6.mintlify.app/platforms/Emerging/credential-issuance.md): Issue and verify verifiable credentials on Emerging Platform, then apply them in Emerging Household Energy workflows. - [Emerging Platform data integrity](https://ixoworld-mintlify-9a7944b6.mintlify.app/platforms/Emerging/data-integrity.md): Understand platform-level integrity controls used across Emerging implementations, including Emerging Household Energy. - [Digital certification overview](https://ixoworld-mintlify-9a7944b6.mintlify.app/platforms/Emerging/digital-certification.md): Understand where ITMO schema reference content ends and where Emerging Household Energy implementation guidance begins. - [Emerging Platform digital identifiers](https://ixoworld-mintlify-9a7944b6.mintlify.app/platforms/Emerging/digital-identifiers.md): Use decentralized identifiers and credentials in the Emerging Platform across solutions, including Emerging Household Energy. - [Emerging Household Energy digital vouchers](https://ixoworld-mintlify-9a7944b6.mintlify.app/platforms/Emerging/digital-vouchers.md): Implement digital voucher issuance and redemption in Emerging Household Energy benefit-transfer workflows. - [Emerging Platform dMRV](https://ixoworld-mintlify-9a7944b6.mintlify.app/platforms/Emerging/dmrv.md): Reference the reusable dMRV capability model in Emerging Platform and link into solution-specific implementation guides. - [Emerging Platform domain registration](https://ixoworld-mintlify-9a7944b6.mintlify.app/platforms/Emerging/domain-registration.md): Register and manage digital twin domains in the Emerging Platform for any solution implementation. - [Emerging Platform API surfaces](https://ixoworld-mintlify-9a7944b6.mintlify.app/platforms/Emerging/emerging-api.md): Understand platform API surfaces and how Emerging Household Energy integrations consume them. - [Household Monitoring](https://ixoworld-mintlify-9a7944b6.mintlify.app/platforms/Emerging/household-monitoring.md): Implement household-level monitoring in the Emerging Household Energy solution. - [Emerging Platform overview](https://ixoworld-mintlify-9a7944b6.mintlify.app/platforms/Emerging/intro-emerging.md): Understand what the Emerging Platform provides, when to use it, and how it differs from Emerging Household Energy. - [ITMO schema reference](https://ixoworld-mintlify-9a7944b6.mintlify.app/platforms/Emerging/itmo-schema.md): Canonical reference for ITMO credential structure, required fields, and validation rules. - [Kitchen Performance Tests](https://ixoworld-mintlify-9a7944b6.mintlify.app/platforms/Emerging/kpt.md): Run Kitchen Performance Tests (KPT) in the Emerging Household Energy solution for fuel-consumption measurement. - [Qualitative Surveys](https://ixoworld-mintlify-9a7944b6.mintlify.app/platforms/Emerging/qualitative-surveys.md): Implement qualitative survey workflows for the Emerging Household Energy solution. - [Emerging Platform registry](https://ixoworld-mintlify-9a7944b6.mintlify.app/platforms/Emerging/registry.md): Reference for the Emerging Platform registry capability used by solutions such as Emerging Household Energy. - [Emerging Household Energy SDG monitoring](https://ixoworld-mintlify-9a7944b6.mintlify.app/platforms/Emerging/sdg-monitoring.md): Implement SDG monitoring in the Emerging Household Energy solution using dMRV and verifiable claims. - [Stove Use Monitoring](https://ixoworld-mintlify-9a7944b6.mintlify.app/platforms/Emerging/stove-use-monitoring.md): Implement stove-use monitoring in the Emerging Household Energy solution using sensor data. - [USSD access channel](https://ixoworld-mintlify-9a7944b6.mintlify.app/platforms/Emerging/ussd-channel.md): How Emerging Household Energy uses USSD to give rural households offline access to IXO services. - [Authentication matrix](https://ixoworld-mintlify-9a7944b6.mintlify.app/reference/authentication-matrix.md): Canonical authentication patterns by API surface, including known header formats and ownership boundaries. - [Glossary](https://ixoworld-mintlify-9a7944b6.mintlify.app/reference/glossary.md): Short definitions of IXO and Qi terms with links to detailed documentation. - [Networks and endpoints](https://ixoworld-mintlify-9a7944b6.mintlify.app/reference/networks-and-endpoints.md): Canonical environment, network, and endpoint literals currently referenced across IXO docs. - [Product and SDK map](https://ixoworld-mintlify-9a7944b6.mintlify.app/reference/product-and-sdk-map.md): Canonical mapping between IXO products, SDK docs names, package identifiers, and primary docs routes. - [IXO and Qi Developer Kits](https://ixoworld-mintlify-9a7944b6.mintlify.app/sdk-reference/index.md): The fast-track to building custom applications and integrations - [JAMBO PWA SDK](https://ixoworld-mintlify-9a7944b6.mintlify.app/sdk-reference/jambo-wallet-sdk.md): Developer framework for building integrations with the JAMBO PWA SDK across wallet-enabled identity, asset, and transaction workflows. - [Matrix Client SDK](https://ixoworld-mintlify-9a7944b6.mintlify.app/sdk-reference/matrix-client-sdk.md): A comprehensive toolkit for interacting with Matrix servers and bot services - [IXO MultiClient SDK](https://ixoworld-mintlify-9a7944b6.mintlify.app/sdk-reference/multiclient-sdk.md): A comprehensive toolkit for building custom client applications on the IXO Stack - [SignX SDK](https://ixoworld-mintlify-9a7944b6.mintlify.app/sdk-reference/signx-sdk.md): A secure toolkit for mobile-to-web authentication and transaction signing on the IXO blockchain - [The Stack](https://ixoworld-mintlify-9a7944b6.mintlify.app/the-stack.md): Trust and AI Infrastructure for Intelligent Cooperation. - [Your Role](https://ixoworld-mintlify-9a7944b6.mintlify.app/your-role.md): Choose how you want to start your journey into the future of voluntary intelligent cooperation, based on your intent to build, fund, evaluate, research, develop, or make markets for the verified outcomes you want to achieve. ## OpenAPI Specs - [openapi](https://ixoworld-mintlify-9a7944b6.mintlify.app/api-reference/openapi.yaml) ## Optional - [Community](https://ixofoundation.slack.com/archives/C04UERAUHQT) - [Blog](https://chronicle.impacts.network/)