> For the complete documentation index, see [llms.txt](https://dg-market.gitbook.io/dg-live/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dg-market.gitbook.io/dg-live/developer-resources/smart-contract-reference/events/sell.md).

# Sell

**Event signature:**

```solidity


event Sell(address _nftAddress,address _msgSender, uint256[] _tokenIds , uint256[] _prices);


```

**Event parameters:**

| Parameter Type | Parameter Name | Parameter Description                             |
| -------------- | -------------- | ------------------------------------------------- |
| address        | \_nftAddress   | The NFT address of the collection being sold      |
| address        | \_msgSender    | The wallet of the user performing the sell action |
| uint256\[]     | \_tokenIds     | The token Ids of the collections being sold       |
| uint256\[]     | \_prices       | The prices for those tokens being sold            |
