> 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/gets-the-amount-of-venft.md).

# Gets the amount of VeNFT

You can query the veNFT information held by a specific wallet and calculate its share in the XCetus dividend pool.

```typescript
const owner_venft = await sdk.XCetusModule.getOwnerVeNFT(wallet)

if (owner_venft) {
  const xcetus_manager = await sdk.XCetusModule.getXcetusManager()
  const venft_amount = await sdk.XCetusModule.getVeNftAmount(xcetus_manager.nfts.handle, owner_venft.id)

  const rate = d(owner_venft.xcetus_balance).div(xcetus_manager.treasury)
}
```
