You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
8
8
9
9
### Added
10
10
11
+
- TLS support with two-stage control (`set_transport_security()` and `set_verify_certificates()`) for encrypted connections to Hedera networks. TLS is enabled by default for hosted networks (mainnet, testnet, previewnet) and disabled for local networks (solo, localhost) (#855)
11
12
- Add detail to `token_airdrop.py` and `token_airdrop_cancel.py`
12
13
- Add workflow: github bot to respond to unverified PR commits (#750)
13
14
- Add workflow: bot workflow which notifies developers of workflow failures in their pull requests.
Copy file name to clipboardExpand all lines: docs/sdk_developers/setup.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -183,10 +183,13 @@ FREEZE_KEY=...
183
183
RECIPIENT_ID=...
184
184
TOKEN_ID=...
185
185
TOPIC_ID=...
186
+
VERIFY_CERTS=true # Enable certificate verification for TLS (default: true)
186
187
```
187
188
188
189
These are only needed if you're customizing example scripts.
189
190
191
+
**Note on TLS:** The SDK uses TLS by default for hosted networks (testnet, mainnet, previewnet). For local networks (solo, localhost), TLS is disabled by default.
192
+
190
193
### Verify Your Setup
191
194
192
195
Run the test suite to ensure everything is working:
0 commit comments