---
id: coin
title: Coin
---

`Coin` defines a token with a denomination and an amount.

The amount field is an Int which implements the custom method.

```jsx
export interface Coin {
  denom: string;
  amount: string;
}
```
