cowprotocol / cowprotocol/dune-bridge
Parallelize IPFS Requests for App Data
Open
Nobody has claimed this yet.
- Dominant language
- Rust
- Stars
- 4
- Forks
- 3
- PR merge metrics
- No merged PRs in 30d
Description
This iterative async block of code could probably be a batch request.
for hash in uninitialized_app_data_hashes.iter() {
download_referral_from_ipfs_and_store_in_referral_store(db.clone(), *hash).await?;
}
cf referral_maintenance.rs
Original issue https://github.com/gnosis/gp-dune-bridge/issues/59 by @bh2smith
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start at the iterative async block calling download_referral_from_ipfs_and_store_in_referral_store and compare it with referral_maintenance.rs. Trace how uninitialized_app_data_hashes and referral storage are handled, then verify that the requests can be processed concurrently while preserving storage and error behavior.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- rust
- Domain
- backend, performance
- Issue type
- Refactor
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 42/100