UNPKG
undedoloremque
Version:
latest (1.3.3)
1.3.3
1.3.2
1.3.1
1.3.0
1.2.0
1.1.1
1.1.0
1.0.0
Green Field JS SDK
github.com/ElectaHilpert/undedoloremque.git
ElectaHilpert/undedoloremque
undedoloremque
/
doc-site
/
docs
/
types
/
coin.mdx
16 lines
(12 loc)
•
225 B
text/mdx
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
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;
}
```