-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: L1 providers #42
Conversation
block_timestamp: ActiveValue::Set( | ||
batch_input.block_timestamp.try_into().expect("block number should fit in i64"), | ||
), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
timestamp of the L1 block is required in order to fetch the blobs for the block.
32549df
to
eeb7a63
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, left some minor comments inline.
@@ -33,6 +34,9 @@ impl From<BatchCommitData> for ActiveModel { | |||
block_number: ActiveValue::Set( | |||
batch_commit.block_number.try_into().expect("block number should fit in i64"), | |||
), | |||
block_timestamp: ActiveValue::Set( | |||
batch_commit.block_timestamp.try_into().expect("block number should fit in i64"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
batch_commit.block_timestamp.try_into().expect("block number should fit in i64"), | |
batch_commit.block_timestamp.try_into().expect("block timestamp should fit in i64"), |
crates/providers/src/l1/mod.rs
Outdated
} | ||
|
||
#[async_trait::async_trait] | ||
impl<P: L1MessageProvider + Sync> L1BlobProvider for OnlineL1Provider<P> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need the L1MessageProvider
trait bound on P
for this impl?
.await | ||
.map_err(Into::into)? | ||
.ok_or(DerivationPipelineError::MissingL1Message)?; | ||
let mut bytes = Vec::new(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let mut bytes = Vec::new(); | |
let mut bytes = Vec::with_capacity(l1_message.eip2718_encoded_length()); |
Introduces the providers crate, centralizing the provider traits and their implementations on the crate. Also provides the
OnlineL1Provider
and theDatabaseL1MessagesProvider
implementations.