Converts the specified number from gwei to wei.
import { fromGwei } from "thirdweb/utils";fromGwei("1");// 1000000000n
function fromGwei(gwei: string): bigint;
The number of gwei to convert.
let gwei: string;
let returnType: bigint;
The converted value in wei.