public Task <string> GetClientAddressQueryAsync(BigInteger gUID, BlockParameter blockParameter = null)
        {
            var getClientAddressFunction = new GetClientAddressFunction();

            getClientAddressFunction.GUID = gUID;

            return(ContractHandler.QueryAsync <GetClientAddressFunction, string>(getClientAddressFunction, blockParameter));
        }
 public Task <string> GetClientAddressQueryAsync(GetClientAddressFunction getClientAddressFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetClientAddressFunction, string>(getClientAddressFunction, blockParameter));
 }