![]() |
VOOZH | about |
dotnet add package Qubic.Core --version 1.292.2
NuGet\Install-Package Qubic.Core -Version 1.292.2
<PackageReference Include="Qubic.Core" Version="1.292.2" />
<PackageVersion Include="Qubic.Core" Version="1.292.2" />Directory.Packages.props
<PackageReference Include="Qubic.Core" />Project file
paket add Qubic.Core --version 1.292.2
#r "nuget: Qubic.Core, 1.292.2"
#:package Qubic.Core@1.292.2
#addin nuget:?package=Qubic.Core&version=1.292.2Install as a Cake Addin
#tool nuget:?package=Qubic.Core&version=1.292.2Install as a Cake Tool
Core domain models, identity handling, transaction building, and signing abstractions for the Qubic network.
Note: This is an early version. APIs may change in future releases.
dotnet add package Qubic.Core
QubicIdentity value type (from seed, public key, or 60-character identity string)TransactionBuilderQubicTransaction, QubicBalance, QubicTick, QubicTransfer, QubicAssetusing Qubic.Core.Entities;
// From a 60-character identity string
var id = QubicIdentity.FromIdentity("BAAAAAAAA...");
// From a 55-character seed
var id = QubicIdentity.FromSeed("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabc");
// From a 32-byte public key
var id = QubicIdentity.FromPublicKey(publicKeyBytes);
using Qubic.Core;
using Qubic.Core.Entities;
var builder = new TransactionBuilder();
var tx = builder.CreateTransfer(
source: QubicIdentity.FromSeed(seed),
destination: QubicIdentity.FromIdentity("DEST..."),
amount: 1000,
tick: currentTick + 5
);
builder.Sign(tx, seed);
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 4 NuGet packages that depend on Qubic.Core:
| Package | Downloads |
|---|---|
|
Qubic.Bob
JSON-RPC client for QubicBob API |
|
|
Qubic.Serialization
Binary serialization for the Qubic network protocol |
|
|
Qubic.Services
High-level services for Qubic applications: backend abstraction, tick monitoring, label service, wallet storage, transaction tracking, and more. |
|
|
Qubic.Rpc
HTTP client for the official Qubic RPC API |
This package is not used by any popular GitHub repositories.