> For the complete documentation index, see [llms.txt](https://docs-v4.venus.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-v4.venus.io/technical-reference/reference-periphery/swap-router.md).

# SwapRouter

### Overview

The `SwapRouter` is a Venus periphery contract that enables users to swap tokens and interact with Venus markets in a single transaction. It supports both ERC-20 and native tokens (e.g., BNB), allowing users to supply or repay Venus markets seamlessly after a swap. This contract is designed for composability, security, and gas efficiency.

### Prerequisites

Before using the SwapRouter, users should:

1. Approve the SwapRouter to spend their tokens (for ERC-20 operations).
2. Ensure the target vToken market is listed in the Venus Comptroller.
3. For native token operations, send the appropriate value with the transaction.

### Inheritance

* `Ownable2StepUpgradeable` — Two-step ownership transfer pattern
* `ReentrancyGuardUpgradeable` — Reentrancy protection

### Immutable State Variables

* `NATIVE_TOKEN_ADDR`: Address representing the native token (e.g., BNB)
* `COMPTROLLER`: Venus Comptroller contract for market validation
* `SWAP_HELPER`: SwapHelper contract for executing swaps
* `WRAPPED_NATIVE`: Wrapped native token contract (e.g., WBNB)
* `NATIVE_VTOKEN`: vToken contract for the native token (e.g., vBNB)

### Architecture

```
┌───────────────────────────────────────────────┐
│                Venus Core Protocol           │
│  ┌───────────┐  ┌──────────┐                │
│  │Comptroller│  │  vTokens │                │
│  └─────┬─────┘  └────┬─────┘                │
└────────┼─────────────┼───────────────────────┘
         │             │
         ▼             ▼
┌───────────────────────────────────────────────┐
│                SwapRouter                    │
│  - Swaps tokens via SwapHelper               │
│  - Supplies or repays Venus markets          │
│  - Handles native and ERC-20 tokens          │
└───────────────┬──────────────────────────────┘
                │
                ▼
┌───────────────────────────────────────────────┐
│                SwapHelper                     │
│  - Executes authorized swaps                  │
│  - Interacts with DEX protocols               │
└───────────────────────────────────────────────┘
```

### Solidity API

#### swapAndSupply

Swaps an input token for the underlying asset of a Venus market and supplies it on behalf of the user.

```solidity
function swapAndSupply(
    address vToken,
    address tokenIn,
    uint256 amountIn,
    uint256 minAmountOut,
    bytes calldata swapCallData
) external
```

**Parameters:**

* `vToken`: The vToken market to supply to
* `tokenIn`: The input token to swap from
* `amountIn`: The amount of input tokens to swap
* `minAmountOut`: The minimum amount of output tokens expected
* `swapCallData`: Encoded swap instructions for SwapHelper

**Scenario Example:** User wants to supply 1,000 USDC to a Venus market using DAI:

1. User holds 1,000 DAI.
2. Calls `swapAndSupply` with vUSDC, DAI, 1,000 DAI, minAmountOut = 995 USDC, and swapCallData for DAI→USDC swap.
3. SwapRouter swaps 1,000 DAI → \~998 USDC.
4. Supplies \~998 USDC to vUSDC market.
5. Final: User has \~998 USDC supplied, 0 DAI, receives vUSDC tokens.

**Events:**

* `SwapAndSupply`

**Errors:**

* `ZeroAmount`: Thrown if `amountIn` is zero.
* `ZeroAddress`: Thrown if `vToken` is zero address.
* `MarketNotListed`: Thrown if `vToken` is not listed in Comptroller.
* `SwapFailed`: Thrown if swap operation fails.
* `InsufficientAmountOut`: Thrown if received amount is less than `minAmountOut`.
* `NoTokensReceived`: Thrown if no tokens are received from swap.
* `SupplyFailed`: Thrown if supply to Venus market fails (returns error code).

#### swapNativeAndSupply

Swaps native tokens (e.g., BNB) for the underlying asset and supplies it to a Venus market.

```solidity
function swapNativeAndSupply(
    address vToken,
    uint256 minAmountOut,
    bytes calldata swapCallData
) external payable
```

**Parameters:**

* `vToken`: The vToken market to supply to
* `minAmountOut`: The minimum amount of output tokens expected
* `swapCallData`: Encoded swap instructions for SwapHelper

**Scenario Example:**

User wants to supply 2 BNB to a Venus market using native BNB:

1. User holds 2 BNB.
2. Calls `swapNativeAndSupply` with vUSDT, minAmountOut = 600 USDT, and swapCallData for BNB→USDT swap, sending 2 BNB.
3. SwapRouter wraps 2 BNB to WBNB, swaps WBNB → \~610 USDT.
4. Supplies \~610 USDT to vUSDT market.
5. Final: User has \~610 USDT supplied, 0 BNB, receives vUSDT tokens.

**Events:**

* `SwapAndSupply`

**Errors:**

* `ZeroAmount`: Thrown if `msg.value` is zero.
* `ZeroAddress`: Thrown if `vToken` is zero address.
* `MarketNotListed`: Thrown if `vToken` is not listed in Comptroller.
* `SwapFailed`: Thrown if swap operation fails.
* `InsufficientAmountOut`: Thrown if received amount is less than `minAmountOut`.
* `NoTokensReceived`: Thrown if no tokens are received from swap.
* `SupplyFailed`: Thrown if supply to Venus market fails.

#### swapAndRepay

Swaps an input token and repays the user's debt in a Venus market.

```solidity
function swapAndRepay(
    address vToken,
    address tokenIn,
    uint256 amountIn,
    uint256 minAmountOut,
    bytes calldata swapCallData
) external
```

**Parameters:**

* `vToken`: The vToken market to repay debt to
* `tokenIn`: The input token to swap from
* `amountIn`: The amount of input tokens to swap
* `minAmountOut`: The minimum amount of output tokens expected
* `swapCallData`: Encoded swap instructions for SwapHelper

**Scenario Example:** User has 500 USDT debt in a Venus market and wants to repay using USDC:

1. User holds 510 USDC.
2. Calls `swapAndRepay` with vUSDT, USDC, 510 USDC, minAmountOut = 500 USDT, and swapCallData for USDC→USDT swap.
3. SwapRouter swaps 510 USDC → \~505 USDT.
4. Repays 500 USDT debt in vUSDT market.
5. Final: User has 0 USDT debt, 5 USDT returned as excess, 0 USDC.

**Events:**

* `SwapAndRepay`

**Errors:**

* `ZeroAmount`: Thrown if `amountIn` or user debt is zero.
* `ZeroAddress`: Thrown if `vToken` is zero address.
* `MarketNotListed`: Thrown if `vToken` is not listed in Comptroller.
* `SwapFailed`: Thrown if swap operation fails.
* `InsufficientAmountOut`: Thrown if received amount is less than `minAmountOut`.
* `NoTokensReceived`: Thrown if no tokens are received from swap.
* `RepayFailed`: Thrown if repay to Venus market fails (returns error code).

#### swapNativeAndRepay

Swaps native tokens and repays the user's debt in a Venus market.

```solidity
function swapNativeAndRepay(
    address vToken,
    uint256 minAmountOut,
    bytes calldata swapCallData
) external payable
```

**Parameters:**

* `vToken`: The vToken market to repay debt to
* `minAmountOut`: The minimum amount of output tokens expected
* `swapCallData`: Encoded swap instructions for SwapHelper

**Scenario Example:** User has 1,000 DAI debt in `vDAI` and wants to repay it using up to 0.5 BNB:

1. User holds 0.5 BNB.
2. Calls `swapNativeAndRepay` with vDAI, minAmountOut = 1,000 DAI, and swapCallData for BNB→DAI swap, sending 0.5 BNB.
3. SwapRouter wraps 0.5 BNB to WBNB and swaps WBNB → \~1,010 DAI.
4. Repays 1,000 DAI debt in vDAI market.
5. Final: User has 0 DAI debt, 10 DAI returned as excess output, and 0 BNB remaining from the amount sent.

**Events:**

* `SwapAndRepay`

**Errors:**

* `ZeroAmount`: Thrown if `msg.value` or user debt is zero.
* `ZeroAddress`: Thrown if `vToken` is zero address.
* `MarketNotListed`: Thrown if `vToken` is not listed in Comptroller.
* `SwapFailed`: Thrown if swap operation fails.
* `InsufficientAmountOut`: Thrown if received amount is less than `minAmountOut`.
* `NoTokensReceived`: Thrown if no tokens are received from swap.
* `RepayFailed`: Thrown if repay to Venus market fails.

#### swapAndRepayFull

Swaps tokens to repay the user's full debt in a Venus market.

```solidity
function swapAndRepayFull(
    address vToken,
    address tokenIn,
    uint256 maxAmountIn,
    bytes calldata swapCallData
) external
```

**Parameters:**

* `vToken`: The vToken market to repay full debt to
* `tokenIn`: The input token to swap from
* `maxAmountIn`: The ERC-20 amount that the Router requests from the caller and makes available to the signed SwapHelper execution. Treat it as the maximum total input you are willing to expose for the current debt amount.
* `swapCallData`: Backend-signed swap instructions for SwapHelper. For a cross-asset route, DEX limits and any unused-input sweep or refund must be encoded in these instructions; SwapRouter does not validate them separately. If `tokenIn` is already the market underlying, SwapHelper is skipped and `_repay` returns input above the current debt as excess underlying.

**Scenario Example:** User has approximately 1,200 USDC debt in a Venus market and wants to repay the full debt using at most 1,250 DAI:

1. User holds 1,250 DAI.
2. Requests a fresh signed DAI→USDC quote and verifies its input limit, price limits, and unused-input recipient.
3. Calls `swapAndRepayFull` with vUSDC, DAI, 1,250 DAI, and the signed `swapCallData`.
4. SwapRouter reads the current debt and requires the swap to return at least that amount of USDC. If the swap returns 1,210 USDC and the current debt is 1,200 USDC, it repays the debt and returns 10 USDC as excess output.
5. Because this is a cross-asset route, any unused DAI is handled only as encoded in the signed SwapHelper/DEX call sequence; SwapRouter does not itself refund that unused input.

`swapAndRepayFull` has no caller-selected `minAmountOut`. Its on-chain output floor is the current debt amount. The caller's input-side protection comes from choosing `maxAmountIn` conservatively and verifying the price and amount limits in the signed `swapCallData`.

**Events:**

* `SwapAndRepay`

**Errors:**

* `ZeroAmount`: Thrown if `maxAmountIn` or user debt is zero.
* `ZeroAddress`: Thrown if `vToken` is zero address.
* `MarketNotListed`: Thrown if `vToken` is not listed in Comptroller.
* `SwapFailed`: Thrown if swap operation fails.
* `InsufficientAmountOut`: Thrown if received amount is less than debt amount.
* `NoTokensReceived`: Thrown if no tokens are received from swap.
* `RepayFailed`: Thrown if repay to Venus market fails.

#### swapNativeAndRepayFull

Swaps native tokens to repay the user's full debt in a Venus market.

```solidity
function swapNativeAndRepayFull(
    address vToken,
    bytes calldata swapCallData
) external payable
```

**Parameters:**

* `vToken`: The vToken market to repay full debt to
* `swapCallData`: Backend-signed swap instructions for SwapHelper. For a cross-asset route, DEX limits and any unused-input sweep or refund must be encoded in these instructions; SwapRouter does not validate them separately. When repaying `vBNB`, the wrapped input and market underlying are both WBNB, so SwapHelper is skipped and `_repay` returns WBNB above the current debt.

**Scenario Example:** User has approximately 250 USDT debt in `vUSDT` and is willing to spend at most 0.85 BNB to repay it:

1. User holds 0.85 BNB.
2. Requests a fresh signed BNB→USDT quote and verifies its maximum-input and price limits.
3. Calls `swapNativeAndRepayFull` with vUSDT and the signed `swapCallData`, sending 0.85 BNB.
4. SwapRouter wraps the full `msg.value`, reads the current USDT debt, and requires the swap to return at least that debt amount. If the swap returns 260 USDT and the current debt is 250 USDT, it repays the debt and returns 10 USDT as excess output.
5. The excess is returned as USDT, not BNB. Any unused WBNB input is handled only as encoded in the signed SwapHelper/DEX call sequence.

`swapNativeAndRepayFull` has no caller-selected `minAmountOut`. Its output floor is the current debt amount, while `msg.value` is the total input cap made available to SwapHelper.

**Events:**

* `SwapAndRepay`

**Errors:**

* `ZeroAmount`: Thrown if `msg.value` or user debt is zero.
* `ZeroAddress`: Thrown if `vToken` is zero address.
* `MarketNotListed`: Thrown if `vToken` is not listed in Comptroller.
* `SwapFailed`: Thrown if swap operation fails.
* `InsufficientAmountOut`: Thrown if received amount is less than debt amount.
* `NoTokensReceived`: Thrown if no tokens are received from swap.
* `RepayFailed`: Thrown if repay to Venus market fails.

#### sweepToken

Allows the contract owner to recover leftover ERC-20 tokens from the contract.

```solidity
function sweepToken(IERC20Upgradeable token) external onlyOwner
```

**Example:**

```solidity
swapRouter.sweepToken(tokenAddress);
```

#### sweepNative

Allows the contract owner to recover leftover native tokens from the contract.

```solidity
function sweepNative() external onlyOwner
```

**Example:**

```solidity
swapRouter.sweepNative();
```

### Error Definitions

* `ZeroAddress()`: Thrown when a zero address is provided for required parameters.
* `ZeroAmount()`: Thrown when a zero amount is provided for required parameters or user debt is zero.
* `SupplyFailed(uint256 errorCode)`: Thrown when supply operation to Venus market fails. Returns the error code from the vToken.
* `RepayFailed(uint256 errorCode)`: Thrown when repay operation to Venus market fails. Returns the error code from the vToken.
* `SwapFailed()`: Thrown when the swap operation fails (e.g., SwapHelper call reverts).
* `NoTokensReceived()`: Thrown when no tokens are received from the swap operation.
* `NativeTransferFailed()`: Thrown when `sweepNative` fails to send native currency.
* `InsufficientBalance()`: Declared in the ABI but not explicitly used by the mapped implementation's entry paths. Insufficient balance or allowance normally causes the token transfer to revert instead.
* `MarketNotListed(address vToken)`: Thrown when the vToken market is not listed in the Comptroller.
* `InsufficientAmountOut(uint256 amountOut, uint256 minAmountOut)`: Thrown when the swap output is less than the minimum required amount (slippage protection).
* `UnauthorizedNativeSender(address sender)`: Thrown when an unauthorized sender tries to send native tokens to the contract.

### Security Considerations

#### Access Control

* Only the contract owner can sweep tokens or native currency.
* All swap/supply/repay functions are open to users, but require proper approvals and market listing.

#### Reentrancy Protection

* All user swap, supply, and repay entry points are protected by the `nonReentrant` modifier. The initializer and owner-only sweep functions are not marked `nonReentrant`.

#### Price and Slippage Protection

* `swapAndSupply`, `swapNativeAndSupply`, `swapAndRepay`, and `swapNativeAndRepay` accept a caller-selected `minAmountOut` and revert when the received output is below it.
* `swapAndRepayFull` and `swapNativeAndRepayFull` do **not** accept a caller-selected `minAmountOut`. They read the caller's current debt and require the swap output to be at least that debt amount.
* For full-repay calls, choose `maxAmountIn` or `msg.value` as the maximum input you are willing to expose and verify the DEX price and amount limits encoded in the backend-signed `swapCallData`. A quote can consume the full maximum at a poor price while still producing enough output to repay the debt.

#### Market Validation

* The contract checks that the vToken market is listed in the Comptroller before proceeding.

#### Excess and Unused Tokens

* `_repay` returns underlying tokens received above the current debt amount. On a cross-asset route, this is an excess-`tokenOut` refund; unused `tokenIn` remains dependent on the backend-signed SwapHelper/DEX call sequence, including its recipients and sweep steps.
* If `tokenIn` already equals the market underlying, SwapHelper is skipped. The full input is treated as output, and `_repay` returns the amount above the debt in that same underlying token.
* For native input used to repay `vBNB`, the Router first wraps BNB to WBNB. Because the market underlying is also WBNB, `_repay` returns any excess as WBNB, not BNB.

### Integration

#### For Users

1. Approve only the verified, chain-specific SwapRouter **proxy** to spend your tokens (for ERC-20 operations). Do not approve the implementation or SwapHelper. Approve no more than the intended input cap and reduce or revoke any unused allowance after the transaction. Find the proxy on the [Deployed Contracts](/deployed-contracts/periphery.md) page:

   ```solidity
   IERC20(tokenIn).approve(swapRouterAddress, amount);
   ```
2. Call the desired function (`swapAndSupply`, `swapAndRepay`, etc.) with the appropriate parameters and swapCallData.
3. For native token operations, send the required value with your transaction.
4. Monitor events (`SwapAndSupply`, `SwapAndRepay`) for transaction status.

#### For Developers

#### Swap API Integration

Cross-asset operations require signed swap data from the Venus Swap API:

1. Request a fresh swap quote from the API with source and destination tokens.
2. Receive encoded `multicall` parameters with a backend signature.
3. Verify the quote's input cap, DEX price or amount limits, deadline, output and unused-input recipients, and sweep steps.
4. Pass the signed `swapCallData` to the entry function. For full-repay calls, remember that SwapRouter enforces only the current debt as its output floor.

### Audits

Published SwapRouter audit reports are available in the [venus-periphery repository](https://github.com/VenusProtocol/venus-periphery/tree/main/audits). An audit report covers the code and version reviewed; verify that the live proxy implementation bytecode matches the audited version before treating the report as coverage for a deployment.

### Deployment

See [Deployed Contracts](/deployed-contracts/periphery.md) for current addresses.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs-v4.venus.io/technical-reference/reference-periphery/swap-router.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
