gpt4 book ai didi

ethereum - web3.js 和 web3-light.js 有什么区别?

转载 作者:行者123 更新时间:2023-12-02 18:59:23 24 4
gpt4 key购买 nike

大家好!web3.js library 中的 web3.js 和 web3-light.js 文件有什么区别? ?

最佳答案

web3.js 包含 bignumber.js模块,而 web3-light.js 则没有。

长答案:

web3.jsopen-source项目,让我们看看里面有什么。 Web3 使用 Gulp 构建系统来生成不同版本的库。负责light flavor 的代码如下所示:

gulp.task('light', ['clean'], function () {
return browserify(browserifyOptions)
.require('./' + src + '.js', {expose: 'web3'})
.ignore('bignumber.js')
.require('./lib/utils/browser-bn.js', {expose: 'bignumber.js'}) // fake bignumber.js
.add('./' + src + '.js')
.bundle()
});

bignumber.js is JavaScript library for arbitrary-precision decimal and non-decimal arithmetic.

关于ethereum - web3.js 和 web3-light.js 有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49209759/

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