Converts the specified number of tokens to Wei.
import { toWei } from "thirdweb/utils";toWei("1");// 1000000000000000000n
function toWei(tokens: string): bigint;
The number of tokens to convert.
let tokens: string;
let returnType: bigint;
The converted value in Wei.