How to use ethereum-bloom-filters - 6 common examples

To help you get started, we’ve selected a few ethereum-bloom-filters examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ethereum / web3.js / packages / web3-utils / src / utils.js View on Github external
var isBloom = function (bloom) {
    return ethereumBloomFilters.isBloom(bloom);
};
github ethereum / web3.js / packages / web3-utils / src / utils.js View on Github external
var isContractAddressInBloom = function (bloom, contractAddress) {
    return ethereumBloomFilters.isContractAddressInBloom(bloom, contractAddress);
};
github ethereum / web3.js / packages / web3-utils / src / utils.js View on Github external
var isInBloom = function (bloom, topic) {
    return ethereumBloomFilters.isInBloom(bloom, topic);
};
github ethereum / web3.js / packages / web3-utils / src / utils.js View on Github external
var isTopic = function (topic) {
    return ethereumBloomFilters.isTopic(topic);
};
github ethereum / web3.js / packages / web3-utils / src / utils.js View on Github external
var isTopicInBloom = function (bloom, topic) {
    return ethereumBloomFilters.isTopicInBloom(bloom, topic);
};
github ethereum / web3.js / packages / web3-utils / src / utils.js View on Github external
var isUserEthereumAddressInBloom = function (bloom, ethereumAddress) {
    return ethereumBloomFilters.isUserEthereumAddressInBloom(bloom, ethereumAddress);
};