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