Converts a hexadecimal string to a BigInt.
import { hexToBigInt } from "thirdweb/utils";const bigInt = hexToBigInt("0x1a4");console.log(bigInt); // 420n
The BigInt representation of the hexadecimal string.