Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit aa516b9

Browse filesBrowse files
committed
update version
1 parent 07993c2 commit aa516b9
Copy full SHA for aa516b9

File tree

Expand file treeCollapse file tree

18 files changed

+115
-39
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

18 files changed

+115
-39
lines changed
Open diff view settings
Collapse file

‎CHANGELOG.md‎

Copy file name to clipboardExpand all lines: CHANGELOG.md
+25-1Lines changed: 25 additions & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -2768,14 +2768,38 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
27682768

27692769
- fix `padRight` validation failure on large `uint` (#7265)
27702770

2771-
## [Unreleased]
2771+
## [4.15.0]
27722772

27732773
### Added
27742774

2775+
#### web3-eth
2776+
2777+
- `createNewPendingTransactionFilter` , `createNewFilter` , `createNewBlockFilter` , `uninstallFilter` , `getFilterChanges` and `getFilterLogs` are exported from `Web3Eth` and `filtering_rpc_method_wrappers` (#7353)
2778+
2779+
#### web3-eth-abi
2780+
2781+
- added `decodeFunctionCall` and `decodeFunctionReturn`. (#7345)
2782+
27752783
#### web3-eth-accounts
27762784

27772785
- `hashMessage` now has a new optional param `skipPrefix` with a default value of `false`. A new function `signRaw` was added to sign a message without prefix. (#7346)
27782786

27792787
#### web3-rpc-providers
27802788

27812789
- PublicNodeProvider was added (#7322)
2790+
2791+
#### web3-types
2792+
2793+
- `FilterParams` type added (#7353)
2794+
2795+
#### web3-account-abstraction
2796+
2797+
- RC release
2798+
2799+
### Fixed
2800+
2801+
#### web3-eth-contracts
2802+
2803+
- Fix Contract methods input param type any[] (#7340)
2804+
2805+
## [Unreleased]
Collapse file

‎packages/web3-account-abstraction/CHANGELOG.md‎

Copy file name to clipboardExpand all lines: packages/web3-account-abstraction/CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3535
3636
-->
3737

38+
## [0.1.0.rc.0]
39+
40+
### Added
41+
42+
- RC release
43+
3844
## [Unreleased]
Collapse file

‎packages/web3-account-abstraction/package.json‎

Copy file name to clipboardExpand all lines: packages/web3-account-abstraction/package.json
+5-5Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@
5656
"typescript": "^4.7.4"
5757
},
5858
"dependencies": {
59-
"web3-core": "^4.6.0",
60-
"web3-types": "^1.8.0",
61-
"web3-eth-abi": "^4.1.3",
62-
"web3-utils": "^4.0.7",
63-
"web3-validator": "^2.0.3"
59+
"web3-core": "^4.7.0",
60+
"web3-eth-abi": "^4.4.0",
61+
"web3-types": "^1.9.0",
62+
"web3-utils": "^4.3.2",
63+
"web3-validator": "^2.0.6"
6464
}
6565
}
Collapse file

‎packages/web3-eth-abi/CHANGELOG.md‎

Copy file name to clipboardExpand all lines: packages/web3-eth-abi/CHANGELOG.md
+3-1Lines changed: 3 additions & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,10 @@ Documentation:
194194

195195
- `decodeLog` , `decodeParametersWith` , `decodeParameters` and `decodeParameters` now accepts first immutable param as well (#7288)
196196

197-
## [Unreleased]
197+
## [4.4.0]
198198

199199
### Added
200200

201201
- added `decodeFunctionCall` and `decodeFunctionReturn`. (#7345)
202+
203+
## [Unreleased]
Collapse file

‎packages/web3-eth-abi/package.json‎

Copy file name to clipboardExpand all lines: packages/web3-eth-abi/package.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-eth-abi",
3-
"version": "4.3.0",
3+
"version": "4.4.0",
44
"description": "Web3 module encode and decode EVM in/output.",
55
"main": "./lib/commonjs/index.js",
66
"module": "./lib/esm/index.js",
@@ -44,7 +44,7 @@
4444
"dependencies": {
4545
"abitype": "0.7.1",
4646
"web3-errors": "^1.3.0",
47-
"web3-types": "^1.8.1",
47+
"web3-types": "^1.9.0",
4848
"web3-utils": "^4.3.2",
4949
"web3-validator": "^2.0.6"
5050
},
Collapse file

‎packages/web3-eth-accounts/CHANGELOG.md‎

Copy file name to clipboardExpand all lines: packages/web3-eth-accounts/CHANGELOG.md
+3-1Lines changed: 3 additions & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,10 @@ Documentation:
183183

184184
- Revert `TransactionFactory.registerTransactionType` if there is a version mistatch between `web3-eth` and `web3-eth-accounts` and fix nextjs problem. (#7216)
185185

186-
## [Unreleased]
186+
## [4.3.0]
187187

188188
### Added
189189

190190
- `hashMessage` now has a new optional param `skipPrefix` with a default value of `false`. A new function `signRaw` was added to sign a message without prefix. (#7346)
191+
192+
## [Unreleased]
Collapse file

‎packages/web3-eth-accounts/package.json‎

Copy file name to clipboardExpand all lines: packages/web3-eth-accounts/package.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-eth-accounts",
3-
"version": "4.2.1",
3+
"version": "4.3.0",
44
"description": "Package for managing Ethereum accounts and signing",
55
"main": "./lib/commonjs/index.js",
66
"module": "./lib/esm/index.js",
@@ -62,8 +62,8 @@
6262
"crc-32": "^1.2.2",
6363
"ethereum-cryptography": "^2.0.0",
6464
"web3-errors": "^1.3.0",
65-
"web3-types": "^1.7.0",
66-
"web3-utils": "^4.3.1",
65+
"web3-types": "^1.9.0",
66+
"web3-utils": "^4.3.2",
6767
"web3-validator": "^2.0.6"
6868
}
6969
}
Collapse file

‎packages/web3-eth-contract/CHANGELOG.md‎

Copy file name to clipboardExpand all lines: packages/web3-eth-contract/CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -404,4 +404,10 @@ Documentation:
404404
- The returnred properties of `contract.deploy(...)` are structured with a newly created class named `DeployerMethodClass`. (#7197)
405405
- Add a missed accepted type for the `abi` parameter, at `dataInputEncodeMethodHelper` and `getSendTxParams`. (#7197)
406406

407+
## [4.7.1]
408+
409+
### Fixed
410+
411+
- Fix Contract methods input param type any[] (#7340)
412+
407413
## [Unreleased]
Collapse file

‎packages/web3-eth-contract/package.json‎

Copy file name to clipboardExpand all lines: packages/web3-eth-contract/package.json
+7-7Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-eth-contract",
3-
"version": "4.7.0",
3+
"version": "4.7.1",
44
"description": "Web3 module to interact with Ethereum smart contracts.",
55
"main": "./lib/commonjs/index.js",
66
"module": "./lib/esm/index.js",
@@ -46,12 +46,12 @@
4646
},
4747
"dependencies": {
4848
"@ethereumjs/rlp": "^5.0.2",
49-
"web3-core": "^4.5.1",
49+
"web3-core": "^4.7.0",
5050
"web3-errors": "^1.3.0",
51-
"web3-eth": "^4.8.2",
52-
"web3-eth-abi": "^4.2.3",
53-
"web3-types": "^1.7.0",
54-
"web3-utils": "^4.3.1",
51+
"web3-eth": "^4.11.0",
52+
"web3-eth-abi": "^4.4.0",
53+
"web3-types": "^1.9.0",
54+
"web3-utils": "^4.3.2",
5555
"web3-validator": "^2.0.6"
5656
},
5757
"devDependencies": {
@@ -69,7 +69,7 @@
6969
"prettier": "^2.7.1",
7070
"ts-jest": "^29.1.1",
7171
"typescript": "^4.7.4",
72-
"web3-eth-accounts": "^4.2.0",
72+
"web3-eth-accounts": "^4.3.0",
7373
"web3-providers-ws": "^4.0.8"
7474
}
7575
}
Collapse file

‎packages/web3-eth/CHANGELOG.md‎

Copy file name to clipboardExpand all lines: packages/web3-eth/CHANGELOG.md
+3-1Lines changed: 3 additions & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -289,8 +289,10 @@ Documentation:
289289

290290
- `populateGasPrice` function now checks `Web3Context.config.ignoreGasPricing`. If `ignoreGasPricing` is true, gasPrice will not be estimated (#7320)
291291

292-
## [Unreleased]
292+
## [4.11.0]
293293

294294
### Added
295295

296296
- `createNewPendingTransactionFilter` , `createNewFilter` , `createNewBlockFilter` , `uninstallFilter` , `getFilterChanges` and `getFilterLogs` are exported from `Web3Eth` and `filtering_rpc_method_wrappers` (#7353)
297+
298+
## [Unreleased]

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.