You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to use webcoin and more particularly the Bloom filter. I am having a hard time to understand how it works. So simple use case : I would like to verify how much there is on a address. How can I do this, do I still need to sync all the headers ?
Thanks,
The text was updated successfully, but these errors were encountered:
Yes, you will need to sync all the headers after adding your data (the
public key hash associated with your addresses) to the Bloom filter. If you
know that your key was generated at a certain time, you only need to sync
starting at when they key was made, since you know there won't be any
transactions before that.
I'll build a simple module for this and put it on npm when I get some time. I'll try to make the API look something like this:
letscanner=scan({address: 'some address',dateCreated: 1484180397934,// some datenode: node})scanner.on('balance',function(e){console.log('balance changed:',e.balance)})
Hello,
I would like to use webcoin and more particularly the Bloom filter. I am having a hard time to understand how it works. So simple use case : I would like to verify how much there is on a address. How can I do this, do I still need to sync all the headers ?
Thanks,
The text was updated successfully, but these errors were encountered: