public Task <byte[]> GetBytes32ValueQueryAsync(byte[] key, BlockParameter blockParameter = null)
        {
            var getBytes32ValueFunction = new GetBytes32ValueFunction();

            getBytes32ValueFunction.Key = key;

            return(ContractHandler.QueryAsync <GetBytes32ValueFunction, byte[]>(getBytes32ValueFunction, blockParameter));
        }
 public Task <byte[]> GetBytes32ValueQueryAsync(GetBytes32ValueFunction getBytes32ValueFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetBytes32ValueFunction, byte[]>(getBytes32ValueFunction, blockParameter));
 }