forked from NethermindEth/nethermind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDbNames.cs
More file actions
24 lines (23 loc) · 965 Bytes
/
DbNames.cs
File metadata and controls
24 lines (23 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-FileCopyrightText: 2026 Demerzel Solutions Limited
// SPDX-License-Identifier: LGPL-3.0-only
namespace Nethermind.Db
{
public static class DbNames
{
public const string Storage = "storage";
public const string State = "state";
public const string Code = "code";
public const string Blocks = "blocks";
public const string Headers = "headers";
public const string BlockNumbers = "blockNumbers";
public const string Receipts = "receipts";
public const string BlockInfos = "blockInfos";
public const string BadBlocks = "badBlocks";
public const string Bloom = "bloom";
public const string Metadata = "metadata";
public const string BlobTransactions = "blobTransactions";
public const string DiscoveryNodes = "discoveryNodes";
public const string DiscoveryV5Nodes = "discoveryV5Nodes";
public const string PeersDb = "peers";
}
}