hedera-sdk-java
hedera-sdk-java copied to clipboard
Hedera™ Hashgraph SDK for Java
### Problem The Java SDK only supports reading encrypted PEM keys that [use the aes-128-CBC cipher](https://github.com/hashgraph/hedera-sdk-java/blob/main/sdk/src/main/java/com/hedera/hashgraph/sdk/Pem.java#L144) and [hmac sha256 algorithm](https://github.com/hashgraph/hedera-sdk-java/blob/main/sdk/src/main/java/com/hedera/hashgraph/sdk/Pem.java#L150). I circulated this internally with then Hedera employees - @nathanklick...
Introducing a CODEOWNERS file to auto-assign PR reviews, as detailed here: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
Reviewing PRs is time consuming, so I'm open to any thing that makes reviewing PRs easier. One idea I had was having a automatically generated file that shows the entire...
Although we've put in some work into making the task of updating protobuf simple, we still have the issue that the SDK has all the protobuf files committed. Besides the...
### Problem The following issues were added to increase the stability and performance of the SDKs when nodes are unavailable. https://github.com/hashgraph/hedera-sdk-java/issues/788 https://github.com/hashgraph/hedera-sdk-java/issues/787 https://github.com/hashgraph/hedera-sdk-java/issues/785 After the enhancements are implemented, the SDK...
### Problem The private mirror node is listed as the mirror node endpoint in the SDKs. ### Solution Update to the public mirror node endpoint. ### Alternatives _No response_
**Description**: * Make the Android example use the Maven Central version by default * Add instructions for running it with the local SDK version **Related issue(s)**: Fixes #1105
### Problem HIP-564 introduces zero unit token operations for smart contracts. HIP: https://hips.hedera.com/hip/hip-564 ### Solution Add example demonstrating a zero unit token operation Example template - [ ] https://github.com/hashgraph/hedera-sdk-reference/pull/64 ###...
Signed-off-by: dikel **Description**: * Remove logging when unsubscribing from TopicMessageQuery **Related issue(s)**: Fixes #1174
### Description In the `Executable` constructor, there are two listeners doing logging like this: ``` logger.trace("...{}", Hex.toHexString(request.toByteArray())); ``` The parameter is evaluated before it is determined that tracing is not...