Router API

The Router can be used to interact with Balancer onchain via state changing operations or used to query operations in an offchain context.

State-changing functions

The router's state-changing functions are used for interacting with Balancer onchain. They provide simple interfaces for the most common user actions performed against the Balancer Vault.

Pool initialization

initialize

function initialize(
    address pool,
    IERC20[] memory tokens,
    uint256[] memory exactAmountsIn,
    uint256 minBptAmountOut,
    bool wethIsEth,
    bytes memory userData
) external payable returns (uint256 bptAmountOut);

This function initializes a liquidity pool. It adds the initial liquidity to the pool and mints the initial pool tokens.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
tokensIERC20[]Array of token contracts to be added to the pool
exactAmountsInuint256[]Exact amounts of tokens to be added, sorted in token registration order
minBptAmountOutuint256Minimum amount of pool tokens to be received
wethIsEthboolIf true, incoming ETH will be wrapped to WETH; otherwise the Vault will pull WETH tokens
userDatabytesAdditional (optional) data required for adding initial liquidity

Returns:

NameTypeDescription
bptAmountOutuint256Actual amount of pool tokens minted in exchange for initial liquidity

Add liquidity

addLiquidityProportional

function addLiquidityProportional(
    address pool,
    uint256[] memory maxAmountsIn,
    uint256 exactBptAmountOut,
    bool wethIsEth,
    bytes memory userData
) external payable returns (uint256[] memory amountsIn);

Adds with proportional token amounts to a pool, receiving an exact amount of pool tokens.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
maxAmountsInuint256[]Maximum amounts of tokens to be added, sorted in token registration order
exactBptAmountOutuint256Exact amount of pool tokens to be received
wethIsEthboolIf true, incoming ETH will be wrapped to WETH; otherwise the Vault will pull WETH tokens
userDatabytesAdditional (optional) data required for adding liquidity

Returns:

NameTypeDescription
amountsInuint256[]Actual amounts of tokens added, sorted in token registration order

addLiquidityUnbalanced

function addLiquidityUnbalanced(
    address pool,
    uint256[] memory exactAmountsIn,
    uint256 minBptAmountOut,
    bool wethIsEth,
    bytes memory userData
) external payable returns (uint256 bptAmountOut);

Adds with arbitrary token amounts in to a pool.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
exactAmountsInuint256[]Exact amounts of tokens to be added, sorted in token registration order
minBptAmountOutuint256Minimum amount of pool tokens to be received
wethIsEthboolIf true, incoming ETH will be wrapped to WETH; otherwise the Vault will pull WETH tokens
userDatabytesAdditional (optional) data required for adding liquidity

Returns:

NameTypeDescription
bptAmountOutuint256Actual amount of pool tokens received

addLiquiditySingleTokenExactOut

function addLiquiditySingleTokenExactOut(
    address pool,
    IERC20 tokenIn,
    uint256 maxAmountIn,
    uint256 exactBptAmountOut,
    bool wethIsEth,
    bytes memory userData
) external payable returns (uint256 amountIn);

Adds with a single token to a pool, receiving an exact amount of pool tokens.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
tokenInIERC20Token used to add liquidity
maxAmountInuint256Maximum amount of tokens to be added
exactBptAmountOutuint256Exact amount of pool tokens to be received
wethIsEthboolIf true, incoming ETH will be wrapped to WETH; otherwise the Vault will pull WETH tokens
userDatabytesAdditional (optional) data required for adding liquidity

Returns:

NameTypeDescription
amountInuint256Actual amount of tokens added
function donate(
    address pool,
    uint256[] memory amountsIn,
    bool wethIsEth,
    bytes memory userData
) external payable;

Adds liquidity to a pool by donating the amounts in (no BPT out). To support donation, the pool config enableDonation flag must be set to true. This liquidity type is disabled by default, and is only useful in certain limited use cases (e.g., pools with exit fees). Pools that support donation have special security considerations. In particular, their rates are trivially manipulable, so they cannot be nested inside other pools. Use with care!

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
amountsInuint256[]Amounts of tokens to be donated, sorted in token registration order
wethIsEthboolIf true, incoming ETH will be wrapped to WETH; otherwise the Vault will pull WETH tokens
userDatabytesAdditional (optional) data required for adding liquidity

