NostraLib 0.0.2
dotnet add package NostraLib --version 0.0.2
NuGet\Install-Package NostraLib -Version 0.0.2
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="NostraLib" Version="0.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NostraLib --version 0.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: NostraLib, 0.0.2"
#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.
// Install NostraLib as a Cake Addin #addin nuget:?package=NostraLib&version=0.0.2 // Install NostraLib as a Cake Tool #tool nuget:?package=NostraLib&version=0.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Nostra
Nostra is a F# library for creating applications that interact with the Nostr Protocol.
Push a note to one relay
let note = "Hello world!"
|> Event.createNote
|> Event.sign secret
let! relay = Client.connectToRelay (Uri "wss://nostr-relay.com")
do! relay.publish note
let printEvent = function
| Ok (RMEvent(id, event)) -> printfn "%s" event.Content
| _ -> printf "not an event"
let! relay = Client.connectToRelay (Uri "wss://nostr-relay.com")
do! relay.startListening printEvent
let filter = Filter.notes |> Filter.since (DateTime.UtcNow.AddDays -1)
do! relay.subscribe "all" [ filter ]
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- FSharp.Core (>= 8.0.100)
- LibChaCha20 (>= 1.0.1)
- NBitcoin.Secp256k1 (>= 3.1.0)
- Thoth.Json.Net (>= 11.0.0)
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 |
---|---|---|
0.0.2 | 289 | 1/22/2024 |