diff --git a/src/Nethermind/Nethermind.Core/Eip3074Constants.cs b/src/Nethermind/Nethermind.Core/Eip3074Constants.cs
deleted file mode 100644
index 1b97f3e7164..00000000000
--- a/src/Nethermind/Nethermind.Core/Eip3074Constants.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-// SPDX-FileCopyrightText: 2022 Demerzel Solutions Limited
-// SPDX-License-Identifier: LGPL-3.0-only
-
-namespace Nethermind.Core;
-
-///
-/// Represents the EIP-3074 parameters.
-///
-public class Eip3074Constants
-{
- ///
- /// Used to prevent signature collision with other signing formats
- ///
- public const byte AuthMagic = 0x04;
-}
diff --git a/src/Nethermind/Nethermind.Core/Specs/IReleaseSpec.cs b/src/Nethermind/Nethermind.Core/Specs/IReleaseSpec.cs
index 0fd28b93678..ae59f83655d 100644
--- a/src/Nethermind/Nethermind.Core/Specs/IReleaseSpec.cs
+++ b/src/Nethermind/Nethermind.Core/Specs/IReleaseSpec.cs
@@ -293,11 +293,6 @@ public interface IReleaseSpec : IEip1559Spec, IReceiptSpec
///
bool IsEip6780Enabled { get; }
- ///
- /// https://eips.ethereum.org/EIPS/eip-3074
- /// AUTH and AUTHCALL for EOA
- ///
- bool IsEip3074Enabled { get; }
/// Secp256r1 precompile
///
bool IsRip7212Enabled { get; }
@@ -401,8 +396,6 @@ public interface IReleaseSpec : IEip1559Spec, IReceiptSpec
public bool AuRaSystemCalls { get; }
public bool BlobBaseFeeEnabled => IsEip4844Enabled;
- bool AuthCallsEnabled => IsEip3074Enabled;
-
public bool ConsensusRequestsEnabled => WithdrawalRequestsEnabled || DepositsEnabled;
}
}
diff --git a/src/Nethermind/Nethermind.Evm.Test/Eip3074Tests.cs b/src/Nethermind/Nethermind.Evm.Test/Eip3074Tests.cs
deleted file mode 100644
index 4bf346b9a3c..00000000000
--- a/src/Nethermind/Nethermind.Evm.Test/Eip3074Tests.cs
+++ /dev/null
@@ -1,911 +0,0 @@
-// SPDX-FileCopyrightText: 2022 Demerzel Solutions Limited
-// SPDX-License-Identifier: LGPL-3.0-only
-
-using Nethermind.Core;
-using Nethermind.Core.Crypto;
-using Nethermind.Core.Extensions;
-using Nethermind.Core.Specs;
-using Nethermind.Core.Test.Builders;
-using Nethermind.Crypto;
-using Nethermind.Int256;
-using Nethermind.Logging;
-using Nethermind.Specs;
-using NUnit.Framework;
-using System.Collections.Generic;
-using System.Linq;
-
-namespace Nethermind.Evm.Test
-{
- public class Eip3074Tests : VirtualMachineTestsBase
- {
- protected override ForkActivation Activation => MainnetSpecProvider.PragueActivation;
- protected override ulong Timestamp => MainnetSpecProvider.PragueBlockTimestamp;
-
- protected override TestAllTracerWithOutput CreateTracer() => new() { IsTracingAccess = false };
-
- public static IEnumerable