What Is an Intent?
An intent is a declarative instruction that answers:“What should happen?”not
“How should this transaction be executed?”For example:
- “Swap USDC to ETH at the best private rate”
- “Bridge assets to the destination chain with minimal slippage”
- “Deposit funds into the highest private yield strategy”
- “Pay a recipient privately”
How Encrypted Intents Work
In Fluton, intents are encrypted at creation and remain encrypted throughout execution. The intent payload is encrypted using Fluton’s cryptographic stack (FHE), which ensures that:- No relayer, solver, or validator can see the plaintext intent
- Execution logic operates directly on encrypted data
Intent Lifecycle
Every encrypted intent follows the same lifecycle:1
Intent Creation
User defines an intent and encrypts it.
2
Encrypted Intent Submission
The intent gets submitted on-chain.
3
Confidential Routing
The intent is routed to the necessary router.
4
Confidential Execution
The intent is fulfilled.
5
Private Settlement
The intent is settled. Privacy is obtained from start to end.
CREATED(registered)OFFERED(>=1 offer available)SUBMITTED(confirmed onchain)FULFILLING(solver executing on destination)FULFILLED(user received output on destination)SETTLING(repayment in progress)SETTLED(registered)EXPIRED(no offers given)TIMED_OUT(relayer didn’t fulfill)FAILED(with reason)