> For the complete documentation index, see [llms.txt](https://docs.moneyonchain.com/main-rbtc-contract/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.moneyonchain.com/main-rbtc-contract/smart-contracts/abis-documentation/ownerburnabletoken.md).

# 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. |
