We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e35d1c7 commit cba3383Copy full SHA for cba3383
crates/journal/src/lib.rs
@@ -27,8 +27,13 @@ pub use set::JournalSet;
27
mod versions;
28
pub use versions::Journal;
29
30
+use alloy::primitives::{b256, B256};
31
use futures_util::Stream;
32
33
+/// The genesis journal hash for the signet chain.
34
+pub const GENESIS_JOURNAL_HASH: B256 =
35
+ b256!("0xdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef");
36
+
37
/// Any [`Stream`] that produces [`Journal`]s.
38
pub trait JournalStream<'a>: Stream<Item = Journal<'a>> {}
39
0 commit comments