Ether
如何使用 ethers.js 將 WEI 轉換為 ETH
如何將 WEI 轉換為 ETH?如何將 WEI 轉換為 ETH?如何將 WEI 轉換為 ETH?
不得不重新發布,因為它不會讓我發布一次。
查看
formatEther
ethers.js文件const weiValue = 100000; const ethValue = ethers.utils.formatEther(weiValue);
您還可以使用 . 將任意數量的 Wei 格式化為任何其他面額
formatUnits
。const gweiValue = ethers.utils.formatUnits(weiValue, "gwei");
要讓它與 (e) 格式一起正常工作,請使用:
const balanceInWei = (+(await ethers.provider.getBalance( address ))).toLocaleString("fullwide", { useGrouping: false }); const balanceInEth= ethers.utils.formatEther(balanceInWei);