Are you inserting one transaction at a time in the database? Doing inserts in batches should help with performance.
Can any big brain devs help me figure out how to speed up this import?
Just saving blocks and txns into a db...
But at the current pace it's gonna take two weeks to finish
https://github.com/utxo-one/bitcoin-analytics-api/blob/master/src/import/import.service.ts
Are you inserting one transaction at a time in the database? Doing inserts in batches should help with performance.