UNPKG
@kazeblockchain/kazejs
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
0.9.1
Javascript libraries for Kaze wallet
kaze.solutions
KAZEBLOCKCHAIN/kazeJs
@kazeblockchain/kazejs
/
src
/
wallet
/
typings
/
Coin.d.ts
10 lines
(7 loc)
•
167 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Fixed8
}
from
'../../utils'
;
export
interface
Coin
{
index
?:
number
txid
?:
string
value
?:
number
|
Fixed8
}
export
function
Coin
(
coinObj
:
Coin
):
Coin
;