UNPKG

678 BTypeScriptView Raw
1import type { HexString } from '../types';
2/**
3 * @name hexToU8a
4 * @summary Creates a Uint8Array object from a hex string.
5 * @description
6 * `null` inputs returns an empty `Uint8Array` result. Hex input values return the actual bytes value converted to a Uint8Array. Anything that is not a hex string (including the `0x` prefix) throws an error.
7 * @example
8 * <BR>
9 *
10 * ```javascript
11 * import { hexToU8a } from '@polkadot/util';
12 *
13 * hexToU8a('0x80001f'); // Uint8Array([0x80, 0x00, 0x1f])
14 * hexToU8a('0x80001f', 32); // Uint8Array([0x00, 0x80, 0x00, 0x1f])
15 * ```
16 */
17export declare function hexToU8a(_value?: HexString | string | null, bitLength?: number): Uint8Array;