-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathPolygonMainModule.php
More file actions
30 lines (26 loc) · 1.15 KB
/
PolygonMainModule.php
File metadata and controls
30 lines (26 loc) · 1.15 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
<?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 Polygon module. It requires either a geth or an Erigon node to run (but the latter is much faster). */
final class PolygonMainModule extends EVMMainModule implements Module, BalanceSpecial, TransactionSpecials, AddressSpecials, BroadcastTransactionSpecial
{
function initialize()
{
// CoreModule
$this->blockchain = 'polygon';
$this->module = 'polygon-main';
$this->is_main = true;
$this->first_block_date = '2020-05-30';
$this->first_block_id = 0;
$this->currency = 'matic';
$this->currency_details = ['name' => 'MATIC', 'symbol' => 'MATIC', 'decimals' => 18, 'description' => null];
// EVMMainModule
$this->evm_implementation = EVMImplementation::Erigon;
$this->extra_features = [EVMSpecialFeatures::BorValidator];
$this->reward_function = function($block_id)
{
return '0';
};
}
}