Converts a value from wei to ether.
import { toEther } from "thirdweb/utils";toEther(1000000000000000000n);// '1'
function toEther(wei: bigint): string;
The value in wei to be converted.
let wei: bigint;
let returnType: string;
The converted value in ether.