Skip to content

Commit

Permalink
feat(avail-da): add temporary blob limit
Browse files Browse the repository at this point in the history
  • Loading branch information
0x5ea000000 committed Jul 9, 2024
1 parent a6c2317 commit bd2c0af
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions crates/da-clients/avail/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,13 @@ impl DaClient for AvailDaClient {
}

async fn max_blob_per_txn(&self) -> u64 {
todo!()
// TODO: Avail is not limited by the number of blobs per transaction.
6
}

async fn max_bytes_per_blob(&self) -> u64 {
todo!()
// TODO: Avail is not limited max bytes per blob. I got this number from Zksync hyperchain.
512 * 1024
}
}

Expand Down

0 comments on commit bd2c0af

Please sign in to comment.