> ## Documentation Index
> Fetch the complete documentation index at: https://docs.debridge.com/llms.txt
> Use this file to discover all available pages before exploring further.

# IDeBridgeToken

> IDeBridgeToken interface details - functions.

## Functions

### mint

```solidity theme={null}
function mint(
    address _receiver,
    uint256 _amount
) external
```

Issues new tokens.

**Parameters:**

| Name        | Type      | Description          |
| ----------- | --------- | -------------------- |
| `_receiver` | `address` | Token's receiver.    |
| `_amount`   | `uint256` | Amount to be minted. |

### burn

```solidity theme={null}
function burn(
    uint256 _amount
) external
```

Destroys existing tokens.

**Parameters:**

| Name      | Type      | Description         |
| --------- | --------- | ------------------- |
| `_amount` | `uint256` | Amount to be burnt. |
