使用 web3 将奇怪的 wei 转换为以太币

Weird wei to ether conversion using web3

我正在尝试在业力测试中进行一些天然气交易成本计算以断定最终余额,但我不明白为什么这两个代码片段的输出不同

变量的值依次为:

59916559960000000000 3000000000000000000 394980000000000

片段是:

let currentBalance =  web3.utils.fromWei(customerBalance.toString(), 'ether')  
         + web3.utils.fromWei(customerRefundableEther.toString(), 'ether') 
         - web3.utils.fromWei(transactionFee.toString(), 'ether');

let currentBalance = (customerBalance / 1e18)
                     +(customerRefundableEther / 1e18) 
                     - (transactionFee / 1e18);

第二个片段是用户账户的正确余额,断言成功。不就是wei到ether的转换:value / 1e18吗?。我不明白为什么,但这些片段之间的差异超过 3 个以太单位。

我正在使用 web3 版本 1.0.0-beta26。

提前致谢。

我认为问题是 web3.utils.fromWei returns 一个字符串,+ 对字符串进行连接。

也许只是 web3.utils.fromWei(customerBalance + customerRefundableEther - transactionFee, 'ether')

编辑

似乎 customerBalance 等人。是 BigNumber 个实例。在那种情况下:

web3.utils.fromWei(customerBalance.add(customerRefundableEther)
  .sub(transactionFee).toString(), 'ether')

编辑 2

带数字的工作代码:

> const customerBalance = 59916559960000000000;
> const customerRefundableEther = 3000000000000000000;
> const transactionFee = 394980000000000;
> web3.utils.fromWei((customerBalance + customerRefundableEther - transactionFee).toString(), 'ether');
62.91616498000001

使用字符串的工作代码,以防万一问题是它们以字符串开始:

> const customerBalance = '59916559960000000000';
> const customerRefundableEther = '3000000000000000000';
> const transactionFee = '394980000000000';
> web3.utils.fromWei(web3.utils.toBN(customerBalance).add(web3.utils.toBN(customerRefundableEther)).sub(web3.utils.toBN(transactionFee)), 'ether')
'62.91616498'