# OwnerBurnableToken

View Source: [contracts/token/OwnerBurnableToken.sol](https://github.com/money-on-chain/main-RBTC-contract/blob/master-gitbook/contracts/token/OwnerBurnableToken.sol)

**↗ Extends:** [**Ownable**](https://github.com/money-on-chain/main-RBTC-contract/blob/master-gitbook/docs/abis/Ownable.md)**,** [**ERC20Mintable**](/main-rbtc-contract/smart-contracts/abis-documentation/erc20mintable.md) **↘ Derived Contracts:** [**BProToken**](/main-rbtc-contract/smart-contracts/abis-documentation/bprotoken.md)**,** [**DocToken**](/main-rbtc-contract/smart-contracts/abis-documentation/doctoken.md)**,** [**MoCToken**](/main-rbtc-contract/smart-contracts/abis-documentation/moctoken.md)

**OwnerBurnableToken** - version: 0.1.12

Token that allows the owner to irreversibly burned (destroyed) any token.

## Functions

* [burn(address who, uint256 value)](#burn)

### burn

Burns a specific amount of tokens for the address.

```js
function burn(address who, uint256 value) public nonpayable onlyOwner 
```

**Arguments**

| Name  | Type    | Description                       |
| ----- | ------- | --------------------------------- |
| who   | address | who's tokens are gona be burned   |
| value | uint256 | The amount of token to be burned. |


---

# 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.moneyonchain.com/main-rbtc-contract/smart-contracts/abis-documentation/ownerburnabletoken.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.
