anvil_zksync_l1_sidecar/
commitment_generator.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
use crate::zkstack_config::ZkstackConfig;
use anvil_zksync_core::node::blockchain::ReadBlockchain;
use std::collections::HashMap;
use std::sync::{Arc, RwLock};
use zksync_contracts::BaseSystemContractsHashes;
use zksync_types::blob::num_blobs_required;
use zksync_types::block::{L1BatchHeader, L1BatchTreeData};
use zksync_types::commitment::{
    AuxCommitments, CommitmentCommonInput, CommitmentInput, L1BatchCommitment, L1BatchMetadata,
    L1BatchWithMetadata,
};
use zksync_types::writes::StateDiffRecord;
use zksync_types::L1BatchNumber;
use zksync_types::{Address, H256};

/// Node component that can generate batch's metadata (with commitment) on demand.
#[derive(Debug, Clone)]
pub struct CommitmentGenerator {
    /// System contracts hashes expected by L1. Might be different from the actual contract hashes used by anvil-zksync.
    base_system_contracts_hashes: BaseSystemContractsHashes,
    /// Fee address expected by L1.
    fee_address: Address,
    blockchain: Box<dyn ReadBlockchain>,
    /// Batches with already known metadata.
    batches: Arc<RwLock<HashMap<L1BatchNumber, L1BatchWithMetadata>>>,
}

impl CommitmentGenerator {
    /// Initializes a new [`CommitmentGenerator`] matching L1 from the provided zkstack config.
    ///
    /// Additionally, returns genesis' metadata.
    pub fn new(zkstack_config: &ZkstackConfig, blockchain: Box<dyn ReadBlockchain>) -> Self {
        // L1 expects a specific hash for bootloader/AA contracts which might be different from what
        // anvil-zksync is actually using (e.g. it is running with a user-provided bootloader). Thus,
        // we use hash from zkstack genesis config, i.e. what L1 was initialized with.
        let base_system_contracts_hashes = BaseSystemContractsHashes {
            bootloader: zkstack_config.genesis.bootloader_hash,
            default_aa: zkstack_config.genesis.default_aa_hash,
            evm_emulator: zkstack_config.genesis.evm_emulator_hash,
        };

        // Run realistic genesis commitment computation that should match value from zkstack config
        let mut genesis_batch_header = L1BatchHeader::new(
            L1BatchNumber(0),
            0,
            base_system_contracts_hashes,
            zkstack_config.genesis.genesis_protocol_version,
        );
        genesis_batch_header.fee_address = zkstack_config.genesis.fee_account;
        let commitment_input = CommitmentInput::for_genesis_batch(
            zkstack_config.genesis.genesis_root,
            zkstack_config.genesis.genesis_rollup_leaf_index,
            base_system_contracts_hashes,
            zkstack_config.genesis.genesis_protocol_version,
        );
        let genesis_metadata =
            Self::generate_metadata_inner(genesis_batch_header, commitment_input);
        assert_eq!(
            zkstack_config.genesis.genesis_batch_commitment, genesis_metadata.metadata.commitment,
            "Computed genesis batch commitment does not match zkstack config"
        );

        Self {
            base_system_contracts_hashes,
            fee_address: zkstack_config.genesis.fee_account,
            blockchain,
            batches: Arc::new(RwLock::new(HashMap::from_iter([(
                L1BatchNumber(0),
                genesis_metadata,
            )]))),
        }
    }

