opnet
Version:
The perfect library for building Bitcoin-based applications.
15 lines (12 loc) • 374 B
text/typescript
import { BigNumberish, PointerLike } from '../../common/CommonTypes.js';
/**
* @description This interface is used to represent a stored value.
* @interface IStorageValue
* @category Storage
*/
export interface IStorageValue {
readonly pointer: PointerLike;
readonly value: string | Buffer;
readonly height: BigNumberish;
readonly proofs?: string[];
}