Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ public override IReleaseSpec GetSpecInternal(ForkActivation activation)
mutableSpec.IsEip7002Enabled = pragueEnabled;
mutableSpec.IsEip6110Enabled = pragueEnabled;

// Precompiles
((IReleaseSpec)mutableSpec).Precompiles.Add(ArbosAddresses.ArbSysAddress);
((IReleaseSpec)mutableSpec).Precompiles.Add(ArbosAddresses.ArbGasInfoAddress);

return mutableSpec;
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
using Nethermind.Api;
using Nethermind.Core.Crypto;
using Nethermind.Evm.State;
using Nethermind.Init.Steps;

namespace Nethermind.Arbitrum.Genesis;
Expand Down
14 changes: 1 addition & 13 deletions src/Nethermind.Arbitrum/nuget.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,5 @@
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="dotnet-libraries" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-libraries/nuget/v3/index.json" />
<!-- <add key="nugettest.org" value="https://apiint.nugettest.org/v3/index.json" /> -->
</packageSources>
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
<packageSource key="dotnet-libraries">
<package pattern="System.CommandLine*" />
</packageSource>
<!-- <packageSource key="nugettest.org">
<package pattern="" />
</packageSource> -->
</packageSourceMapping>
</configuration>
</configuration>
13 changes: 0 additions & 13 deletions src/nuget.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,5 @@
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="dotnet-libraries" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-libraries/nuget/v3/index.json" />
<!--<add key="nugettest.org" value="https://apiint.nugettest.org/v3/index.json" />-->
</packageSources>
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
<packageSource key="dotnet-libraries">
<package pattern="System.CommandLine*" />
</packageSource>
<!--<packageSource key="nugettest.org">
<package pattern="" />
</packageSource>
</packageSourceMapping>-->
</packageSourceMapping>
</configuration>
Loading