Volkan
Volkan
> I could see this added as a --force flag but it probably shouldn't do it by default. It would need superuser permissions and could break running applications that the...
Cool, I'll try to create a PR once I find some time to work on this
This looks interesting, I think I'll address this in the Etherface re-write. In general this would require changes to the `parser.rs` module as well as the introduction of a `parameter`...
Only works for Etherscan though, because most GitHub repositories don't provide an ABI.
I'll see if I can find some time this week to work on this, should in theory be fairly simple as they're 1:1 clones of Etherscan with only a different...
> I noticed the API is being hosted on Hetzner and I wanted to ask if this is being hosted on a single instance or if it's being load balanced....
As a side note: REST API specific database access can always be replaced with async code, scaling it even further than what would be possible with threads. Hope that clears...
This is such a dick move from Etherscan, but it doesn't really matter as Etherscan scraping has been disabled for a while with the current Etherface deployment. That being said,...
Yeah, Selenium was the first solution that popped into my mind. The other was embedding Python code using [PyO3](https://pyo3.rs/v0.18.2/) to use [cloudscraper](https://github.com/venomous/cloudscraper) because no such Rust libraries exist, but I'm...
I did some quick research to see if this can be accomplished in Rust using ChromeDriver, and it kind of works. Key findings were: 1. The ChromeDriver has to be...