:blockLogsBloom leaf node


Label

block logs bloom filter

Description

The bloom filter of log entries resulting from the transactions in the block. The bloom filter helps to identify blocks with logs quickly. To find the indexed log entries from a contract, only the bloom filters of all blocks, which are included in the block header have to be checked. Note that bloom filters can produce false positives but not false negatives. In other words, if the bloom filter indicates that the topic and contract have not produced any logs in a block, this information is final. If the bloom filter indicates a match, it is only a probabilistic result and has to be verified further. The transactions in the block can then be re-executed and the probabilistic match of the bloom filter can be verified.

Usage

DOMAINPROPERTYRANGE
:Block :blockLogsBloom xsd:hexBinary

Implementation

@prefix : <http://ethon.consensys.net/> .
@prefix ns: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:blockLogsBloom a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "block logs bloom filter"@en ;
    :suggestedStringRepresentation "blockLogsBloom" ;
    rdfs:comment """The bloom filter of log entries resulting from the transactions in the block. 

The bloom filter helps to identify blocks with logs quickly. To find the indexed log entries from a contract, only the bloom filters of all blocks, which are included in the block header have to be checked. Note that bloom filters can produce false positives but not false negatives. In other words, if the bloom filter indicates that the topic and contract have not produced any logs in a block, this information is final. If the bloom filter indicates a match, it is only a probabilistic result and has to be verified further. The transactions in the block can then be re-executed and the probabilistic match of the bloom filter can be verified."""@en ;
    rdfs:domain :Block ;
    rdfs:range xsd:hexBinary ;
    rdfs:seeAlso :txLogsBloom ;
    rdfs:subPropertyOf :BlockDataProperty ;
    ns:term_status "unstable" .