> For the complete documentation index, see [llms.txt](https://crezanetwork.gitbook.io/crezanetwork-whitepaper/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://crezanetwork.gitbook.io/crezanetwork-whitepaper/4.-network-and-evm-configuration.md).

# 4. Network & EVM Configuration

CREZA runs natively on **BNB Smart Chain** using Solidity **^0.8.20** with OpenZeppelin security modules.

```mermaid
flowchart TB
    USER[User Wallet] --> BSC[BSC Mainnet]
    BSC --> EVM[EVM Execution]
    EVM --> ROUTER[Factory Router]
    ROUTER --> TOKEN[CRZ Token]
    ROUTER --> VAULT[Reserve Pool]
    ROUTER --> REWARDS[Rewards Engine]
```

## Execution environment

| Setting          | Value                              |
| ---------------- | ---------------------------------- |
| Network          | BNB Smart Chain (Mainnet)          |
| Chain ID         | 56                                 |
| Token standard   | BEP-20 (ERC-20 compatible)         |
| Solidity         | solc 0.8.20+                       |
| EVM target       | paris / shanghai                   |
| Optimizer        | Enabled (200 runs)                 |
| Settlement asset | USDT (BEP-20, 18 decimals)         |
| Deployment       | Direct — **no proxy, no upgrades** |

## Precision model

All math uses **18-decimal fixed-point** integers. Percentages use **10,000 basis points (bps)**:

**Calculated value = (Amount × bps) / 10,000**

This prevents floating-point rounding errors across deposits, mints, burns, and reward calculations.

## Immutability

Contracts are deployed once and cannot be upgraded. Parameters such as 80/20 mint split, 85/15 redemption, deposit caps, and DAO allocation are **hardcoded at launch**.


---

# 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, and the optional `goal` query parameter:

```
GET https://crezanetwork.gitbook.io/crezanetwork-whitepaper/4.-network-and-evm-configuration.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
