public Task <BigInteger> GetClaimCostQueryAsync(string claimed, BlockParameter blockParameter = null)
        {
            var getClaimCostFunction = new GetClaimCostFunction();

            getClaimCostFunction.Claimed = claimed;

            return(ContractHandler.QueryAsync <GetClaimCostFunction, BigInteger>(getClaimCostFunction, blockParameter));
        }
 public Task <BigInteger> GetClaimCostQueryAsync(GetClaimCostFunction getClaimCostFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetClaimCostFunction, BigInteger>(getClaimCostFunction, blockParameter));
 }