Nethereum.BlockchainStorage.Processors.Sqlite 6.0.1

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Nethereum.BlockchainStorage.Processors.Sqlite --version 6.0.1
                    
NuGet\Install-Package Nethereum.BlockchainStorage.Processors.Sqlite -Version 6.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Nethereum.BlockchainStorage.Processors.Sqlite" Version="6.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Nethereum.BlockchainStorage.Processors.Sqlite" Version="6.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Nethereum.BlockchainStorage.Processors.Sqlite" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Nethereum.BlockchainStorage.Processors.Sqlite --version 6.0.1
                    
#r "nuget: Nethereum.BlockchainStorage.Processors.Sqlite, 6.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Nethereum.BlockchainStorage.Processors.Sqlite@6.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Nethereum.BlockchainStorage.Processors.Sqlite&version=6.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Nethereum.BlockchainStorage.Processors.Sqlite&version=6.0.1
                    
Install as a Cake Tool

Nethereum.BlockchainStorage.Processors.Sqlite

SQLite-specific DI registration for the Nethereum blockchain indexer hosted services.

Overview

Provides AddSqliteBlockchainProcessor() and AddSqliteInternalTransactionProcessor() extension methods that wire together the database-agnostic processing pipeline from Nethereum.BlockchainStorage.Processors with SQLite storage from Nethereum.BlockchainStore.Sqlite.

Installation

dotnet add package Nethereum.BlockchainStorage.Processors.Sqlite

Targets net10.0.

Dependencies

  • Nethereum.BlockchainStorage.Processors - Database-agnostic processing services and hosted services
  • Nethereum.BlockchainStore.Sqlite - SQLite DbContext and context factory

Quick Start

var builder = Host.CreateApplicationBuilder(args);

var connectionString = builder.Configuration.GetConnectionString("SqliteConnection")
    ?? "Data Source=blockchain.db";

builder.Services.AddSqliteBlockchainProcessor(
    builder.Configuration,
    connectionString);

builder.Services.AddSqliteInternalTransactionProcessor();

var host = builder.Build();
await host.RunAsync();

Connection String Resolution

The extension resolves the connection string in order:

  1. Explicit connectionString parameter
  2. ConnectionStrings:SqliteConnection
  3. ConnectionStrings:BlockchainDbStorage

Configuration

See Nethereum.BlockchainStorage.Processors for BlockchainProcessingOptions configuration.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
6.0.4 44 3/18/2026
6.0.3 32 3/18/2026
6.0.1 43 3/17/2026
6.0.0 45 3/16/2026