# Vesting Mechanism for Class A KLIKcoins

The vesting schedule for **Class A tokens** ensures long-term engagement from early investors. The vesting mechanism operates as follows:

* **Vesting Period**: 19 months.
* **Cliff Period**: Tokens are locked for the first 3 months.
* **Unlock Schedule**: After the cliff, **15% of tokens unlock every 3 months**, with full release after 19 months.

**Solidity Code for Vesting Mechanism:**

```solidity
solidityCopy code// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract KLIKVesting is Ownable {
    ERC20 public klikToken;
    struct VestingSchedule {
        uint256 totalAmount;
        uint256 releasedAmount;
        uint256 startTime;
        uint256 duration;
        bool cliffCompleted;
    }

    mapping(address => VestingSchedule) public vestingSchedules;

    constructor(ERC20 _klikToken) {
        klikToken = _klikToken;
    }

    function createVesting(address beneficiary, uint256 amount, uint256 startTime, &#8203;:contentReference[oaicite:0]{index=0}&#8203;
```


---

# 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://klik.gitbook.io/klik-ico/klikcoin-tokenomics-plan/vesting-mechanism-for-class-a-klikcoins.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.
