-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathLineaMainModule.php
More file actions
31 lines (27 loc) · 1.14 KB
/
LineaMainModule.php
File metadata and controls
31 lines (27 loc) · 1.14 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 Linea module. It requires a geth node to run. */
final class LineaMainModule extends EVMMainModule implements Module, BalanceSpecial, TransactionSpecials, AddressSpecials, BroadcastTransactionSpecial
{
function initialize()
{
// CoreModule
$this->blockchain = 'linea';
$this->module = 'linea-main';
$this->is_main = true;
$this->first_block_date = '2023-07-06';
$this->first_block_id = 0;
$this->currency = 'ethereum';
$this->currency_details = ['name' => 'Ethereum', 'symbol' => 'ETH', 'decimals' => 18, 'description' => null];
$this->mempool_implemented = true;
// EVMMainModule
$this->evm_implementation = EVMImplementation::geth;
$this->extra_features = [EVMSpecialFeatures::NoEIP1559BurnFee];
$this->reward_function = function($block_id)
{
return '0';
};
}
}