UNPKG

415 BTypeScriptView Raw
1import type { U8aLike } from '../types';
2export declare const U8A_WRAP_ETHEREUM: Uint8Array;
3export declare const U8A_WRAP_PREFIX: Uint8Array;
4export declare const U8A_WRAP_POSTFIX: Uint8Array;
5export declare function u8aIsWrapped(u8a: Uint8Array, withEthereum: boolean): boolean;
6export declare function u8aUnwrapBytes(bytes: U8aLike): Uint8Array;
7export declare function u8aWrapBytes(bytes: U8aLike): Uint8Array;