hedera-sdk-java icon indicating copy to clipboard operation
hedera-sdk-java copied to clipboard

Hedera™ Hashgraph SDK for Java

Results 176 hedera-sdk-java issues
Sort by recently updated
recently updated
newest added

### 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...

enhancement
p2

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...

enhancement
p2

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...

enhancement
p2

### 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...

enhancement

### 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_

enhancement
backlog

**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 ###...

enhancement
p1

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...

bug