addLiquidityCustom

function addLiquidityCustom(
    address pool,
    uint256[] memory maxAmountsIn,
    uint256 minBptAmountOut,
    bool wethIsEth,
    bytes memory userData
) external payable returns (uint256[] memory amountsIn, uint256 bptAmountOut, bytes memory returnData);

Adds liquidity to a pool with a custom request.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
maxAmountsInuint256[]Maximum amounts of tokens to be added, sorted in token registration order
minBptAmountOutuint256Minimum amount of pool tokens to be received
wethIsEthboolIf true, incoming ETH will be wrapped to WETH; otherwise the Vault will pull WETH tokens
userDatabytesAdditional (optional) data required for adding liquidity

Returns:

NameTypeDescription
amountsInuint256[]Actual amounts of tokens added, sorted in token registration order
bptAmountOutuint256Actual amount of pool tokens received
returnDatabytesArbitrary (optional) data with encoded response from the pool

Remove liquidity

removeLiquidityProportional

function removeLiquidityProportional(
    address pool,
    uint256 exactBptAmountIn,
    uint256[] memory minAmountsOut,
    bool wethIsEth,
    bytes memory userData
) external payable returns (uint256[] memory amountsOut);

Removes liquidity with proportional token amounts from a pool, burning an exact pool token amount.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
exactBptAmountInuint256Exact amount of pool tokens provided
minAmountsOutuint256[]Minimum amounts of tokens to be received, sorted in token registration order
wethIsEthboolIf true, outgoing WETH will be unwrapped to ETH; otherwise the Vault will send WETH tokens
userDatabytesAdditional (optional) data required for removing liquidity

Returns:

NameTypeDescription
amountsOutuint256[]Actual amounts of tokens received, sorted in token registration order

removeLiquiditySingleTokenExactIn

function removeLiquiditySingleTokenExactIn(
    address pool,
    uint256 exactBptAmountIn,
    IERC20 tokenOut,
    uint256 minAmountOut,
    bool wethIsEth,
    bytes memory userData
) external payable returns (uint256 amountOut);

Removes liquidity from a pool via a single token, burning an exact pool token amount.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
exactBptAmountInuint256Exact amount of pool tokens provided
tokenOutIERC20Token used to remove liquidity
minAmountOutuint256Minimum amount of tokens to be received
wethIsEthboolIf true, outgoing WETH will be unwrapped to ETH; otherwise the Vault will send WETH tokens
userDatabytesAdditional (optional) data required for removing liquidity

Returns:

NameTypeDescription
amountOutuint256Actual amount of tokens received

removeLiquiditySingleTokenExactOut

function removeLiquiditySingleTokenExactOut(
    address pool,
    uint256 maxBptAmountIn,
    IERC20 tokenOut,
    uint256 exactAmountOut,
    bool wethIsEth,
    bytes memory userData
) external payable returns (uint256 bptAmountIn);

Removes liquidity from a pool via a single token, specifying the exact amount of tokens to receive.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
maxBptAmountInuint256Maximum amount of pool tokens provided
tokenOutIERC20Token used to remove liquidity
exactAmountOutuint256Exact amount of tokens to be received
wethIsEthboolIf true, outgoing WETH will be unwrapped to ETH; otherwise the Vault will send WETH tokens
userDatabytesAdditional (optional) data required for removing liquidity

Returns:

NameTypeDescription
bptAmountInuint256Actual amount of pool tokens burned

removeLiquidityCustom

function removeLiquidityCustom(
    address pool,
    uint256 maxBptAmountIn,
    uint256[] memory minAmountsOut,
    bool wethIsEth,
    bytes memory userData
) external returns (uint256 bptAmountIn, uint256[] memory amountsOut, bytes memory returnData);

Removes liquidity from a pool with a custom request.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
maxBptAmountInuint256Maximum amount of pool tokens provided
minAmountsOutuint256[]Minimum amounts of tokens to be received, sorted in token registration order
wethIsEthboolIf true, outgoing WETH will be unwrapped to ETH; otherwise the Vault will send WETH tokens
userDatabytesAdditional (optional) data required for removing liquidity

