Hashgraph
Hashgraph copied to clipboard
.NET Client Library for Hedera Hashgraph
Document rpc cryptoGetBalance (Query) returns (Response); // Retrieves the balance for an account by submitting the query.
Document rpc getClaim (Query) returns (Response); // Retrieves the claim for an account by submitting the query.
Document rpc deleteClaim (Transaction) returns (TransactionResponse); // Deletes a claim by submitting the transaction. The grpc server returns the TransactionResponse
Document rpc addClaim (Transaction) returns (TransactionResponse); // Adds a claim by submitting the transaction. The grpc server returns the TransactionResponse
Document rpc cryptoTransfer (Transaction) returns (TransactionResponse); // Initiates a transfer by submitting the transaction. The grpc server returns the TransactionResponse
Document rpc updateAccount (Transaction) returns (TransactionResponse); // Updates an account by submitting the transaction. The grpc server returns the TransactionResponse
Document rpc createAccount (Transaction) returns (TransactionResponse); // Creates a new account by submitting the transaction. The grpc server returns the TransactionResponse
Document rpc cryptoDelete (Transaction) returns (TransactionResponse); // Deletes and account by submitting the transaction. The grpc server returns the TransactionResponse
document rpc getFileInfo (Query) returns (Response); // Retrieves the file information by submitting the query. The grpc server returns the Response
Document rpc getAccountInfo (Query) returns (Response); // Retrieves the account information for an account by submitting the query.