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

Commit 2505f87

Browse files
authored
Fix: _jsonInterfaceMethodToString export in types (#5550)
* Fix: _jsonInterfaceMethodToString export in types
1 parent 3b22adf commit 2505f87

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,4 +614,6 @@ Released with 1.0.0-beta.37 code base.
614614

615615
## [Unreleased]
616616

617-
## [1.8.2]
617+
### Fixed
618+
619+
- Fixed types for `web3.utils._jsonInterfaceMethodToString` (#5550)

packages/web3-utils/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ export interface Utils {
169169
isContractAddressInBloom(bloom: string, contractAddress: string): boolean;
170170
isTopicInBloom(bloom: string, topic: string): boolean;
171171
isTopic(topic: string): boolean;
172-
jsonInterfaceMethodToString(abiItem: AbiItem): string;
172+
_jsonInterfaceMethodToString(abiItem: AbiItem): string;
173173
soliditySha3(...val: Mixed[]): string | null;
174174
soliditySha3Raw(...val: Mixed[]): string;
175175
encodePacked(...val: Mixed[]): string | null;

0 commit comments

Comments
 (0)