# Deposit

Call this function to deposit pool tokens.

```solidity
function deposit(address _poolToken, uint256 _amount, address _user) external nonpayable
```

**Arguments**

<table><thead><tr><th width="146.33333333333334">Name</th><th width="127">Type</th><th>Description</th></tr></thead><tbody><tr><td>_poolToken</td><td>address</td><td>the address of the pool token to deposit</td></tr><tr><td>_amount</td><td>uint256</td><td>the amount of the pool tokens to deposit</td></tr><tr><td>_user</td><td>address</td><td>the address of the user, tokens will be deposited to it or to msg.sender if 0</td></tr></tbody></table>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://build.sovryn.com/builder-portal/smart-contracts/liquidity-mining/deposit.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
