> For the complete documentation index, see [llms.txt](https://docs.zetrix.com/en/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zetrix.com/en/misc/burn-address.md).

# Burn Address

A burn address is a special account used to permanently remove tokens from circulation. Any token sent to this address becomes irretrievable, effectively reducing the total supply.

In the Zetrix blockchain, the designated burn account is preconfigured and consistent across both Mainnet and Testnet environments.

```
ZTX3Tvw4xiQMT7ennbXvw7L1i2TKP4nii3LYM
```

#### Burn Address Mechanism

In a normal account, the master weight must be more than or equal to the tx threshold. In this case, the master weight is 1 and the tx threshold is 1. Hence, the transaction can be made by using this account. Data shown below can be depicted from the account metadata in Explorer.

```
"priv": {
      "master_weight": 1,
      "thresholds": {
        "tx_threshold": 1
      }
}
```

However, for the burn account, the master weight is set to 0. Therefore, it does not comply with the requirement to exceed the tx threshold which is 1. Hence, the transaction will always fail when initiated by the burn account. When the master weight is 0, it is not shown in the metadata in Explorer.

```
"priv": {
      "thresholds": {
        "tx_threshold": 1
      }
}
```


---

# 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://docs.zetrix.com/en/misc/burn-address.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.
