|
| 1 | +// Copyright (c) 2021 Demerzel Solutions Limited |
| 2 | +// This file is part of the Nethermind library. |
| 3 | +// |
| 4 | +// The Nethermind library is free software: you can redistribute it and/or modify |
| 5 | +// it under the terms of the GNU Lesser General Public License as published by |
| 6 | +// the Free Software Foundation, either version 3 of the License, or |
| 7 | +// (at your option) any later version. |
| 8 | +// |
| 9 | +// The Nethermind library is distributed in the hope that it will be useful, |
| 10 | +// but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | +// GNU Lesser General Public License for more details. |
| 13 | +// |
| 14 | +// You should have received a copy of the GNU Lesser General Public License |
| 15 | +// along with the Nethermind. If not, see <http://www.gnu.org/licenses/>. |
| 16 | +// |
| 17 | + |
| 18 | +using System.Threading; |
| 19 | +using Nethermind.Core; |
| 20 | +using Nethermind.Core.Specs; |
| 21 | +using Nethermind.Int256; |
| 22 | + |
| 23 | +namespace Nethermind.Specs.Forks |
| 24 | +{ |
| 25 | + public class GrayGlacier : IReleaseSpec |
| 26 | + { |
| 27 | + private static IReleaseSpec _instance; |
| 28 | + |
| 29 | + private GrayGlacier() { } |
| 30 | + |
| 31 | + public static IReleaseSpec Instance => LazyInitializer.EnsureInitialized(ref _instance, () => new GrayGlacier()); |
| 32 | + |
| 33 | + public string Name => "Gray Glacier"; |
| 34 | + public long MaximumExtraDataSize => 32; |
| 35 | + public long MaxCodeSize => 24576; |
| 36 | + public long MinGasLimit => 5000; |
| 37 | + public long GasLimitBoundDivisor => 0x0400; |
| 38 | + public UInt256 BlockReward { get; } = UInt256.Parse("2000000000000000000"); |
| 39 | + public long DifficultyBombDelay => 11400000L; |
| 40 | + public long DifficultyBoundDivisor => 0x0800; |
| 41 | + public long? FixedDifficulty => null; |
| 42 | + public int MaximumUncleCount => 2; |
| 43 | + public bool IsTimeAdjustmentPostOlympic => true; |
| 44 | + public bool IsEip2Enabled => true; |
| 45 | + public bool IsEip7Enabled => true; |
| 46 | + public bool IsEip100Enabled => true; |
| 47 | + public bool IsEip140Enabled => true; |
| 48 | + public bool IsEip150Enabled => true; |
| 49 | + public bool IsEip155Enabled => true; |
| 50 | + public bool IsEip158Enabled => true; |
| 51 | + public bool IsEip160Enabled => true; |
| 52 | + public bool IsEip170Enabled => true; |
| 53 | + public bool IsEip196Enabled => true; |
| 54 | + public bool IsEip197Enabled => true; |
| 55 | + public bool IsEip198Enabled => true; |
| 56 | + public bool IsEip211Enabled => true; |
| 57 | + public bool IsEip214Enabled => true; |
| 58 | + public bool IsEip649Enabled => true; |
| 59 | + public bool IsEip658Enabled => true; |
| 60 | + public bool IsEip145Enabled => true; |
| 61 | + public bool IsEip1014Enabled => true; |
| 62 | + public bool IsEip1052Enabled => true; |
| 63 | + public bool IsEip1283Enabled => false; |
| 64 | + public bool IsEip1234Enabled => true; |
| 65 | + public bool IsEip1344Enabled => true; |
| 66 | + public bool IsEip2028Enabled => true; |
| 67 | + public bool IsEip152Enabled => true; |
| 68 | + public bool IsEip1108Enabled => true; |
| 69 | + public bool IsEip1884Enabled => true; |
| 70 | + public bool IsEip2200Enabled => true; |
| 71 | + public bool IsEip2315Enabled => false; |
| 72 | + public bool IsEip2537Enabled => false; |
| 73 | + public bool IsEip2565Enabled => true; |
| 74 | + public bool IsEip2929Enabled => true; |
| 75 | + public bool IsEip2930Enabled => true; |
| 76 | + public bool IsEip158IgnoredAccount(Address address) => false; |
| 77 | + public bool IsEip1559Enabled => true; |
| 78 | + public bool IsEip3198Enabled => true; |
| 79 | + public bool IsEip3529Enabled => true; |
| 80 | + public bool IsEip3541Enabled => true; |
| 81 | + public bool IsEip3607Enabled => true; |
| 82 | + public long Eip1559TransitionBlock => 12965000; |
| 83 | + } |
| 84 | +} |
0 commit comments