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