Interface MerkleLeaf

Merkle tree node/leaf

interface MerkleLeaf {
    input: string;
    result: string;
}

Properties

Properties

input: string

Input hash (32 bytes hex)

result: string

Result hash (32 bytes hex)