@stacks/profile 7.4.1-beta.2 → 7.4.1-pr.1854.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/umd/index.js CHANGED
@@ -16029,7 +16029,7 @@ function without0x(value) {
16029
16029
  function hexToBigInt(hex) {
16030
16030
  if (typeof hex !== 'string')
16031
16031
  throw new TypeError(`hexToBigInt: expected string, got ${typeof hex}`);
16032
- return BigInt(`0x${hex}`);
16032
+ return BigInt(with0x(hex));
16033
16033
  }
16034
16034
  function intToHex(integer, byteLength = 8) {
16035
16035
  const value = typeof integer === 'bigint' ? integer : intToBigInt(integer);