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 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507
//! ZKsync-specific type definitions.
use crate::network::unsigned_tx::eip712::PaymasterParams;
use alloy::primitives::{Address, Bytes, B256, U256, U64};
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
/// Response type for `zks_estimateFee`.
#[derive(Default, Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct Eip712Fee {
/// Amount of gas to be spent on the transaction.
#[serde(with = "alloy::serde::quantity")]
pub gas_limit: u64,
/// Maximum gas user agrees to spend on a single pubdata byte published to L1.
pub gas_per_pubdata_limit: U256,
/// EIP-1559 gas price.
#[serde(with = "alloy::serde::quantity")]
pub max_fee_per_gas: u128,
/// EIP-1559 tip.
#[serde(with = "alloy::serde::quantity")]
pub max_priority_fee_per_gas: u128,
}
/// Response type for `zks_getBridgeContracts`.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct BridgeAddresses {
/// The address of the default shared bridge on Layer 1.
pub l1_shared_default_bridge: Option<Address>,
/// The address of the default shared bridge on Layer 2.
pub l2_shared_default_bridge: Option<Address>,
/// The address of the default ERC-20 bridge on Layer 1.
pub l1_erc20_default_bridge: Option<Address>,
/// The address of the default ERC-20 bridge on Layer 2.
pub l2_erc20_default_bridge: Option<Address>,
/// The address of the Wrapped Ethereum (WETH) bridge on Layer 1.
pub l1_weth_bridge: Option<Address>,
/// The address of the Wrapped Ethereum (WETH) bridge on Layer 2.
pub l2_weth_bridge: Option<Address>,
/// The address of the legacy shared bridge on Layer 2.
pub l2_legacy_shared_bridge: Option<Address>,
}
/// Hashes of base system contracts.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct BaseSystemContractsHashes {
/// Hash of the bootloader system contract.
pub bootloader: B256,
/// Hash of the default account abstraction system contract.
pub default_aa: B256,
/// Hash of the evm emulator system contract.
pub evm_emulator: Option<B256>,
}
/// Current status of the batch.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub enum BlockStatus {
/// The block has been fully executed on L2.
Sealed,
/// The block has been verified on L1.
Verified,
}
/// Response type for `zks_getBlockDetails`.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct BlockDetails {
/// Number of the block.
pub number: u64,
/// Corresponding L1 batch number.
pub l1_batch_number: u64,
/// Address of the operator who committed the block.
pub operator_address: Address,
/// Version of the ZKsync protocol the block was committed under.
pub protocol_version: Option<String>,
/// Unix timestamp of when the first transaction in the block was processed (i.e., when the block was opened).
pub timestamp: u64,
/// Number of L1 transactions included in the block.
pub l1_tx_count: u64,
/// Number of L2 transactions included in the block.
pub l2_tx_count: u64,
/// Hash of the L2 block.
pub root_hash: Option<B256>,
/// Current status of the block: verified or sealed.
pub status: BlockStatus,
/// Transaction hash of the commit operation on L1 for the batch containing this L2 block.
pub commit_tx_hash: Option<B256>,
/// Timestamp when the batch containing this L2 block was committed on L1.
pub committed_at: Option<DateTime<Utc>>,
/// Transaction hash of the proof submission on L1 for the batch containing this L2 block.
pub prove_tx_hash: Option<B256>,
/// Timestamp when the proof was submitted on L1 for the batch containing this L2 block.
pub proven_at: Option<DateTime<Utc>>,
/// Transaction hash of the execution on L1 for the batch containing this L2 block.
pub execute_tx_hash: Option<B256>,
/// Timestamp when the execution was completed on L1 for the batch containing this L2 block.
pub executed_at: Option<DateTime<Utc>>,
/// L1 gas price at the time of the block's execution.
pub l1_gas_price: U256,
/// Fair gas price on L2 at the time of the block's execution.
pub l2_fair_gas_price: U256,
/// Cost of publishing one byte (in wei).
pub fair_pubdata_price: Option<U256>,
/// Hashes for the base system contracts used for block execution.
pub base_system_contracts_hashes: BaseSystemContractsHashes,
}
/// Current status of the transaction.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub enum TransactionStatus {
/// The transaction is not executed yet.
Pending,
/// The transaction is included in the block.
Included,
/// The transaction is verified on L1.
Verified,
/// The transaction execution failed.
Failed,
}
/// Response type for `zks_getTransactionDetails`.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct TransactionDetails {
/// Indicates whether the transaction originated on Layer 1.
pub is_l1_originated: bool,
/// Current status of the transaction: pending, included, verified or failed.
pub status: TransactionStatus,
/// Transaction fee.
pub fee: U256,
/// Gas amount per unit of public data for this transaction.
pub gas_per_pubdata: U256,
/// Address of the transaction initiator.
pub initiator_address: Address,
/// Timestamp when the transaction was received.
pub received_at: DateTime<Utc>,
/// Transaction hash of the commit operation.
pub eth_commit_tx_hash: Option<B256>,
/// Transaction hash of the proof submission.
pub eth_prove_tx_hash: Option<B256>,
/// Transaction hash of the execution.
pub eth_execute_tx_hash: Option<B256>,
}
/// Response type for `zks_getL1BatchDetails`.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct L1BatchDetails {
/// L1 batch number.
pub number: u64,
/// Unix timestamp when the batch was processed.
pub timestamp: u64,
/// Number of L1 transactions included in the batch.
pub l1_tx_count: u64,
/// Number of L2 transactions associated with this batch.
pub l2_tx_count: u64,
/// Root hash of the state after processing the batch.
pub root_hash: Option<B256>,
/// Current status of the batch: sealed or verified.
pub status: BlockStatus,
/// L1 transaction hash for the commit operation.
pub commit_tx_hash: Option<B256>,
/// Timestamp when the batch was committed on L1.
pub committed_at: Option<DateTime<Utc>>,
/// L1 transaction hash for the proof submission.
pub prove_tx_hash: Option<B256>,
/// Timestamp when the proof was submitted.
pub proven_at: Option<DateTime<Utc>>,
/// L1 transaction hash for the execution.
pub execute_tx_hash: Option<B256>,
/// Timestamp when the execution was completed.
pub executed_at: Option<DateTime<Utc>>,
/// Gas price on L1 at the time of batch processing.
pub l1_gas_price: U256,
/// Fair gas price on L2 at the time of batch processing.
pub l2_fair_gas_price: U256,
/// Cost of publishing one byte (in wei).
pub fair_pubdata_price: Option<U256>,
/// Hashes of the base system contracts involved in the batch.
pub base_system_contracts_hashes: BaseSystemContractsHashes,
}
/// Static fee model parameters for the V2 fee model.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct FeeModelConfigV2 {
/// Minimal gas price on L2.
pub minimal_l2_gas_price: U256,
/// Compute overhead part in fee calculation.
pub compute_overhead_part: f64,
/// Public data overhead part in fee calculation.
pub pubdata_overhead_part: f64,
/// Overhead in L1 gas for a batch of transactions.
pub batch_overhead_l1_gas: U256,
/// Maximum gas allowed per batch.
pub max_gas_per_batch: U256,
/// Maximum amount of public data allowed per batch.
pub max_pubdata_per_batch: U256,
}
/// Conversion ratio between BaseToken and ETH.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct BaseTokenConversionRatio {
/// Numerator of the conversion ratio.
pub numerator: u64,
/// Denominator of the conversion ratio.
pub denominator: u64,
}
/// Dynamic fee model parameters for the V2 fee model.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct FeeParamsV2 {
/// Static fee model parameters.
pub config: FeeModelConfigV2,
/// L1 gas price.
pub l1_gas_price: U256,
/// Price of storing public data on L1.
pub l1_pubdata_price: U256,
/// BaseToken<->ETH conversion ratio.
pub conversion_ratio: BaseTokenConversionRatio,
}
/// Static fee model parameters for the V1 fee model (no longer in active use).
#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq)]
pub struct FeeModelConfigV1 {
/// The minimal acceptable L2 gas price, i.e. the price that should include the cost of computation/proving as well
/// as potentially premium for congestion.
/// Unlike the `V2`, this price will be directly used as the `fair_l2_gas_price` in the bootloader.
pub minimal_l2_gas_price: u64,
}
/// Dynamic fee model parameters for the V1 fee model (no longer in active use).
#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq)]
pub struct FeeParamsV1 {
/// Static parameters.
pub config: FeeModelConfigV1,
/// L1 gas price.
pub l1_gas_price: u64,
}
/// Response type for `zks_getFeeParams`.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[allow(clippy::large_enum_variant)]
pub enum FeeParams {
/// V1 fee model parameters (no longer in active use).
V1(FeeParamsV1),
/// V2 fee model parameters.
V2(FeeParamsV2),
}
/// Configuration of the L1 verifier contract.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct L1VerifierConfig {
/// Verification key hash for the topmost recursion level.
pub recursion_scheduler_level_vk_hash: B256,
}
/// Response type for `zks_getProtocolVersion`.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct ProtocolVersion {
/// Minor version of the protocol (corresponds to the used VKs).
#[serde(rename = "minorVersion")]
pub minor_version: Option<u16>,
/// Unix timestamp of the version's activation.
pub timestamp: u64,
/// Hashes of various verification keys used in the protocol.
pub verification_keys_hashes: Option<L1VerifierConfig>,
/// Hashes of the base system contracts.
pub base_system_contracts: Option<BaseSystemContractsHashes>,
/// Bootloader code hash.
#[serde(rename = "bootloaderCodeHash")]
pub bootloader_code_hash: Option<B256>,
/// Default account code hash.
#[serde(rename = "defaultAccountCodeHash")]
pub default_account_code_hash: Option<B256>,
/// EVM emulator code hash.
#[serde(rename = "evmSimulatorCodeHash")]
pub evm_emulator_code_hash: Option<B256>,
/// Hash of the transaction used for the system upgrade
#[serde(rename = "l2SystemUpgradeTxHash")]
pub l2_system_upgrade_tx_hash: Option<B256>,
}
/// Merkle proof for a storage value.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
pub struct StorageProof {
/// Storage key for which the proof is provided.
pub key: B256,
/// Hashes that constitute the Merkle path from the leaf node (representing the storage key-value pair) to the root of the Merkle tree.
/// The path is ordered from the root to the leaf.
/// The root hash itself is not included in this array because it is published on L1 as part of the L1 batch commit data.
pub proof: Vec<B256>,
/// Value stored in the specified storage key at the time of the specified l1BatchNumber.
pub value: B256,
/// A 1-based index representing the position of the tree entry within the Merkle tree.
/// This index is used to help reconstruct the Merkle path during verification.
pub index: u64,
}
/// Response type for `zks_getProof`.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct Proof {
/// Account address associated with the storage proofs.
pub address: Address,
/// Storage proof for the requested keys.
pub storage_proof: Vec<StorageProof>,
}
/// Log of a storage access.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct StorageLog {
pub address: Address,
pub key: U256,
pub written_value: U256,
}
/// A log produced by a transaction.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Log {
/// Address from which this log originated.
pub address: Address,
/// An array of 0 to 4 indexed log arguments.
pub topics: Vec<B256>,
/// Contains non-indexed arguments of the log.
pub data: Bytes,
/// Hash of the block where this log was in.
pub block_hash: Option<B256>,
/// Block number where this log was in.
pub block_number: Option<U64>,
/// L1 batch number where this log was in.
pub l1_batch_number: Option<U64>,
/// Hash of the transactions from which this log was created.
pub transaction_hash: Option<B256>,
/// Transaction index position from which the log created.
pub transaction_index: Option<U64>,
/// Log index position in the block.
pub log_index: Option<U64>,
/// Log index position in the transaction.
pub transaction_log_index: Option<U64>,
/// Log type.
pub log_type: Option<String>,
/// True when the log was removed, false if it's a valid log.
pub removed: Option<bool>,
/// Unix timestamp of when the first transaction in the block was processed (i.e., when the block was opened).
pub block_timestamp: Option<U64>,
}
/// Type for L2 to L1 logs that are returned as a part of `eth_getTransactionReceipt` response.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct L2ToL1Log {
/// Hash of the block where this log was in.
pub block_hash: Option<B256>,
/// Block number where this log was in.
pub block_number: U64,
/// L1 batch number where this log was in.
pub l1_batch_number: Option<U64>,
/// Log index position in the block.
pub log_index: U256,
/// Transaction index position from which the log created.
pub transaction_index: U64,
/// Hash of the transactions from which this log was created.
pub transaction_hash: B256,
/// Log index position in the transaction.
pub transaction_log_index: U256,
/// The number of the transaction in the batch where the log occurred.
pub tx_index_in_l1_batch: Option<U64>,
/// The id of the shard the opcode was called (it is currently always 0).
pub shard_id: U64,
/// A boolean flag that indicates whether the log is a service log. It is not used right now.
pub is_service: bool,
/// The value of this in the frame where the L2 to L1 log was emitted.
pub sender: Address,
/// Key and value are two 32-byte values that can be used to carry some data with the log.
pub key: B256,
/// Key and value are two 32-byte values that can be used to carry some data with the log.
pub value: B256,
}
/// Response type for `zks_getL2ToL1LogProof` and `zks_getL2ToL1MsgProof`.
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct L2ToL1LogProof {
/// The Merkle proof for the message.
pub proof: Vec<B256>,
/// The position of the leaf in the Merkle tree of L2 to L1 messages for the block.
pub id: u32,
/// The root hash representing the Merkle tree root at the time the log was generated.
pub root: B256,
}
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct Execute {
pub contract_address: Option<Address>,
pub calldata: Bytes,
pub value: U256,
/// Factory dependencies: list of contract bytecodes associated with the deploy transaction.
pub factory_deps: Vec<Bytes>,
}
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
pub struct InputData {
pub hash: B256,
pub data: Bytes,
}
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
#[repr(u8)]
pub enum OpProcessingType {
Common = 0,
OnlyRollup = 1,
}
#[derive(Default, Debug, Serialize, Deserialize, Clone, PartialEq)]
#[repr(u8)]
pub enum PriorityQueueType {
#[default]
Deque = 0,
HeapBuffer = 1,
Heap = 2,
}
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
pub struct L1TxCommonData {
/// Sender of the transaction.
pub sender: Address,
/// Unique ID of the priority operation.
pub serial_id: u64,
/// Additional payment to the operator as an incentive to perform the operation. The contract uses a value of 192 bits.
pub layer_2_tip_fee: U256,
/// The total cost the sender paid for the transaction.
pub full_fee: U256,
/// The maximal fee per gas to be used for L1->L2 transaction
pub max_fee_per_gas: U256,
/// The maximum number of gas that a transaction can spend at a price of gas equals 1.
pub gas_limit: U256,
/// The maximum number of gas per 1 byte of pubdata.
pub gas_per_pubdata_limit: U256,
/// Indicator that the operation can interact with Rollup and Porter trees, or only with Rollup.
pub op_processing_type: OpProcessingType,
/// Priority operations queue type.
pub priority_queue_type: PriorityQueueType,
/// Tx hash of the transaction in the ZKsync network. Calculated as the encoded transaction data hash.
pub canonical_tx_hash: B256,
/// The amount of ETH that should be minted with this transaction
pub to_mint: U256,
/// The recipient of the refund of the transaction
pub refund_recipient: Address,
}
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct L2TxCommonData {
pub nonce: u32,
pub fee: Eip712Fee,
pub initiator_address: Address,
pub signature: Bytes,
pub transaction_type: String,
pub input: Option<InputData>,
pub paymaster_params: PaymasterParams,
}
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
pub struct ProtocolUpgradeTxCommonData {
/// Sender of the transaction.
pub sender: Address,
/// ID of the upgrade.
pub upgrade_id: String,
/// The maximal fee per gas to be used for L1->L2 transaction
pub max_fee_per_gas: U256,
/// The maximum number of gas that a transaction can spend at a price of gas equals 1.
pub gas_limit: U256,
/// The maximum number of gas per 1 byte of pubdata.
pub gas_per_pubdata_limit: U256,
/// Block in which Ethereum transaction was included.
pub eth_block: u64,
/// Tx hash of the transaction in the ZKsync network. Calculated as the encoded transaction data hash.
pub canonical_tx_hash: B256,
/// The amount of ETH that should be minted with this transaction
pub to_mint: U256,
/// The recipient of the refund of the transaction
pub refund_recipient: Address,
}
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
pub enum ExecuteTransactionCommon {
L1(L1TxCommonData),
L2(L2TxCommonData),
ProtocolUpgrade(ProtocolUpgradeTxCommonData),
}
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
pub struct Transaction {
/// Common information about the transaction.
pub common_data: ExecuteTransactionCommon,
/// Details regarding the execution of the transaction.
pub execute: Execute,
/// Timestamp when the transaction was received, in milliseconds.
pub received_timestamp_ms: u64,
/// Raw bytes of the transaction.
pub raw_bytes: Option<Bytes>,
}