Intent-Centric Architecture is a design approach where the user's desired outcome, called the intent, becomes the core object that every system component operates on. Instead of building around fixed APIs or rigid process steps, the architecture treats intents as first-class objects that services discover, interpret, and fulfill. Each component processes the intent in its own domain and passes a refined version downstream until the result matches the original request. This approach reduces integration cost because the intent is the stable contract between services. Developers can add new channels or swap backend services without rewriting workflows. In blockchain, intent-centric designs let users express what they want (swap token A for token B at the best price) without specifying how (which DEX, which route, which bridge). Solvers compete to fulfill the intent optimally. The model also supports AI-driven automation, where machine-learning models enrich intents with context and predict optimal execution paths.
Back to Glossary