-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SIG_PROVIDER] Add eth-bytecode-db source. Add batched event retrieva…
…ls (#707) * Add event descriptions search * Insertion of the event signatures into database implementation * Add tests * Bump blockscout-service-launcher to v0.9.0. Add BatchGetEventAbis method template * Update existing events parser to support eth-bytecode-db * Add batch_get_event_abi implementation * Update BatchGetEventAbis proto to bypass initial 'responses' object. Make requests in batch_get_event_abis concurrent * Update tests * Add BatchSearchEventDescriptions endpoint definition. Add test cases for batch-search * Add BatchSearchEventDescriptions implementation * Make use of batch search * Remove supports_batched method
- Loading branch information
1 parent
ff9c358
commit db27e40
Showing
19 changed files
with
1,387 additions
and
296 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
use blockscout_service_launcher::launcher::ConfigSettings; | ||
use sig_provider_server::{sig_provider, Settings}; | ||
|
||
#[tokio::main] | ||
async fn main() -> Result<(), anyhow::Error> { | ||
let settings = Settings::new().expect("failed to read config"); | ||
let settings = Settings::build().expect("failed to read config"); | ||
sig_provider(settings).await | ||
} |
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.