There are 2 functions that can be used to withdraw (burning the shares and withdrawing the tokens):
withdraw
redeem
The difference between withdraw and redeem is the client passes the assets needs to be withdrawn when calling withdraw while shares needs to be burned is passed when calling redeem.
withdraw
/// @param assets The amount of assets to withdraw
/// @param receiver The address to receive the withdrawn assets
/// @param owner The address that owns the assets
/// @param merkleProofs The merkle proofs which is used when claiming knocked-out positions.
/// If merkleProofs is provided and not empty, the fee of knocked-out positions will be claimed when burning knocked-out position.
/// Otherwise, the fee will be ignore. Ref https://docs.ambient.finance/developers/dex-contract-interface/knockout-lp-calls#merkle-proof
/// @return shares The amount of shares burned for the withdrawal
function withdraw(
uint256 assets,
address receiver,
address owner,
bytes memory merkleProofs
) external returns (uint256 shares)
redeem
/// @notice Redeems the specified number of shares for assets
/// @param shares The number of shares to redeem
/// @param receiver The address to receive the redeemed assets
/// @param owner The address that owns the shares
/// @param merkleProofs The merkle proofs which is used when claiming knocked-out positions.
/// If merkleProofs is provided and not empty, the fee of knocked-out positions will be claimed when burning knocked-out position.
/// Otherwise, the fee will be ignore. Ref https://docs.ambient.finance/developers/dex-contract-interface/knockout-lp-calls#merkle-proof
/// @return assets The amount of assets redeemed
function redeem(
uint256 shares,
address receiver,
address owner,
bytes memory merkleProofs
) external returns (uint256 assets)