> For the complete documentation index, see [llms.txt](https://cetus-1.gitbook.io/cetus-developer-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cetus-1.gitbook.io/cetus-developer-docs/developer/via-sdk-v2/sdk-modules/cetusprotocol-xcetus-sdk/redeem-dividend.md).

# Redeem Dividend

`redeemDividendV3Payload` can construct the payload for redeeming dividends

#### Function Parameters

* venft\_id: Your VeNFT id
* reward\_list: A list of dividend rewards containing multiple DividendReward objects

<pre class="language-typescript"><code class="lang-typescript">const venft_id = 'YOUR_VENFT_ID'
const venft_dividend_info = await sdk.XCetusModule.getVeNFTDividendInfo(venft_id)

if (venft_dividend_info) {
<strong>  const reward_list = venft_dividend_info.rewards
</strong>  const payload = await sdk.XCetusModule.redeemDividendV3Payload(venft_id, reward_list)
}
</code></pre>
