UNPKG
@brtnetwork/brt-binary-codec
Version:
latest (1.1.1)
1.1.1
BRT Ledger binary codec
github.com/BRTNetwork/js-brt-binary-codec
BRTNetwork/js-brt-binary-codec
@brtnetwork/brt-binary-codec
/
dist
/
types
/
hash-160.d.ts
12 lines
(11 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
Hash
}
from
"./hash"
;
import
{
Buffer
}
from
"buffer/"
;
/** * Hash with a width of 160 bits */
declare
class
Hash160
extends
Hash
{
static
readonly
width =
20
;
static
readonly
ZERO_160
:
Hash160
;
constructor
(
bytes
?:
Buffer
); }
export
{
Hash160
};