lssa/indexer/core/src/lib.rs

321 lines
12 KiB
Rust
Raw Normal View History

2026-02-12 14:27:36 +02:00
use std::collections::VecDeque;
2026-01-27 09:46:31 +02:00
use anyhow::Result;
2026-02-11 16:24:46 +02:00
use bedrock_client::{BedrockClient, HeaderId};
2026-02-10 14:03:56 +02:00
use common::block::{Block, HashableBlockData};
2026-02-03 11:36:07 +02:00
// ToDo: Remove after testnet
2026-02-10 14:03:56 +02:00
use common::{HashType, PINATA_BASE58};
2026-01-21 14:50:29 +02:00
use log::info;
2026-01-27 08:13:53 +02:00
use logos_blockchain_core::mantle::{
2026-01-12 15:51:24 +02:00
Op, SignedMantleTx,
2026-02-17 10:46:51 +02:00
ops::channel::{ChannelId, inscribe::InscriptionOp},
2026-01-12 15:51:24 +02:00
};
2026-01-09 15:10:38 +02:00
2026-02-03 11:36:07 +02:00
use crate::{block_store::IndexerStore, config::IndexerConfig};
2026-01-12 15:51:24 +02:00
2026-02-03 11:36:07 +02:00
pub mod block_store;
2026-01-12 15:51:24 +02:00
pub mod config;
2026-01-13 15:11:51 +02:00
pub mod state;
2026-01-12 15:51:24 +02:00
2026-01-30 21:37:27 +03:00
#[derive(Clone)]
2026-01-09 15:10:38 +02:00
pub struct IndexerCore {
2026-02-03 11:36:07 +02:00
pub bedrock_client: BedrockClient,
pub config: IndexerConfig,
pub store: IndexerStore,
2026-01-09 15:10:38 +02:00
}
impl IndexerCore {
pub fn new(config: IndexerConfig) -> Result<Self> {
2026-02-10 14:03:56 +02:00
// ToDo: replace with correct startup
let hashable_data = HashableBlockData {
block_id: 1,
transactions: vec![],
prev_block_hash: HashType([0; 32]),
timestamp: 0,
};
2026-02-03 11:36:07 +02:00
2026-02-10 14:03:56 +02:00
let signing_key = nssa::PrivateKey::try_new(config.signing_key).unwrap();
let channel_genesis_msg_id = [0; 32];
let start_block = hashable_data.into_pending_block(&signing_key, channel_genesis_msg_id);
2026-02-03 11:36:07 +02:00
let initial_commitments: Vec<nssa_core::Commitment> = config
.initial_commitments
.iter()
.map(|init_comm_data| {
let npk = &init_comm_data.npk;
let mut acc = init_comm_data.account.clone();
acc.program_owner = nssa::program::Program::authenticated_transfer_program().id();
nssa_core::Commitment::new(npk, &acc)
})
.collect();
let init_accs: Vec<(nssa::AccountId, u128)> = config
.initial_accounts
.iter()
.map(|acc_data| (acc_data.account_id, acc_data.balance))
2026-02-03 11:36:07 +02:00
.collect();
let mut state = nssa::V02State::new_with_genesis_accounts(&init_accs, &initial_commitments);
// ToDo: Remove after testnet
state.add_pinata_program(PINATA_BASE58.parse().unwrap());
2026-02-13 13:59:06 +02:00
let home = config.home.join("rocksdb");
2026-02-03 11:36:07 +02:00
2026-01-12 15:51:24 +02:00
Ok(Self {
2026-01-22 14:44:48 +02:00
bedrock_client: BedrockClient::new(
config.bedrock_client_config.backoff,
2026-01-27 09:46:31 +02:00
config.bedrock_client_config.addr.clone(),
2026-02-10 15:54:57 +02:00
config.bedrock_client_config.auth.clone(),
2026-01-22 14:44:48 +02:00
)?,
2026-01-12 15:51:24 +02:00
config,
2026-02-03 11:36:07 +02:00
// ToDo: Implement restarts
store: IndexerStore::open_db_with_genesis(&home, Some((start_block, state)))?,
2026-01-12 15:51:24 +02:00
})
2026-01-09 15:10:38 +02:00
}
2026-01-12 15:51:24 +02:00
2026-01-31 01:39:59 +03:00
pub async fn subscribe_parse_block_stream(&self) -> impl futures::Stream<Item = Result<Block>> {
2026-01-30 21:37:27 +03:00
async_stream::stream! {
2026-02-12 14:27:36 +02:00
let last_l1_header = self.store.last_observed_l1_header()?;
let mut last_fin_header = match last_l1_header {
Some(last_l1_header) => {
2026-02-17 10:46:51 +02:00
info!("Last fin header found: {last_l1_header}");
2026-02-12 14:27:36 +02:00
last_l1_header
},
None => {
info!("Searching for the start of a channel");
let start_buff = self.search_for_channel_start().await?;
let last_l1_header = start_buff.back().ok_or(anyhow::anyhow!("Failure: Chain is empty"))?.header().id();
for l1_block in start_buff {
2026-02-17 10:46:51 +02:00
info!("Observed L1 block at slot {}", l1_block.header().slot().into_inner());
2026-01-30 21:37:27 +03:00
2026-02-12 14:27:36 +02:00
let curr_l1_header = l1_block.header().id();
2026-01-30 21:37:27 +03:00
2026-02-12 14:27:36 +02:00
let l2_blocks_parsed = parse_blocks(
l1_block.into_transactions().into_iter(),
&self.config.channel_id,
).collect::<Vec<_>>();
2026-01-30 21:37:27 +03:00
2026-02-12 14:27:36 +02:00
info!("Parsed {} L2 blocks", l2_blocks_parsed.len());
2026-01-30 21:37:27 +03:00
2026-02-12 14:27:36 +02:00
for l2_block in l2_blocks_parsed {
self.store.put_block(l2_block.clone(), curr_l1_header)?;
yield Ok(l2_block);
}
}
last_l1_header
},
};
2026-02-17 10:46:51 +02:00
info!("INITIAL_SEARCH_END");
2026-02-12 14:27:36 +02:00
loop {
2026-02-17 10:46:51 +02:00
let buff = self.rollback_to_last_known_finalized_l1_id(last_fin_header).await
.inspect_err(|err| log::error!("Failed to roll back to last finalized l1 id with err {err:#?}"))?;
2026-02-12 14:27:36 +02:00
2026-02-17 10:46:51 +02:00
last_fin_header = buff.back().ok_or(anyhow::anyhow!("Failure: Chain is empty"))
.inspect_err(|err| log::error!("Chain is empty {err:#?}"))?.header().id();
2026-02-12 14:27:36 +02:00
for l1_block in buff {
2026-02-17 10:46:51 +02:00
info!("Observed L1 block at slot {}", l1_block.header().slot().into_inner());
2026-02-12 14:27:36 +02:00
let curr_l1_header = l1_block.header().id();
2026-01-30 21:37:27 +03:00
2026-02-03 11:36:07 +02:00
let l2_blocks_parsed = parse_blocks(
l1_block.into_transactions().into_iter(),
&self.config.channel_id,
).collect::<Vec<_>>();
2026-01-31 01:50:30 +03:00
2026-02-03 11:36:07 +02:00
info!("Parsed {} L2 blocks", l2_blocks_parsed.len());
2026-01-30 21:37:27 +03:00
2026-02-03 11:36:07 +02:00
for l2_block in l2_blocks_parsed {
2026-02-12 14:27:36 +02:00
self.store.put_block(l2_block.clone(), curr_l1_header)?;
2026-01-15 15:44:48 +02:00
2026-02-03 11:36:07 +02:00
yield Ok(l2_block);
2026-01-16 16:15:21 +02:00
}
2026-01-12 15:51:24 +02:00
}
2026-02-03 11:36:07 +02:00
}
2026-01-16 16:15:21 +02:00
}
2026-01-12 15:51:24 +02:00
}
2026-02-11 16:24:46 +02:00
2026-02-17 10:46:51 +02:00
// async fn wait_last_finalized_block_header(&self) -> Result<HeaderId> {
// let mut stream_pinned = Box::pin(self.bedrock_client.get_lib_stream().await?);
// stream_pinned
// .next()
// .await
// .ok_or(anyhow::anyhow!("Stream failure"))
// .map(|info| info.header_id)
// }
async fn get_tip(&self) -> Result<HeaderId> {
Ok(self.bedrock_client.get_consensus_info().await?.tip)
}
async fn get_next_tip(&self, prev_tip: HeaderId) -> Result<HeaderId> {
loop {
let next_tip = self.get_tip().await?;
if next_tip != prev_tip {
break Ok(next_tip);
} else {
info!("Wait 10s to not spam the node");
tokio::time::sleep(std::time::Duration::from_secs(10)).await;
}
}
2026-02-11 16:24:46 +02:00
}
2026-02-16 17:54:54 +02:00
/// WARNING: depending on chain behaviour,
/// may take indefinite amount of time
2026-02-11 16:24:46 +02:00
pub async fn search_for_channel_start(
&self,
2026-02-12 14:27:36 +02:00
) -> Result<VecDeque<bedrock_client::Block<SignedMantleTx>>> {
2026-02-17 10:46:51 +02:00
// let mut curr_last_header = self.wait_last_finalized_block_header().await?;
let mut curr_last_header = self.get_tip().await?;
2026-02-16 17:54:54 +02:00
// Storing start for future use
let mut rollback_start = curr_last_header;
// ToDo: How to get root?
let mut rollback_limit = HeaderId::from([0; 32]);
2026-02-12 14:27:36 +02:00
// ToDo: Not scalable, initial buffer should be stored in DB to not run out of memory
// Don't want to complicate DB even more right now.
2026-02-16 17:54:54 +02:00
let mut block_buffer = VecDeque::new();
2026-02-11 16:24:46 +02:00
2026-02-16 17:54:54 +02:00
'outer: loop {
2026-02-17 10:46:51 +02:00
let mut cycle_header = curr_last_header;
2026-02-16 17:54:54 +02:00
2026-02-17 10:46:51 +02:00
loop {
let curr_last_block = if let Some(block) = self
2026-02-16 17:54:54 +02:00
.bedrock_client
2026-02-17 10:46:51 +02:00
.get_block_by_id(cycle_header)
2026-02-16 17:54:54 +02:00
.await?
2026-02-17 10:46:51 +02:00
{
block
} else {
break;
2026-02-16 17:54:54 +02:00
};
2026-02-17 10:46:51 +02:00
info!("INITIAL_SEARCH: Observed L1 block at slot {}", curr_last_block.header().slot().into_inner());
2026-02-16 17:54:54 +02:00
info!("INITIAL_SEARCH: This block header is {}", curr_last_block.header().id());
info!("INITIAL_SEARCH: This block parent is {}", curr_last_block.header().parent());
block_buffer.push_front(curr_last_block.clone());
if let Some(_) = curr_last_block.transactions().find_map(|tx| {
tx.mantle_tx.ops.iter().find_map(|op| match op {
Op::ChannelInscribe(InscriptionOp {
2026-02-17 10:46:51 +02:00
channel_id, inscription, ..
2026-02-16 17:54:54 +02:00
}) => {
2026-02-17 10:46:51 +02:00
if channel_id == &self.config.channel_id
2026-02-16 17:54:54 +02:00
{
2026-02-17 10:46:51 +02:00
let l2_block = borsh::from_slice::<Block>(&inscription).
inspect_err(|err| log::error!("INITIAL_SEARCH: failed to deserialize with err: {err:#?}")).ok();
match l2_block {
Some(block) => {
info!("!!!!!!!!!!!!!!!INITIAL_SEARCH: Observed L2 block at id {}", block.header.block_id);
if block.header.block_id == 1 {
Some(curr_last_block.header().id())
} else {
None
}
},
None => None,
}
2026-02-16 17:54:54 +02:00
} else {
None
}
2026-02-11 16:24:46 +02:00
}
2026-02-16 17:54:54 +02:00
_ => None,
})
}) {
info!("INITIAL_SEARCH: Found channel start");
break 'outer;
} else {
// Step back to parent
let parent = curr_last_block.header().parent();
if parent == rollback_limit {
break;
2026-02-11 16:24:46 +02:00
}
2026-02-16 17:54:54 +02:00
2026-02-17 10:46:51 +02:00
cycle_header = parent;
2026-02-16 17:54:54 +02:00
};
}
info!("INITIAL_SEARCH: Reached rollback limit, refetching last block");
block_buffer.clear();
rollback_limit = rollback_start;
2026-02-17 10:46:51 +02:00
curr_last_header = loop {
let next_tip = self.get_tip().await?;
if next_tip != curr_last_header {
break next_tip;
} else {
info!("Wait 10s to not spam the node");
tokio::time::sleep(std::time::Duration::from_secs(10)).await;
}
};
2026-02-16 17:54:54 +02:00
rollback_start = curr_last_header;
2026-02-12 14:27:36 +02:00
}
2026-02-16 17:54:54 +02:00
Ok(block_buffer)
2026-02-12 14:27:36 +02:00
}
pub async fn rollback_to_last_known_finalized_l1_id(
&self,
last_fin_header: HeaderId,
) -> Result<VecDeque<bedrock_client::Block<SignedMantleTx>>> {
2026-02-17 10:46:51 +02:00
let mut curr_last_header = self.get_next_tip(last_fin_header).await?;
2026-02-12 14:27:36 +02:00
// ToDo: Not scalable, buffer should be stored in DB to not run out of memory
// Don't want to complicate DB even more right now.
let mut block_buffer = VecDeque::new();
loop {
let Some(curr_last_block) = self
.bedrock_client
.get_block_by_id(curr_last_header)
.await?
else {
return Err(anyhow::anyhow!("Chain inconsistency"));
};
if curr_last_block.header().id() == last_fin_header {
break;
} else {
// Step back to parent
curr_last_header = curr_last_block.header().parent();
}
block_buffer.push_front(curr_last_block.clone());
}
2026-02-11 16:24:46 +02:00
2026-02-12 14:27:36 +02:00
Ok(block_buffer)
2026-02-11 16:24:46 +02:00
}
2026-01-12 15:51:24 +02:00
}
2026-01-21 14:50:29 +02:00
fn parse_blocks(
2026-01-12 15:51:24 +02:00
block_txs: impl Iterator<Item = SignedMantleTx>,
decoded_channel_id: &ChannelId,
2026-01-30 21:37:27 +03:00
) -> impl Iterator<Item = Block> {
2026-01-27 09:46:31 +02:00
block_txs.flat_map(|tx| {
tx.mantle_tx.ops.into_iter().filter_map(|op| match op {
Op::ChannelInscribe(InscriptionOp {
channel_id,
inscription,
..
}) if channel_id == *decoded_channel_id => {
2026-01-30 21:37:27 +03:00
borsh::from_slice::<Block>(&inscription).ok()
2026-01-27 09:46:31 +02:00
}
_ => None,
2026-01-12 15:51:24 +02:00
})
2026-01-27 09:46:31 +02:00
})
2026-02-04 14:57:38 +02:00
}