forked from ChaosDAO-org/subscrape
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
retrieve arbitrary ABIs to decode all transactions
* add rate limiting to our block explorer API calls, to make sure we always get a valid response from the APIs. * retrieve the ABIs for each contract interface, instead of archiving copies of each one. This allows us to support all APIs without needing to archive each one. * refactor moonbeam_scraper.py's definition of the params to be passed to Moonscan.io in an API call. The specific parameter names should be encapsulated in the wrapper methods. * detect and log when transaction input data isn't decoded properly (since we're trying to decode all transactions now).
- Loading branch information
Showing
5 changed files
with
80 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ eth_utils | |
hexbytes | ||
httpx[http2] | ||
pandas | ||
ratelimit | ||
simplejson | ||
substrate-interface | ||
web3>5.0 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.