CSPR.Cloud.Net
4.0.1
See the version list below for details.
dotnet add package CSPR.Cloud.Net --version 4.0.1
NuGet\Install-Package CSPR.Cloud.Net -Version 4.0.1
<PackageReference Include="CSPR.Cloud.Net" Version="4.0.1" />
<PackageVersion Include="CSPR.Cloud.Net" Version="4.0.1" />
<PackageReference Include="CSPR.Cloud.Net" />
paket add CSPR.Cloud.Net --version 4.0.1
#r "nuget: CSPR.Cloud.Net, 4.0.1"
#:package CSPR.Cloud.Net@4.0.1
#addin nuget:?package=CSPR.Cloud.Net&version=4.0.1
#tool nuget:?package=CSPR.Cloud.Net&version=4.0.1
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.0.1 — FIX: TolerateMalformedRows silently defeated the decimal money typing introduced in v4.0.0. The tolerant path builds a JToken before converting rows, and Newtonsoft defaults to FloatParseHandling.Double, so every rate and amount was rounded to double precision on the way into the tree and the later conversion to decimal could only preserve the already-lost value (0.10000000000000000555 came back as 0.1). The tolerant path now reads with FloatParseHandling.Decimal. Anyone who enabled TolerateMalformedRows on v4.0.0 was getting double-precision money values despite the decimal types and should upgrade; the direct deserialize path was never affected, which is why v4.0.0's own precision test passed. Covered by a regression test that exercises precision and tolerance together.