helium / blockchain-etl

Blockchain follower that follows and stores the Helium blockchain
Apache License 2.0
64 stars 37 forks source link

Changes two ms accuracy witness timestamps to strings #164

Closed madninja closed 3 years ago

madninja commented 3 years ago

Large integers are not well supported by JS which makes first_time and recent_time fail or warn loudly in some JS packages.

This changes these to strings so that JS implementations can choose to parse this with (for example) a bigint library, or ignorre it safely

Fixes #163