Skip to content

Commit 6498cee

Browse files
chore(release): v2.74.0 (#3410)
Signed-off-by: Ivaylo Nikolov <[email protected]>
1 parent 1b35118 commit 6498cee

File tree

6 files changed

+23
-6
lines changed

6 files changed

+23
-6
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## v2.74.0
9+
10+
### Fixed
11+
12+
- Fixed an issue where setMaxNodesPerTransaction() had no effect if called after a transaction was frozen. The setting is now applied correctly, allowing dApps and wallets to reduce redundant signing prompts when executing transactions. [#3383](https://github.com/hiero-ledger/hiero-sdk-js/pull/3383)
13+
14+
### Added
15+
16+
- Extended amount field support across the SDK to accept BigNumber and bigint types in addition to existing Long and number types, ensuring consistent handling of large amounts throughout the codebase. [#3394](https://github.com/hiero-ledger/hiero-sdk-js/pull/3394)
17+
- Added support for latest Metro bundler by adding "react-native" to `package.json`'s exports [#3388](https://github.com/hiero-ledger/hiero-sdk-js/pull/3388)
18+
19+
### Changed
20+
21+
- This moves the mirrorRestApiBaseUrl construction from the client to the MirrorNode class for better separation of concerns.
22+
Additional fix - port for the rest api is handled correctly for local dev environments. [#3395](https://github.com/hiero-ledger/hiero-sdk-js/pull/3395)
23+
- Added New gRPC web proxies for node 33 and node 34[#3384](https://github.com/hiero-ledger/hiero-sdk-js/pull/3384)
24+
825
## v2.73.2
926

1027
### Added

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashgraph/sdk",
3-
"version": "2.73.2",
3+
"version": "2.74.0",
44
"description": "Hiero SDK",
55
"types": "./lib/index.d.ts",
66
"main": "./lib/index.cjs",
@@ -65,7 +65,7 @@
6565
"@ethersproject/bytes": "5.8.0",
6666
"@ethersproject/rlp": "5.8.0",
6767
"@grpc/grpc-js": "1.12.6",
68-
"@hashgraph/cryptography": "1.11.0",
68+
"@hashgraph/cryptography": "1.12.0",
6969
"@hashgraph/proto": "2.23.0",
7070
"ansi-regex": "6.2.2",
7171
"ansi-styles": "6.2.3",

packages/cryptography/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hashgraph/cryptography",
3-
"version": "1.11.0",
3+
"version": "1.12.0",
44
"description": "Cryptographic utilities and primitives for the Hiero SDK",
55
"main": "./lib/index.cjs",
66
"types": "./lib/index.d.ts",

src/client/addressbooks/mainnet.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/addressbooks/previewnet.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/addressbooks/testnet.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)