Returns:

NameTypeDescription
bptAmountInuint256Actual amount of pool tokens burned
amountsOutuint256[]Actual amounts of tokens received, sorted in token registration order
returnDatabytesArbitrary (optional) data with encoded response from the pool

removeLiquidityRecovery

function removeLiquidityRecovery(
    address pool,
    uint256 exactBptAmountIn
) external returns (uint256[] memory amountsOut);

Removes liquidity proportionally, burning an exact pool token amount. Only available in Recovery Mode.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
exactBptAmountInuint256Exact amount of pool tokens provided

Returns:

NameTypeDescription
amountsOutuint256[]Actual amounts of tokens received, sorted in token registration order

Swaps

swapSingleTokenExactIn

function swapSingleTokenExactIn(
    address pool,
    IERC20 tokenIn,
    IERC20 tokenOut,
    uint256 exactAmountIn,
    uint256 minAmountOut,
    uint256 deadline,
    bool wethIsEth,
    bytes calldata userData
) external payable returns (uint256 amountOut);

Executes a swap operation specifying an exact input token amount.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
tokenInIERC20Token to be swapped from
tokenOutIERC20Token to be swapped to
exactAmountInuint256Exact amount of input tokens to send
minAmountOutuint256Minimum amount of tokens to be received
deadlineuint256Deadline for the swap
wethIsEthboolIf true, incoming ETH will be wrapped to WETH and outgoing WETH will be unwrapped to ETH
userDatabytesAdditional (optional) data required for the swap

Returns:

NameTypeDescription
amountOutuint256Calculated amount of output tokens to be received in exchange for the given input tokens

swapSingleTokenExactOut

function swapSingleTokenExactOut(
    address pool,
    IERC20 tokenIn,
    IERC20 tokenOut,
    uint256 exactAmountOut,
    uint256 maxAmountIn,
    uint256 deadline,
    bool wethIsEth,
    bytes calldata userData
) external payable returns (uint256 amountIn);

Executes a swap operation specifying an exact output token amount.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
tokenInIERC20Token to be swapped from
tokenOutIERC20Token to be swapped to
exactAmountOutuint256Exact amount of output tokens to receive
maxAmountInuint256Maximum amount of tokens to be sent
deadlineuint256Deadline for the swap
wethIsEthboolIf true, incoming ETH will be wrapped to WETH and outgoing WETH will be unwrapped to ETH
userDatabytesAdditional (optional) data required for the swap

Returns:

NameTypeDescription
amountInuint256Calculated amount of input tokens to be sent in exchange for the requested output tokens

ERC4626 Buffers

initializeBuffer

function initializeBuffer(
    IERC4626 wrappedToken,
    uint256 amountUnderlyingRaw,
    uint256 amountWrappedRaw
) external returns (uint256 issuedShares);

Adds liquidity for the first time to one of the Vault's internal ERC4626 buffers. Buffer operations will revert until the buffer is initialized.

Parameters:

NameTypeDescription
wrappedTokenIERC4626Address of the wrapped token that implements IERC4626
amountUnderlyingRawuint256Amount of underlying tokens that will be deposited into the buffer
amountWrappedRawuint256Amount of wrapped tokens that will be deposited into the buffer

Returns:

NameTypeDescription
issuedSharesuint256The amount of tokens sharesOwner has in the buffer, denominated in underlying tokens (This is the BPT of an internal ERC4626 token buffer)

addLiquidityToBuffer

function addLiquidityToBuffer(
    IERC4626 wrappedToken,
    uint256 amountUnderlyingRaw,
    uint256 amountWrappedRaw
) external returns (uint256 issuedShares);

