> For the complete documentation index, see [llms.txt](https://docs.defisaver.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.defisaver.com/actions/bprotocol/bprotocolliquityspwithdraw.md).

# BprotocolLiquitySPWithdraw

### Description

BprotocolLiquitySPWithdraw - Action that withdraws LUSD from Bprotocol

### Action ID

`0xe1434471`

### SDK Action

```ts
const bprotocolLiquitySPWithdrawAction = new dfs.actions.bprotocol.BprotocolLiquitySPWithdrawAction(
    shareAmount,
    to,
    lqtyTo
);
```

### Action Type

`STANDARD_ACTION`

### Input Parameters

```solidity
    /// @param shareAmount Amount of shares to burn
    /// @param to Address that will recieve the LUSD and WETH withdrawn
    /// @param lqtyTo Address that will recieve LQTY rewards
    struct Params {
        uint256 shareAmount;
        address to;
        address lqtyTo;
    }
```

### Return Value

```solidity
return bytes32(lusdWithdrawn);
```

### Events and Logs

```solidity
emit ActionEvent("BprotocolLiquitySPWithdraw", logData);
logger.logActionDirectEvent("BprotocolLiquitySPWithdraw", logData);
bytes memory logData = abi.encode(params);
```
