-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathzkSyncEraMainModule.php
More file actions
31 lines (27 loc) · 1.12 KB
/
zkSyncEraMainModule.php
File metadata and controls
31 lines (27 loc) · 1.12 KB
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
<?php declare(strict_types = 1);
/* Idea (c) 2023 Nikita Zhavoronkov, nikzh@nikzh.com
* Copyright (c) 2023-2024 3xpl developers, 3@3xpl.com, see CONTRIBUTORS.md
* Distributed under the MIT software license, see LICENSE.md */
/* This is the main zkSync module. It requires a geth node to run. */
final class zkSyncEraMainModule extends EVMMainModule implements Module, BalanceSpecial, TransactionSpecials, AddressSpecials, BroadcastTransactionSpecial
{
function initialize()
{
// CoreModule
$this->blockchain = 'zksync-era';
$this->module = 'zksync-era-main';
$this->is_main = true;
$this->first_block_date = '2023-02-15';
$this->first_block_id = 0;
$this->currency = 'ethereum';
$this->currency_details = ['name' => 'Ethereum', 'symbol' => 'ETH', 'decimals' => 18, 'description' => null];
$this->mempool_implemented = false;
// EVMMainModule
$this->evm_implementation = EVMImplementation::geth;
$this->extra_features = [];
$this->reward_function = function($block_id)
{
return '0';
};
}
}