public Task <bool> SpeciesQueryAsync(ushort returnValue1, ushort returnValue2, string returnValue3, BlockParameter blockParameter = null)
        {
            var speciesFunction = new SpeciesFunction();

            speciesFunction.ReturnValue1 = returnValue1;
            speciesFunction.ReturnValue2 = returnValue2;
            speciesFunction.ReturnValue3 = returnValue3;

            return(ContractHandler.QueryAsync <SpeciesFunction, bool>(speciesFunction, blockParameter));
        }
 public Task <bool> SpeciesQueryAsync(SpeciesFunction speciesFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <SpeciesFunction, bool>(speciesFunction, blockParameter));
 }