> For the complete documentation index, see [llms.txt](https://docs.gluwa.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.gluwa.com/gluwacoin/gluwacoin-token-standard/events.md).

# Events

### Mint

MUST trigger on any successful call to `mint(address _to, uint256 _value)`.

```javascript
event Mint(address indexed _mintTo, uint256 _value)
```

### Burnt

MUST trigger on any successful call to `burn(address _to, uint256 _value)`.

```javascript
event Burnt(uint256 _value)
```
