Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 0799331

Browse files
committed
bump web3-types version
1 parent 8c0bbc1 commit 0799331

File tree

8 files changed

+16
-11
lines changed

8 files changed

+16
-11
lines changed

CHANGELOG.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -2696,11 +2696,6 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
26962696

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

2699-
#### web3
2700-
2701-
- `Web3.providers` namespace exports `type EIP6963ProviderResponse = Map<string, EIP6963ProviderDetail>`. Return type for the static `Web3.requestEIP6963Providers` is now `Promise<EIP6963ProviderResponse>`. (#7239)
2702-
- The callback function provided to the static `Web3.onNewProviderDiscovered` function expects a parameter of type `EIP6963ProvidersMapUpdateEvent` as opposed to `EIP6963AnnounceProviderEvent`. (#7242)
2703-
27042699
## [4.13.0]
27052700

27062701
### Added
@@ -2713,6 +2708,10 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
27132708

27142709
- Adds the same `{transactionSchema?: ValidationSchemaInput}` that exists in `formatTransaction` to `validateTransactionForSigning`
27152710

2711+
#### web3-types
2712+
2713+
- Add COMMITTED to BlockTags (#7124)
2714+
27162715
### Changed
27172716

27182717
#### web3-eth

packages/web3-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"web3-eth-iban": "^4.0.7",
4848
"web3-providers-http": "^4.2.0",
4949
"web3-providers-ws": "^4.0.8",
50-
"web3-types": "^1.7.0",
50+
"web3-types": "^1.8.0",
5151
"web3-utils": "^4.3.1",
5252
"web3-validator": "^2.0.6"
5353
},

packages/web3-eth-abi/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"dependencies": {
4545
"abitype": "0.7.1",
4646
"web3-errors": "^1.3.0",
47-
"web3-types": "^1.7.0",
47+
"web3-types": "^1.8.0",
4848
"web3-utils": "^4.3.1",
4949
"web3-validator": "^2.0.6"
5050
},

packages/web3-eth-personal/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"web3-core": "^4.6.0",
4646
"web3-eth": "^4.9.0",
4747
"web3-rpc-methods": "^1.3.0",
48-
"web3-types": "^1.7.0",
48+
"web3-types": "^1.8.0",
4949
"web3-utils": "^4.3.1",
5050
"web3-validator": "^2.0.6"
5151
},

packages/web3-eth/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"web3-net": "^4.1.0",
7171
"web3-providers-ws": "^4.0.8",
7272
"web3-rpc-methods": "^1.3.0",
73-
"web3-types": "^1.7.0",
73+
"web3-types": "^1.8.0",
7474
"web3-utils": "^4.3.1",
7575
"web3-validator": "^2.0.6"
7676
}

packages/web3-types/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -202,4 +202,10 @@ Documentation:
202202
- Added `result` as optional `never` and `error` as optional `never in type `JsonRpcNotification` (#7091)
203203
- Added `JsonRpcNotfication` as a union type in `JsonRpcResponse` (#7091)
204204

205+
## [1.8.0]
206+
207+
### Added
208+
209+
- Add COMMITTED to BlockTags (#7124)
210+
205211
## [Unreleased]

packages/web3-types/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-types",
3-
"version": "1.7.0",
3+
"version": "1.8.0",
44
"description": "Provide the common data structures and interfaces for web3 modules.",
55
"main": "./lib/commonjs/index.js",
66
"module": "./lib/esm/index.js",

packages/web3/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
"web3-providers-ws": "^4.0.8",
101101
"web3-rpc-methods": "^1.3.0",
102102
"web3-rpc-providers": "^1.0.0-rc.2",
103-
"web3-types": "^1.7.0",
103+
"web3-types": "^1.8.0",
104104
"web3-utils": "^4.3.1",
105105
"web3-validator": "^2.0.6"
106106
}

0 commit comments

Comments
 (0)