UNPKG

xrpl-binary-codec-prerelease

Version:

XRP Ledger Protocol Binary Codec - For XRPL, Xahau and other networks (with dynamic definitions)

11 lines (10 loc) 238 B
import { Hash } from './hash'; /** * Hash with a width of 256 bits */ declare class Hash256 extends Hash { static readonly width = 32; static readonly ZERO_256: Hash256; constructor(bytes: Uint8Array); } export { Hash256 };