gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 20:55:51 25 4
gpt4 key购买 nike

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

变量的值依次为:

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 返回一个字符串,而 + 对字符串执行连接。

也许只是做 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'

关于javascript - 使用 web3 将奇怪的 wei 转换为以太币,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49419259/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com