Skip to main content

Coin

Coin defines a token with a denomination and an amount.

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

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