UNPKG

@lodestar/utils

Version:

Utilities required across multiple lodestar packages

10 lines 281 B
export const ETH_TO_GWEI = BigInt(10 ** 9); export const GWEI_TO_WEI = BigInt(10 ** 9); export const ETH_TO_WEI = ETH_TO_GWEI * GWEI_TO_WEI; /** * Convert gwei to wei. */ export function gweiToWei(gwei) { return gwei * GWEI_TO_WEI; } //# sourceMappingURL=ethConversion.js.map