-
Notifications
You must be signed in to change notification settings - Fork 7
Description
I thought about using the json-api of doublespend.cash to collect information about double spends and create statistics.
To do so I need to know the url before querying the api. With urls like
/txdata/cc4d87dc905b913ef4af8020e54f6dfda4a3017e.json
it seems impossible to write the program (at least for me :)
If you however derive the hash from something like date+number - for example: 2018062501, 2018062502 etc. - you can easily query the json-api to collect data about doublespends.
@GitCash send 0.005 bch to @dagurval
Update: I think it is this line:
"h.update(txid_first.encode() + txid_second.encode())"
in this file
https://github.com/dagurval/doublespend.cash/blob/master/respend/txdata.py
I guess replacing it with (date+k) requires some kind of loop to count k ...