    /// Retrieve batch's existing metadata or generate it if there is none. Returns `None` if batch
    /// with this number does not exist.
    pub async fn get_or_generate_metadata(
        &self,
        batch_number: L1BatchNumber,
    ) -> Option<L1BatchWithMetadata> {
        if let Some(metadata) = self.batches.read().unwrap().get(&batch_number) {
            return Some(metadata.clone());
        }

        // Fetch batch header from storage and patch its fee_address/base_system_contract_hashes as
        // those might be different from what L1 expects (e.g. impersonated execution, custom
        // user-supplied contracts etc).
        let mut header = self.blockchain.get_batch_header(batch_number).await?;
        header.fee_address = self.fee_address;
        header.base_system_contracts_hashes = self.base_system_contracts_hashes;

        let state_diffs = self.blockchain.get_batch_state_diffs(batch_number).await?;
        let aggregation_root = self
            .blockchain
            .get_batch_aggregation_root(batch_number)
            .await?;

        // anvil-zksync does not store batches right now so we just generate dummy commitment input.
        // Root hash is random purely so that different batches have different commitments.
        let tree_data = L1BatchTreeData {
            hash: H256::random(),
            rollup_last_leaf_index: 42,
        };
        let metadata = self.generate_metadata(header, state_diffs, aggregation_root, tree_data);
        self.batches
            .write()
            .unwrap()
            .insert(batch_number, metadata.clone());
        Some(metadata)
    }

    fn generate_metadata(
        &self,
        header: L1BatchHeader,
        state_diffs: Vec<StateDiffRecord>,
        aggregation_root: H256,
        tree_data: L1BatchTreeData,
    ) -> L1BatchWithMetadata {
        let protocol_version = header
            .protocol_version
            .expect("batch header is missing protocol version");
        let common = CommitmentCommonInput {
            l2_to_l1_logs: header.l2_to_l1_logs.clone(),
            rollup_last_leaf_index: tree_data.rollup_last_leaf_index,
            rollup_root_hash: tree_data.hash,
            bootloader_code_hash: self.base_system_contracts_hashes.bootloader,
            default_aa_code_hash: self.base_system_contracts_hashes.default_aa,
            evm_emulator_code_hash: self.base_system_contracts_hashes.evm_emulator,
            protocol_version,
        };
        let commitment_input = CommitmentInput::PostBoojum {
            common,
            system_logs: header.system_logs.clone(),
            state_diffs,
            aux_commitments: AuxCommitments {
                events_queue_commitment: H256::zero(),
                bootloader_initial_content_commitment: H256::zero(),
            },
            blob_hashes: {
                let num_blobs = num_blobs_required(&protocol_version);
                vec![Default::default(); num_blobs]
            },
            aggregation_root,
        };

        Self::generate_metadata_inner(header, commitment_input)
    }

