public Task <byte[]> GetMappingBytes32ToBytes32ValueQueryAsync(byte[] storageKey, byte[] mappingKey, BlockParameter blockParameter = null)
        {
            var getMappingBytes32ToBytes32ValueFunction = new GetMappingBytes32ToBytes32ValueFunction();

            getMappingBytes32ToBytes32ValueFunction.StorageKey = storageKey;
            getMappingBytes32ToBytes32ValueFunction.MappingKey = mappingKey;

            return(ContractHandler.QueryAsync <GetMappingBytes32ToBytes32ValueFunction, byte[]>(getMappingBytes32ToBytes32ValueFunction, blockParameter));
        }
 public Task <byte[]> GetMappingBytes32ToBytes32ValueQueryAsync(GetMappingBytes32ToBytes32ValueFunction getMappingBytes32ToBytes32ValueFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetMappingBytes32ToBytes32ValueFunction, byte[]>(getMappingBytes32ToBytes32ValueFunction, blockParameter));
 }