UNPKG

undedoloremque

Version:
16 lines (12 loc) 225 B
--- 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; } ```