# Get Started

## Dependencies

{% tabs %}
{% tab title="Mainnet" %}

```
TurbosCLMM = { git = "git@github.com:turbos-finance/turbos-sui-move-interface.git", subdir = "clmm", rev = "mainnet-v0.1.4", override = true }
```

{% endtab %}

{% tab title="Testnet" %}

```
TurbosCLMM = { git = "git@github.com:turbos-finance/turbos-sui-move-interface.git", subdir = "clmm", rev = "testnet-v0.1.4", override = true }
```

{% endtab %}
{% endtabs %}

## Examples

{% tabs %}
{% tab title="Mainnet" %}

```
[package]
name = "TurbosSample"
version = "0.0.1"

[dependencies]
TurbosCLMM = { git = "git@github.com:turbos-finance/turbos-sui-move-interface.git", subdir = "clmm", rev = "mainnet-v0.1.4", override = true }

[addresses]
turbos_sample = "0x0"
// No need to define duplicate for turbos_clmm here
```

{% endtab %}

{% tab title="Testnet" %}

```
[package]
name = "TurbosSample"
version = "0.0.1"

[dependencies]
TurbosCLMM = { git = "git@github.com:turbos-finance/turbos-sui-move-interface.git", subdir = "clmm", rev = "testnet-v0.1.4", override = true }

[addresses]
turbos_sample = "0x0"
// No need to define duplicate for turbos_clmm here
```

{% endtab %}
{% endtabs %}

## How to build and publish?

{% hint style="warning" %}
To address the issue, include the `--dependencies-are-root` flag during the build and publish processes. Although the Turbos clmm interface has incomplete code (with only function definitions), this won't impede its functionality despite failure in code version checks by the sui client.
{% endhint %}

## Dependent object ID

In the dev overview, all dependency object IDs are listed.

{% content-ref url="/pages/NVRytBBp9qsO6wB3VzCT" %}
[Dev Overview](/turbos/developer-docs/dev-overview.md)
{% endcontent-ref %}


---

# 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://turbos.gitbook.io/turbos/developer-docs/via-contract/get-started.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.
