Can bloom filter be used to filter UTXO?

-1

I am thinking about building an spv-like wallet using trusted nodes. It does not download blockchain. Instead, the wallet gets its utxo, transactions,balance data from abe.

My question is, can the bloom filter be used to filter UTXO?

Wallet

Posted 2015-07-16T06:55:53.040

Reputation: 11

Have you read BIP37?

Anonymous 2015-07-16T07:19:42.700

You certainly could do this, but it would be much slower on the server's side than a per-address query, and I don't think there's a ready-made implementation to do this.Nick ODell 2015-07-16T07:27:49.103

What would be the benefit over regular SPV wallets? They don't download the blockchain either.Murch 2015-07-16T13:02:47.707

Do you mean filtering all data on Abe with your filter? If you're using Abe I don't see why you need to worry about bloom filters or SPV.karimkorun 2015-07-17T16:39:05.673

Answers

2

I don't see your desired trusted full node setup.

But if you can control a the trusted full-nodes, you might consider using the REST getutxo command. It's more or less similar to a not implemented Bip64. In my opinion you don't need bloom filter for the getutxo command.

Don't expose the REST/RPC interface to the public. Instead build a reverse proxy with apache or similar.

Jonas Schnelli

Posted 2015-07-16T06:55:53.040

Reputation: 5 465