Hashgraph icon indicating copy to clipboard operation
Hashgraph copied to clipboard

.NET Client Library for Hedera Hashgraph

Results 26 Hashgraph issues
Sort by recently updated
recently updated
newest added

### Issue In the `MirrorGrpcClient` ->`SubscribeTopicAsync` method I kept getting the error: > The Mirror node is not available at this time ### Solution Was added `Polly` library that adds...

Created a interface for each Mirror Client and the extension for the IServiceCollection that allows to register this dependencies and use this interfaces as DI that simplify the usage. How...

The HederaTokenService.sol Solidity smart contract (https://github.com/hashgraph/hedera-smart-contracts/blob/main/hts-precompile/HederaTokenService.sol) has function signatures that require array parameter types, such as: **function transferTokens(address token, address[] memory accountIds, int64[] memory amounts) internal returns (int responseCode)** The...

enhancement

As coded NeworkResult.ToRecord() fails when fetching a record for a smart contract call because it is processed as a smart contract create. The fix is: internal TransactionRecord ToRecord() { if...

bug

Some recent PRs have updated the docs but we've not re-built and committed them yet.

Maintanance

QueryContractAsync is still wasteful, the ASK functionality returns a value that is lower than what is actually required. Considering calling the method twice, the first with no gas and getting...

question

Let's see if we can get the smart contract sources included in the build/test pipeline. This would require adding a node project to the project and adding a build task...

enhancement

Review the ABI specification to and include missing data types that can be encoded/decoded. This might result in creating new class representing certain "fixed" types that the ABI allows.

enhancement

Review the `FunctionResults` and `ABI` classes for instances where developer friendly exceptions can be thrown. Presently there is no error checking nor unit tests identifying the types of errors this...

enhancement