Skip to content

Commit 277bf9d

Browse files
authored
Merge branch 'hiero-ledger:main' into main
2 parents 7744971 + 01e2369 commit 277bf9d

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

.github/workflows/examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Prepare Hiero Solo
3636
id: solo
37-
uses: hiero-ledger/hiero-solo-action@6a1a77601cf3e69661fb6880530a4edf656b40d5 #v0.14.0
37+
uses: hiero-ledger/hiero-solo-action@dd0048139ef1e40fd6067f01bf94eb42a67294f4 #v0.15.0
3838
with:
3939
installMirrorNode: true
4040
- name: Run Examples

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: Prepare Hiero Solo
5151
id: solo
52-
uses: hiero-ledger/hiero-solo-action@6a1a77601cf3e69661fb6880530a4edf656b40d5 # v0.14.0
52+
uses: hiero-ledger/hiero-solo-action@dd0048139ef1e40fd6067f01bf94eb42a67294f4 # v0.15.0
5353
with:
5454
installMirrorNode: true
5555

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
66

77
## [Unreleased]
88

9+
10+
### Added
11+
12+
13+
### Changed
14+
15+
16+
### Fixed
17+
18+
19+
20+
## [0.1.8] - 2025-11-07
21+
922
### Added
1023
- Add `TokenFeeScheduleUpdateTransaction` class to support updating custom fee schedules on tokens (#471).
1124
- Add `examples/token_update_fee_schedule_fungible.py` and `examples/token_update_fee_schedule_nft.py` demonstrating the use of `TokenFeeScheduleUpdateTransaction`.
@@ -29,6 +42,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
2942
- docs: Add `docs/sdk_developers/project_structure.md` to explain repository layout and import paths.
3043

3144
### Changed
45+
- chore: bumped solo action from 14.0 to 15.0 (#764)
3246
- chore: replaced hardcoded 'testnet' messages with environment network name
3347
- chore: validate that token airdrop transactions require an available token service on the channel (#632)
3448
- chore: update local environment configuration in env.example (#649)
@@ -54,6 +68,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
5468
- Dependabot alerts (version bumps)
5569
- Fixed incorrect `TokenType` import (protobuf vs. SDK enum) in 18 example files.
5670
- Update `schedule_sign_transaction_e2e_test` to check for key presence instead of relying on index.
71+
- Add `localhost` and `local` as network names
5772

5873
### Breaking Changes
5974
- chore: changed the file names airdrop classes (#631)
@@ -86,6 +101,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
86101
- Added `checksum` filed for TopicId, FileId, ContractId, ScheduleId class
87102
- Added workflow for running example scripts.
88103
- docs: workflow.md documenting key steps to creating a pull request (#605)
104+
- chore: fix the examples workflow to log error messages and run on import failure (#738)
89105
- Added `docs/discord.md` explaining how to join and navigate the Hiero community Discord (#614).
90106

91107

@@ -175,7 +191,6 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
175191
- Add strict type hints to `TransactionGetReceiptQuery` (#420)
176192
- Fixed broken documentation links in CONTRIBUTING.md by converting absolute GitHub URLs to relative paths
177193
- Updated all documentation references to use local paths instead of pointing to hiero-sdk project hub
178-
- chore: fix the examples workflow to log error messages and run on import failure (#738)
179194

180195
## [0.1.5] - 2025-09-25
181196

src/hiero_sdk_python/client/network.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,12 @@ class Network:
5959
'solo': [
6060
("localhost:50211", AccountId(0, 0, 3))
6161
],
62+
'localhost': [
63+
("localhost:50211", AccountId(0, 0, 3))
64+
],
65+
'local': [
66+
("localhost:50211", AccountId(0, 0, 3))
67+
],
6268
}
6369

6470
LEDGER_ID: Dict[str, bytes] = {

0 commit comments

Comments
 (0)