예제 #1
0
 /// <summary>
 /// Retrieves the balance in tinybars from the network for a given address.
 /// </summary>
 /// <param name="address">
 /// The hedera network address to retrieve the balance of.
 /// </param>
 /// <param name="configure">
 /// Optional callback method providing an opportunity to modify
 /// the execution configuration for just this method call.
 /// It is executed prior to submitting the request to the network.
 /// </param>
 /// <returns>
 /// The balance of the associated address.
 /// </returns>
 /// <exception cref="ArgumentOutOfRangeException">If required arguments are missing.</exception>
 /// <exception cref="InvalidOperationException">If required context configuration is missing.</exception>
 /// <exception cref="PrecheckException">If the gateway node create rejected the request upon submission.</exception>
 public async Task <ulong> GetAccountBalanceAsync(Address address, Action <IContext>?configure = null)
 {
     return(new AccountBalances(await ExecuteQueryAsync(CryptoGetAccountBalanceQuery.ForAccount(address), configure).ConfigureAwait(false)).Crypto);
 }
예제 #2
0
 /// <summary>
 /// Retrieves the crypto and token blances from the network for a given contract.
 /// </summary>
 /// <param name="address">
 /// The hedera network address of the contract to retrieve the balance of.
 /// </param>
 /// <param name="configure">
 /// Optional callback method providing an opportunity to modify
 /// the execution configuration for just this method call.
 /// It is executed prior to submitting the request to the network.
 /// </param>
 /// <returns>
 /// An object containing the crypto balance associated with the
 /// contract in addition to a list of all tokens held by the contract
 /// with their balances.
 /// </returns>
 public async Task <AccountBalances> GetContractBalancesAsync(Address contract, Action <IContext>?configure = null)
 {
     return(new AccountBalances(await ExecuteQueryAsync(CryptoGetAccountBalanceQuery.ForContract(contract), configure).ConfigureAwait(false)));
 }