Interface LeafData

A leaf of a tree.

interface LeafData {
    nextIndex: bigint;
    nextValue: bigint;
    value: bigint;
}

Properties

nextIndex: bigint

An index of the next leaf.

nextValue: bigint

A value of the next leaf.

value: bigint

A value of the leaf.