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

Fix: _jsonInterfaceMethodToString export in types #5550

Merged
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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -614,4 +614,6 @@ Released with 1.0.0-beta.37 code base.

## [Unreleased]

## [1.8.2]
### Fixed

- Fixed types for `web3.utils._jsonInterfaceMethodToString` (#5550)
2 changes: 1 addition & 1 deletion packages/web3-utils/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export interface Utils {
isContractAddressInBloom(bloom: string, contractAddress: string): boolean;
isTopicInBloom(bloom: string, topic: string): boolean;
isTopic(topic: string): boolean;
jsonInterfaceMethodToString(abiItem: AbiItem): string;
_jsonInterfaceMethodToString(abiItem: AbiItem): string;
soliditySha3(...val: Mixed[]): string | null;
soliditySha3Raw(...val: Mixed[]): string;
encodePacked(...val: Mixed[]): string | null;
Expand Down