Skip to content

Commit

Permalink
Merge branch '4.x' into fix-stale
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex authored Oct 4, 2023
2 parents f0dfa05 + 9b03f9d commit abed425
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2098,6 +2098,7 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
#### web3-eth

- Ensure provider.supportsSubscriptions exists before watching by subscription (#6440)
- Fixed `withdrawalsSchema.address` property type `bytes32` to `address` (#6470)

### Changed

Expand Down
2 changes: 1 addition & 1 deletion packages/web3-eth/src/schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ export const withdrawalsSchema = {
format: 'uint',
},
address: {
format: 'bytes32',
format: 'address',
},
amount: {
format: 'uint',
Expand Down

0 comments on commit abed425

Please sign in to comment.