import { AnyU8a, IHash } from '../types'; import U8aFixed from '../codec/U8aFixed'; /** * @name H256 * @description * Hash containing 256 bits (32 bytes), typically used in blocks, extrinsics and * as a sane default for fixed-length hash representations. */ export default class H256 extends U8aFixed implements IHash { constructor(value?: AnyU8a); /** * @description Returns the base runtime type name for this instance */ toRawType(): string; }