> For the complete documentation index, see [llms.txt](https://stargateprotocol.gitbook.io/stargate/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://stargateprotocol.gitbook.io/stargate/stargate-router-methods/redeemlocal.md).

# redeemLocal()

Description of the arguments of `redeemLocal()`

```javascript
function redeemLocal(
    uint16 _dstChainId,             // the chainId to remove liquidity
    uint256 _srcPoolId,             // the source poolId
    uint256 _dstPoolId,             // the destination poolId
    address payable _refundAddress, // refund extra native gas to this address
    uint256 _amountLP,              // quantity of LP tokens to redeem
    bytes calldata _to,             // address to send the redeemed poolId tokens
    lzTxObj memory _lzTxParams      // adpater parameters 
) external payable override nonReentrant { 
```
