# Chi

## Functions

### constructor

```solidity
function constructor(
    address core
) public
```

Chi token constructor

#### Parameters

| Name   | Type    | Description                   |
| ------ | ------- | ----------------------------- |
| `core` | address | Chi Core address to reference |

### mint

```solidity
function mint(
    address account,
    uint256 amount
) external
```

mint CHI tokens

#### Parameters

| Name      | Type    | Description            |
| --------- | ------- | ---------------------- |
| `account` | address | the account to mint to |
| `amount`  | uint256 | the amount to mint     |

### \_transfer

```solidity
function _transfer(
    address sender,
    address recipient,
    uint256 amount
) internal
```

#### Parameters

| Name        | Type    | Description |
| ----------- | ------- | ----------- |
| `sender`    | address |             |
| `recipient` | address |             |
| `amount`    | uint256 |             |

{% content-ref url="/spaces/D0w4CbdfgJSQ1R3M9z4f/pages/QBx9i80DUEPnRi0k3enS" %}
[IChi](/development/smart-contracts/chi/ichi.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://docs.essencefinance.io/development/smart-contracts/chi.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.
