Interface IStorageValue

This interface is used to represent a stored value. IStorageValue

interface IStorageValue {
    height: BigNumberish;
    pointer: PointerLike;
    proofs?: string[];
    value: string | Buffer;
}

Implemented by

Properties

height: BigNumberish
pointer: PointerLike
proofs?: string[]
value: string | Buffer