HexString
hexToU8a
hexToU8aimport { hexToU8a } from 'dedot/utils';
hexToU8a('0x1234') // new Uint8Array([0x12, 0x34])hexToString
hexToStringimport { hexToString } from 'dedot/utils';
hexToString('0x616263') // 'abc'isZeroHex
isZeroHeximport { isZeroHex } from 'dedot/utils';
isZeroHex('0x00000000') // true
isZeroHex('0x00000001') // falsehexAddPrefix & hexStripPrefix
hexAddPrefix & hexStripPrefixtoHex
toHexLast updated