UNPKG

622 BTypeScriptView Raw
1/**
2 * @name hexToU8a
3 * @summary Creates a Uint8Array object from a hex string.
4 * @description
5 * `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.
6 * @example
7 * <BR>
8 *
9 * ```javascript
10 * import { hexToU8a } from '@polkadot/util';
11 *
12 * hexToU8a('0x80001f'); // Uint8Array([0x80, 0x00, 0x1f])
13 * hexToU8a('0x80001f', 32); // Uint8Array([0x00, 0x80, 0x00, 0x1f])
14 * ```
15 */
16export declare function hexToU8a(value?: string | null, bitLength?: number): Uint8Array;