Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -653,4 +653,7 @@ Released with 1.0.0-beta.37 code base.
### Changed

- Add optional `hexFormat` param to `getTransaction` and `getBlock` that accepts the value `'hex'` (#5845)
- `utils.toNumber` and `utils.hexToNumber` can now return the large usafe numbers as `BigInt`, if `true` was passed to a new optional parameter called `bigIntOnOverflow` (#5845)
- `utils.toNumber` and `utils.hexToNumber` can now return the large unsafe numbers as `BigInt`, if `true` was passed to a new optional parameter called `bigIntOnOverflow` (#5845)
- Updated @types/bn.js dependency to 5.1.1 in web3, web3-core and web3-eth-contract as reason mentioned in #5640 (#5885)
### Security
- Updated dependencies (#5885)
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
"@ensdomains/ens": "^0.6.0",
"@ensdomains/resolver": "^0.2.4",
"@types/bignumber.js": "^4.0.2",
"@types/bn.js": "^5.1.0",
"@types/bn.js": "^5.1.1",
"@types/node": "^12.12.68",
"@types/prettier": "2.6.0",
"babel-loader": "^8.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/web3-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"main": "lib/index.js",
"dependencies": {
"@types/bn.js": "^5.1.0",
"@types/bn.js": "^5.1.1",
"@types/node": "^12.12.6",
"bignumber.js": "^9.0.0",
"web3-core-helpers": "1.8.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/web3-eth-contract/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"main": "lib/index.js",
"dependencies": {
"@types/bn.js": "^5.1.0",
"@types/bn.js": "^5.1.1",
"web3-core": "1.8.2",
"web3-core-helpers": "1.8.2",
"web3-core-method": "1.8.2",
Expand Down