# Tariff

## Overview

The Tariff contract defines the pricing and profit distribution parameters for partners within the ecosystem. It specifies the amount of tokens required as payment for creating a Partner, the percentage of each bet that the partner will receive as profit, and the percentage of each stake that the partner will receive as profit.

## Contract Structure

The Tariff contract consists of immutable variables to define the pricing and profit parameters.

### Constructor

* **`constructor`**: Initializes the Tariff contract with the specified price, profit percentage for bets, and profit percentage for stakes.

## Variables

* **`price`**: Amount of CELT tokens required as payment for creating a partner.
* **`profit`**: Percentage of each bet that the partner will receive as profit (ranging from 0% to 3.60%).
* **`stakeProfit`**: Percentage of each stake that the partner will receive as profit (ranging from 0% to 100%).

## Dependencies

The Tariff contract operates independently and does not have explicit dependencies on other contracts within the ecosystem.


---

# 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://docs.celestium.digital/smartcontracts-description/core/tariff.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.
