public Task <string> GetMappingBytes32ToAddressValueQueryAsync(byte[] storageKey, byte[] mappingKey, BlockParameter blockParameter = null)
        {
            var getMappingBytes32ToAddressValueFunction = new GetMappingBytes32ToAddressValueFunction();

            getMappingBytes32ToAddressValueFunction.StorageKey = storageKey;
            getMappingBytes32ToAddressValueFunction.MappingKey = mappingKey;

            return(ContractHandler.QueryAsync <GetMappingBytes32ToAddressValueFunction, string>(getMappingBytes32ToAddressValueFunction, blockParameter));
        }
 public Task <string> GetMappingBytes32ToAddressValueQueryAsync(GetMappingBytes32ToAddressValueFunction getMappingBytes32ToAddressValueFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetMappingBytes32ToAddressValueFunction, string>(getMappingBytes32ToAddressValueFunction, blockParameter));
 }