Adds liquidity to a yield-bearing buffer (one of the Vault's internal ERC4626 token buffers).

Parameters:

NameTypeDescription
wrappedTokenIERC4626Address of the wrapped token that implements IERC4626
amountUnderlyingRawuint256Amount of underlying tokens that will be deposited into the buffer
amountWrappedRawuint256Amount of wrapped tokens that will be deposited into the buffer

Returns:

NameTypeDescription
issuedSharesuint256The amount of tokens sharesOwner has in the buffer, denominated in underlying tokens (This is the BPT of an internal ERC4626 token buffer)

Queries

queryAddLiquidityProportional

function queryAddLiquidityProportional(
    address pool,
    uint256[] memory maxAmountsIn,
    uint256 exactBptAmountOut,
    bytes memory userData
) external returns (uint256[] memory amountsIn);

Queries an addLiquidityProportional operation without actually executing it.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
maxAmountsInuint256[]Maximum amounts of tokens to be added, sorted in token registration order
exactBptAmountOutuint256Exact amount of pool tokens to be received
userDatabytesAdditional (optional) data required for the query

Returns:

NameTypeDescription
amountsInuint256[]Expected amounts of tokens to add, sorted in token registration order

queryAddLiquidityUnbalanced

function queryAddLiquidityUnbalanced(
    address pool,
    uint256[] memory exactAmountsIn,
    bytes memory userData
) external returns (uint256 bptAmountOut);

Queries an addLiquidityUnbalanced operation without actually executing it.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
exactAmountsInuint256[]Exact amounts of tokens to be added, sorted in token registration order
userDatabytesAdditional (optional) data required for the query

Returns:

NameTypeDescription
bptAmountOutuint256Expected amount of pool tokens to receive

queryAddLiquiditySingleTokenExactOut

function queryAddLiquiditySingleTokenExactOut(
    address pool,
    IERC20 tokenIn,
    uint256 exactBptAmountOut,
    bytes memory userData
) external returns (uint256 amountIn);

Queries an addLiquiditySingleTokenExactOut operation without actually executing it.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
tokenInIERC20Token used to add liquidity
exactBptAmountOutuint256Expected exact amount of pool tokens to receive
userDatabytesAdditional (optional) data required for the query

Returns:

NameTypeDescription
amountInuint256Expected amount of tokens to add

queryAddLiquidityCustom

function queryAddLiquidityCustom(
    address pool,
    uint256[] memory maxAmountsIn,
    uint256 minBptAmountOut,
    bytes memory userData
) external returns (uint256[] memory amountsIn, uint256 bptAmountOut, bytes memory returnData);

Queries an addLiquidityCustom operation without actually executing it.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
maxAmountsInuint256[]Maximum amounts of tokens to be added, sorted in token registration order
minBptAmountOutuint256Expected minimum amount of pool tokens to receive
userDatabytesAdditional (optional) data required for the query

Returns:

NameTypeDescription
amountsInuint256[]Expected amounts of tokens to add, sorted in token registration order
bptAmountOutuint256Expected amount of pool tokens to receive
returnDatabytesArbitrary (optional) data with encoded response from the pool

queryRemoveLiquidityProportional

function queryRemoveLiquidityProportional(
    address pool,
    uint256 exactBptAmountIn,
    bytes memory userData
) external returns (uint256[] memory amountsOut);

Queries a removeLiquidityProportional operation without actually executing it.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
exactBptAmountInuint256Exact amount of pool tokens provided for the query
userDatabytesAdditional (optional) data required for the query

Returns:

NameTypeDescription
amountsOutuint256[]Expected amounts of tokens to receive, sorted in token registration order

queryRemoveLiquiditySingleTokenExactIn

function queryRemoveLiquiditySingleTokenExactIn(
    address pool,
    uint256 exactBptAmountIn,
    IERC20 tokenOut,
    bytes memory userData
) external returns (uint256 amountOut);

Queries a removeLiquiditySingleTokenExactIn operation without actually executing it.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
exactBptAmountInuint256Exact amount of pool tokens provided for the query
tokenOutIERC20Token used to remove liquidity
userDatabytesAdditional (optional) data required for the query

Returns:

NameTypeDescription
amountOutuint256Expected amount of tokens to receive

queryRemoveLiquiditySingleTokenExactOut

function queryRemoveLiquiditySingleTokenExactOut(
    address pool,
    IERC20 tokenOut,
    uint256 exactAmountOut,
    bytes memory userData
) external returns (uint256 bptAmountIn);

Queries a removeLiquiditySingleTokenExactOut operation without actually executing it.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
tokenOutIERC20Token used to remove liquidity
exactAmountOutuint256Exact amount of tokens to receive
userDatabytesAdditional (optional) data required for the query

Returns:

NameTypeDescription
bptAmountInuint256Expected amount of pool tokens to burn

queryRemoveLiquidityCustom

function queryRemoveLiquidityCustom(
    address pool,
    uint256 maxBptAmountIn,
    uint256[] memory minAmountsOut,
    bytes memory userData
) external returns (uint256 bptAmountIn, uint256[] memory amountsOut, bytes memory returnData);

Queries a removeLiquidityCustom operation without actually executing it.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
maxBptAmountInmaxBptAmountInMaximum amount of pool tokens provided
minAmountsOutuint256[]Expected minimum amounts of tokens to receive, sorted in token registration order
userDatabytesAdditional (optional) data required for the query

Returns:

NameTypeDescription
bptAmountInuint256Expected amount of pool tokens to burn
amountsOutuint256[]Expected amounts of tokens to receive, sorted in token registration order
returnDatabytesArbitrary (optional) data with encoded response from the pool

queryRemoveLiquidityRecovery

function queryRemoveLiquidityRecovery(
    address pool,
    uint256 exactBptAmountIn,
) external returns (uint256[] memory amountsOut);

Queries a removeLiquidityRecovery operation without actually executing it.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
exactBptAmountInuint256MExact amount of pool tokens provided for the query

Returns:

NameTypeDescription
amountsOutuint256[]Expected amounts of tokens to receive, sorted in token registration order

querySwapSingleTokenExactIn

function querySwapSingleTokenExactIn(
    address pool,
    IERC20 tokenIn,
    IERC20 tokenOut,
    uint256 exactAmountIn,
    bytes calldata userData
) external returns (uint256 amountCalculated);

Queries an swapSingleTokenExactIn operation without actually executing it.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
tokenInIERC20Token to be swapped from
tokenOutIERC20Token to be swapped to
exactAmountInuint256Exact amount of input tokens to send
userDatabytesAdditional (optional) data required for the query

Returns:

NameTypeDescription
amountOutuint256Calculated amount of output tokens to be received in exchange for the given input tokens

querySwapSingleTokenExactOut

function querySwapSingleTokenExactOut(
    address pool,
    IERC20 tokenIn,
    IERC20 tokenOut,
    uint256 exactAmountOut,
    bytes calldata userData
) external returns (uint256 amountCalculated);

Queries an swapSingleTokenExactOut operation without actually executing it.

Parameters:

NameTypeDescription
pooladdressAddress of the liquidity pool
tokenInIERC20Token to be swapped from
tokenOutIERC20Token to be swapped to
exactAmountInuint256Exact amount of input tokens to receive
userDatabytesAdditional (optional) data required for the query

Returns:

NameTypeDescription
amountOutuint256Calculated amount of input tokens to be sent in exchange for the requested output tokens

Router common

These functions are shared between the Router and BatchRouter (defined in RouterCommon).

permitBatchAndCall

function permitBatchAndCall(
    PermitApproval[] calldata permitBatch,
    bytes[] calldata permitSignatures,
    IAllowanceTransfer.PermitBatch calldata permit2Batch,
    bytes calldata permit2Signature,
    bytes[] calldata multicallData
) external returns (bytes[] memory results);

Permits multiple allowances and executes a batch of function calls on this contract.

Parameters:

NameTypeDescription
permitBatchPermitApproval[] calldataAn array of PermitApproval structs, each representing an ERC20 permit request
permitSignaturesbytes[] calldataAn array of bytes, corresponding to the permit request signature in permitBatch
permit2BatchIAllowanceTransfer.PermitBatch calldataA batch of permit2 approvals
permit2Signaturebytes calldataA permit2 signature for the batch approval
multicallDatabytes[] calldataAn array of bytes arrays, each representing an encoded function call on this contract

Returns:

NameTypeDescription
resultsbytes[] memoryArray of bytes arrays, each representing the return data from each function call executed

multicall

function multicall(bytes[] calldata data) external returns (bytes[] memory results);

Executes a batch of function calls on this contract.

Parameters:

NameTypeDescription
databytes[] calldataEncoded function calls to be executed in the batch

Returns:

NameTypeDescription
resultsbytes[] memoryArray of bytes arrays, each representing the return data from each function call executed