Reliability of quotes
DLN’s API emphasizes “minimum reasonable” outcomes through market-aware protections. When intermediary swaps are required (for example, when moving between volatile assets and their paired counterparts), DeFi aggregators are queried and the route is simulated prior to returning calldata. The result is a quote grounded in what can be executed at the time of request, rather than an idealized price projection. Given that market conditions shift rapidly, the returned quotes carry a freshness expectation: signing and submission should occur within approximately 30 seconds, after which re-quoting is recommended. Interfaces that integrate DLN are therefore expected to encourage timely confirmations or refresh estimates automatically.Contracts and integration model
On EVM chains, same-chain swaps consistently route through theDeBridgeRouter. The API abstracts away low-level venue interaction, delivering
transaction objects that are pre-targeted and structured for execution. On Solana, the response is intentionally minimal: the tx field contains a
single hex-encoded VersionedTransaction that can be deserialized and signed by wallets.
Integration simplicity
The same-chain swap process is designed to be as straightforward as possible, with a tight API surface that minimizes complexity and potential points of failure, ensuring a smooth integration experience and superb user experience. The flow relies on two key endpoints:/v1.0/chain/estimation— provides a quote, usable prior to wallet connection or before recipient details are specified./v1.0/chain/transaction— repeats the request with wallet and recipient information, returning a ready-to-sign transaction object.
Adaptive slippage and slippage management
Explicit slippage can be provided, but the recommended practice is to defer to the API’s automatic controls. DLN interpretsauto as a dynamic
guardrail derived from live conditions and route simulation, thus providing adaptive slippage in the response. This approach provides resilience
in volatile markets, instead of relying on a slippage value that doesn’t adapt to the market conditions. Manual overrides should be reserved for
exceptional cases; otherwise, automatic limits ensure consistency and protection.
Affiliate fees
Affiliate fees transform same-chain swaps from a pure utility into a monetizable integration pathway. At the protocol level, every swap request can carry parameters that define both the affiliate fee percentage and the recipient of those fees. This ensures that each executed swap can simultaneously deliver value to end users and revenue back to the integrator. On EVM chains, settlement occurs automatically during the swap transaction execution. On Solana, integration leverages Jupiter’s referral infrastructure, where referral keys act as the designated recipient, and accumulated fees can be claimed via the Jupiter dashboard. Because affiliate fees are embedded in the request layer, no additional complexity is introduced to the swap flow itself. The estimation and transaction endpoints function as usual, with affiliate metadata included transparently. This design aligns with DLN’s guiding principle of minimizing integration friction while unlocking new revenue streams for integrators.Tracking and observability
Swap outcomes are tracked through the Stats API. Queries can be performed usingfilteredList for wallet histories, or by transaction hash for a
single order, or by the referral code for the integration.
Same-chain Swaps are available in the deBridge Explorer under the Same-Chain filter.
For tracking orders related to an integration, referral code must be generated and included in requests. Instructions for generating a referral code
are available in the referrers guide.