Pluton Terminology
We aim to abstract and simplify any-to-any cross-chain swaps and bridges through an intent-based system. To describe the protocol’s operations, we introduce the following Pluton-specific terminology:
Intent
interface Intent {
id: string
fromChainId: number
fromToken: Token
fromAmount: string
toChainId: number
toToken: Token
toAddress: string
affiliate?: string
referrer?: string
slippage: number
}Quote
interface Quote {
id: string
solverId: string
fromAmount: string
toAmount: string
fee: string
rate: string
estimatedDuration: number
executionPlan: ExecutionStep[]
}Solver
Auction
Claim
Affiliate & Referrer
Error
Example: Multi-Step Execution
Last updated