Gwei to Wei or Ether Conversion Using Web3py – Step-by-Step Guide

web3.py

I know there is web3.fromWei('myamount','ether') to convert from Wei to Ether.

But what if I have only the Gwei amount?

Best Answer

If you don't mind importing another library, Brownie's Wei class makes it very simple to get from gwei to wei:

>>> from brownie import Wei
>>> Wei("1 gwei")
1000000000
Related Topic