Variable: toHexString
consttoHexString: (value) =>string=toHex
Defined in: src/utils/num.ts:75
Alias of ToHex
Convert BigNumberish to hex-string
Parameters
value
value to convert
Returns
string
converted number in hex-string format
Example
toHex(100); // '0x64'
toHex('200'); // '0xc8'
toHex('0x00023AB'); // '0x23ab'