UNPKG
@iden3/js-merkletree
Version:
latest (1.5.1)
1.5.1
1.5.0
1.4.0
1.3.1
1.3.0
1.2.0
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
1.0.0-beta.5
1.0.0-beta.4
1.0.0-beta.2
1.0.0-beta.1
1.0.0-beta.0
0.0.3
0.0.2
0.0.1
javascript sparse merkle tree library
github.com/iden3/js-merkletree
iden3/js-merkletree
@iden3/js-merkletree
/
src
/
types
/
node.ts
12 lines
(9 loc)
•
219 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
Hash
}
from
'../lib/hash/hash'
;
import
{
Bytes
}
from
'./bytes'
;
export
type
NodeType
=
0
|
1
|
2
;
export
interface
Node
{
type
:
NodeType
;
getKey
:
() =>
Promise
<
Hash
>;
value
:
Bytes
;
string
:
string
; }