UNPKG
@chainz/moca-binary-codec
Version:
latest (0.3.0)
0.3.0
0.2.0
moca binary codec
gitory.skcc.com/skcoin/moca-binary-codec
@chainz/moca-binary-codec
/
distrib
/
npm
/
types
/
hash-160.js
10 lines
(7 loc)
•
231 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
var
makeClass =
require
(
'../utils/make-class'
);
var
_require =
require
(
'./hash'
),
Hash
= _require.
Hash
;
var
Hash160
=
makeClass
({
inherits
:
Hash
,
statics
: {
width
:
20
} });
module
.
exports
= {
Hash160
:
Hash160
};