Skip to content

Commit

Permalink
Add k256 seq pub key to rollup pub keys config
Browse files Browse the repository at this point in the history
  • Loading branch information
ercecan committed Feb 6, 2025
1 parent 3383e0e commit e22b1e7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/citrea_config/rollup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ pub struct RollupPublicKeys {
/// Soft confirmation signing public key of the Sequencer
#[serde(with = "hex::serde")]
pub sequencer_public_key: Vec<u8>,
/// Soft confirmation signing public key of the Sequencer
#[serde(with = "hex::serde")]
pub sequencer_k256_public_key: Vec<u8>,
/// DA Signing Public Key of the Sequencer
/// serialized as hex
#[serde(with = "hex::serde")]
Expand Down Expand Up @@ -163,6 +166,10 @@ impl Default for RollupConfig {
32, 64, 64, 227, 100, 193, 15, 43, 236, 156, 31, 229, 0, 161, 205, 76, 36, 124,
137, 214, 80, 160, 30, 215, 232, 44, 171, 168, 103, 135, 124, 33,
],
sequencer_k256_public_key: vec![
3, 99, 96, 232, 86, 49, 12, 229, 210, 148, 232, 190, 51, 252, 128, 112, 119,
220, 86, 172, 128, 217, 93, 156, 212, 221, 189, 33, 50, 94, 255, 115, 247,
],
// private key E9873D79C6D87DC0FB6A5778633389F4453213303DA61F20BD67FC233AA33262
// Private Key (WIF): 5Kb8kLf9zgWQnogidDA76MzPL6TsZZY36hWXMssSzNydYXYB9KF
sequencer_da_pub_key: vec![
Expand Down

0 comments on commit e22b1e7

Please sign in to comment.