CSPR.Cloud.Net
4.1.0
See the version list below for details.
dotnet add package CSPR.Cloud.Net --version 4.1.0
NuGet\Install-Package CSPR.Cloud.Net -Version 4.1.0
<PackageReference Include="CSPR.Cloud.Net" Version="4.1.0" />
<PackageVersion Include="CSPR.Cloud.Net" Version="4.1.0" />
<PackageReference Include="CSPR.Cloud.Net" />
paket add CSPR.Cloud.Net --version 4.1.0
#r "nuget: CSPR.Cloud.Net, 4.1.0"
#:package CSPR.Cloud.Net@4.1.0
#addin nuget:?package=CSPR.Cloud.Net&version=4.1.0
#tool nuget:?package=CSPR.Cloud.Net&version=4.1.0
A .NET client library for interacting with the CSPR Cloud API, providing access to Casper blockchain data for both Mainnet and Testnet environments.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. 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. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0)
- Newtonsoft.Json (>= 13.0.3)
-
.NETStandard 2.1
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.0)
- Newtonsoft.Json (>= 13.0.3)
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 |
|---|---|---|
| 4.2.1 | 45 | 8/20/2026 |
| 4.2.0 | 44 | 8/19/2026 |
| 4.1.0 | 68 | 8/18/2026 |
| 4.0.1 | 83 | 8/15/2026 |
| 4.0.0 | 89 | 8/15/2026 |
| 3.0.0 | 353 | 5/26/2026 |
| 2.9.0 | 132 | 5/7/2026 |
| 2.0.0 | 132 | 4/22/2026 |
| 1.2.1 | 116 | 4/21/2026 |
| 1.2.0 | 110 | 4/21/2026 |
| 1.1.0 | 240 | 2/25/2026 |
| 1.0.11 | 161 | 2/18/2026 |
| 1.0.10 | 144 | 1/20/2026 |
| 1.0.9 | 527 | 11/17/2025 |
| 1.0.8 | 394 | 9/18/2025 |
| 1.0.7 | 241 | 11/11/2024 |
| 1.0.6 | 227 | 7/1/2024 |
v4.1.0 — NEW: every REST method now accepts a trailing optional CancellationToken, threaded through to HttpClient.SendAsync, so an in-flight request can be aborted (shutdown, timeout policies) instead of running to the HttpClient timeout. The streaming client already accepted tokens; this brings the REST side level. Compatibility: all existing method CALLS compile unchanged. Adding an optional parameter does change method signatures, so three narrower patterns are affected: assemblies compiled against 4.0.x must be recompiled against 4.1.0 (binary break — a plain NuGet restore + build fixes it); method-group/delegate conversions over these methods need their delegate type updated (optional parameters do not participate in delegate conversion); and reflection lookups using the old exact parameter list must include the CancellationToken. No behavioral change for callers that pass no token. Earlier: v4.0.1 fixed TolerateMalformedRows silently defeating the decimal money typing (the tolerant path now reads with FloatParseHandling.Decimal); v4.0.0 made money values decimal and added opt-in per-row tolerance with SkippedItemCount.