> For the complete documentation index, see [llms.txt](https://zokanetwork.gitbook.io/zokanetwork/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://zokanetwork.gitbook.io/zokanetwork/tokenomics.md).

# Tokenomics

ZOKA's native asset is **ZKA**. The current economic constants are defined in `src/economics.rs` in the core repository.

| Field                | Value                   |
| -------------------- | ----------------------- |
| Name                 | Zoka                    |
| Ticker               | ZKA                     |
| Decimals             | 6                       |
| Atomic unit          | 1 ZKA = 1,000,000 atoms |
| Maximum supply       | 23,000,000 ZKA          |
| Initial block reward | 12 ZKA                  |
| Halving interval     | 1,051,200 blocks        |
| Target block time    | 120 seconds             |

## Economic Boundaries

The protocol tracks user-facing ZKA amounts and internal atomic units separately. Wallets and CLI commands convert amounts at the boundary so wallet balances, fees, and block rewards do not rely on floating-point math.

Block subsidy is clipped by the remaining hard cap. A block cannot emit more subsidy than the remaining unissued supply.

Long-term miner incentives shift from block subsidy toward transaction fees as halvings reduce the reward. Fee handling is privacy-aware: private transaction fee claims are represented through protocol structures rather than a simple public transparent transfer.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://zokanetwork.gitbook.io/zokanetwork/tokenomics.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.