    fn generate_metadata_inner(
        header: L1BatchHeader,
        commitment_input: CommitmentInput,
    ) -> L1BatchWithMetadata {
        let root_hash = commitment_input.common().rollup_root_hash;
        let rollup_last_leaf_index = commitment_input.common().rollup_last_leaf_index;

        let commitment = L1BatchCommitment::new(commitment_input);
        let mut commitment_artifacts = commitment.artifacts();
        if header.number == L1BatchNumber(0) {
            // `l2_l1_merkle_root` for genesis batch is set to 0 on L1 contract, same must be here.
            commitment_artifacts.l2_l1_merkle_root = H256::zero();
        }
        tracing::debug!(
            batch = header.number.0,
            commitment_hash = ?commitment_artifacts.commitment_hash.commitment,
            "generated a new batch commitment",
        );
        // Unlike above, this is a realistic metadata calculation based on code from zksync-era.
        let batch_metadata = L1BatchMetadata {
            root_hash,
            rollup_last_leaf_index,
            initial_writes_compressed: commitment_artifacts.compressed_initial_writes,
            repeated_writes_compressed: commitment_artifacts.compressed_repeated_writes,
            commitment: commitment_artifacts.commitment_hash.commitment,
            l2_l1_merkle_root: commitment_artifacts.l2_l1_merkle_root,
            block_meta_params: commitment.meta_parameters(),
            aux_data_hash: commitment_artifacts.commitment_hash.aux_output,
            meta_parameters_hash: commitment_artifacts.commitment_hash.meta_parameters,
            pass_through_data_hash: commitment_artifacts.commitment_hash.pass_through_data,
            events_queue_commitment: commitment_artifacts
                .aux_commitments
                .map(|a| a.events_queue_commitment),
            bootloader_initial_content_commitment: commitment_artifacts
                .aux_commitments
                .map(|a| a.bootloader_initial_content_commitment),
            state_diffs_compressed: commitment_artifacts
                .compressed_state_diffs
                .unwrap_or_default(),
            state_diff_hash: Some(commitment_artifacts.state_diff_hash),
            local_root: Some(commitment_artifacts.local_root),
            aggregation_root: Some(commitment_artifacts.aggregation_root),
            // anvil-zksync can only be run in rollup mode which does not have DA inclusion
            da_inclusion_data: None,
        };

        // Pretend there were no used factory deps and no published bytecode.
        L1BatchWithMetadata::new(header, batch_metadata, HashMap::new(), &[])
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use anvil_zksync_core::filters::LogFilter;
    use async_trait::async_trait;
    use zksync_types::api::{
        Block, BlockDetails, BlockId, DebugCall, Log, Transaction, TransactionDetails,
        TransactionReceipt, TransactionVariant,
    };
    use zksync_types::{L2BlockNumber, ProtocolVersionId};

    // TODO: Consider moving to a separate testing crate
    #[derive(Clone, Debug)]
    struct MockBlockchain(HashMap<L1BatchNumber, L1BatchHeader>);

    impl MockBlockchain {
        pub fn new(batches: impl IntoIterator<Item = L1BatchHeader>) -> Self {
            let genesis = L1BatchHeader::new(
                L1BatchNumber(0),
                0,
                BaseSystemContractsHashes::default(),
                ProtocolVersionId::latest(),
            );
            Self(HashMap::from_iter(
                batches
                    .into_iter()
                    .map(|h| (h.number, h))
                    .chain([(L1BatchNumber(0), genesis)]),
            ))
        }
    }

    #[async_trait]
    impl ReadBlockchain for MockBlockchain {
        fn dyn_cloned(&self) -> Box<dyn ReadBlockchain> {
            unimplemented!()
        }

        fn protocol_version(&self) -> ProtocolVersionId {
            unimplemented!()
        }

        async fn current_batch(&self) -> L1BatchNumber {
            unimplemented!()
        }

        async fn current_block_number(&self) -> L2BlockNumber {
            unimplemented!()
        }

        async fn current_block_hash(&self) -> H256 {
            unimplemented!()
        }

        async fn get_block_by_hash(&self, _hash: &H256) -> Option<Block<TransactionVariant>> {
            unimplemented!()
        }

        async fn get_block_by_number(
            &self,
            _number: L2BlockNumber,
        ) -> Option<Block<TransactionVariant>> {
            unimplemented!()
        }

        async fn get_block_by_id(&self, _block_id: BlockId) -> Option<Block<TransactionVariant>> {
            unimplemented!()
        }

        async fn get_block_hash_by_number(&self, _number: L2BlockNumber) -> Option<H256> {
            unimplemented!()
        }

        async fn get_block_hash_by_id(&self, _block_id: BlockId) -> Option<H256> {
            unimplemented!()
        }

        async fn get_block_number_by_hash(&self, _hash: &H256) -> Option<L2BlockNumber> {
            unimplemented!()
        }

        async fn get_block_number_by_id(&self, _block_id: BlockId) -> Option<L2BlockNumber> {
            unimplemented!()
        }

        async fn get_block_tx_hashes_by_number(&self, _number: L2BlockNumber) -> Option<Vec<H256>> {
            unimplemented!()
        }

        async fn get_block_tx_hashes_by_id(&self, _block_id: BlockId) -> Option<Vec<H256>> {
            unimplemented!()
        }

        async fn get_block_tx_by_id(
            &self,
            _block_id: BlockId,
            _index: usize,
        ) -> Option<Transaction> {
            unimplemented!()
        }

        async fn get_block_tx_count_by_id(&self, _block_id: BlockId) -> Option<usize> {
            unimplemented!()
        }

        async fn get_block_details_by_number(
            &self,
            _number: L2BlockNumber,
            _l2_fair_gas_price: u64,
            _fair_pubdata_price: Option<u64>,
            _base_system_contracts_hashes: BaseSystemContractsHashes,
        ) -> Option<BlockDetails> {
            unimplemented!()
        }

        async fn get_tx_receipt(&self, _tx_hash: &H256) -> Option<TransactionReceipt> {
            unimplemented!()
        }

        async fn get_tx_debug_info(&self, _tx_hash: &H256, _only_top: bool) -> Option<DebugCall> {
            unimplemented!()
        }

        async fn get_tx_api(&self, _tx_hash: &H256) -> anyhow::Result<Option<Transaction>> {
            unimplemented!()
        }

        async fn get_detailed_tx(
            &self,
            _tx: Transaction,
        ) -> Option<anvil_zksync_types::api::DetailedTransaction> {
            unimplemented!()
        }

        async fn get_tx_details(&self, _tx_hash: &H256) -> Option<TransactionDetails> {
            unimplemented!()
        }

        async fn get_zksync_tx(&self, _tx_hash: &H256) -> Option<zksync_types::Transaction> {
            unimplemented!()
        }

        async fn get_filter_logs(&self, _log_filter: &LogFilter) -> Vec<Log> {
            unimplemented!()
        }

        async fn get_batch_header(&self, batch_number: L1BatchNumber) -> Option<L1BatchHeader> {
            self.0.get(&batch_number).cloned()
        }

        async fn get_batch_state_diffs(
            &self,
            batch_number: L1BatchNumber,
        ) -> Option<Vec<StateDiffRecord>> {
            if self.0.contains_key(&batch_number) {
                Some(vec![])
            } else {
                None
            }
        }

        async fn get_batch_aggregation_root(&self, batch_number: L1BatchNumber) -> Option<H256> {
            if self.0.contains_key(&batch_number) {
                Some(H256::zero())
            } else {
                None
            }
        }
    }

    #[tokio::test]
    async fn generates_proper_genesis() {
        let config = ZkstackConfig::builtin(ProtocolVersionId::latest());
        let blockchain = MockBlockchain::new([]);
        let commitment_generator = CommitmentGenerator::new(&config, Box::new(blockchain));
        let genesis_metadata = commitment_generator
            .get_or_generate_metadata(L1BatchNumber(0))
            .await
            .unwrap();
        // Basic invariants expected by the protocol
        assert_eq!(genesis_metadata.header.number, L1BatchNumber(0));
        assert_eq!(genesis_metadata.header.timestamp, 0);
        assert_eq!(genesis_metadata.header.l1_tx_count, 0);
        assert_eq!(genesis_metadata.header.l2_tx_count, 0);

        // Computed genesis should match provided config
        assert_eq!(
            genesis_metadata.metadata.root_hash,
            config.genesis.genesis_root
        );
        assert_eq!(
            genesis_metadata.metadata.rollup_last_leaf_index,
            config.genesis.genesis_rollup_leaf_index
        );
        assert_eq!(
            genesis_metadata.metadata.commitment,
            config.genesis.genesis_batch_commitment
        );
    }

    #[tokio::test]
    async fn returns_none_for_unknown_batch() {
        let config = ZkstackConfig::builtin(ProtocolVersionId::latest());
        let blockchain = MockBlockchain::new([]);
        let commitment_generator = CommitmentGenerator::new(&config, Box::new(blockchain));
        let metadata = commitment_generator
            .get_or_generate_metadata(L1BatchNumber(42))
            .await;

        assert_eq!(metadata, None);
    }

    #[tokio::test]
    async fn generates_valid_commitment_for_random_batch() {
        let config = ZkstackConfig::builtin(ProtocolVersionId::latest());
        let batch_42_header = L1BatchHeader::new(
            L1BatchNumber(42),
            1042,
            BaseSystemContractsHashes::default(),
            ProtocolVersionId::latest(),
        );
        let blockchain = MockBlockchain::new([batch_42_header.clone()]);
        let commitment_generator = CommitmentGenerator::new(&config, Box::new(blockchain));
        let metadata = commitment_generator
            .get_or_generate_metadata(L1BatchNumber(42))
            .await
            .unwrap();

        // Really this is all we can check without making assumptions about the implementation
        assert_eq!(metadata.header.number, batch_42_header.number);
        assert_eq!(metadata.header.timestamp, batch_42_header.timestamp);
    }
}