Skip to content

theword3/dotnet-stellar-sdk

 
 


dotnet-stellar-sdk

Stellar API SDK for .NET Core 2.x and .NET Standard 2.0


Explore the docs »

Report Bug · Request Feature · Report Security Vulnerability

Table of Contents

About The Project

dotnet-stellar-sdk is a Net Core/Standard library for communicating with a Stellar Horizon server. It is used for building Stellar apps.

This project originated as a full port of the official Java SDK API

Installation

The stellar-dotnet-sdk library is bundled in a NuGet Package.

Visual Studio

JetBrains Rider

Other

Usage

Check the Tutorials page to get started.

In case of doubts or issues, you can ask for help here:

XDR

NuGet Badge

If you only need the XDR objects in a .NET Standard NuGet package, then you can get those here: https://www.nuget.org/packages/stellar-dotnet-sdk-xdr/

XDR Generation

In order to generate the XDR Files automatically in C# a custom XDR Generator must be used.

You can find the latest working generator here: https://github.com/fracek/xdrgen/tree/csharp

You can use that version of xdrgen to regenerate the XDR files from the .x files located from the source of the original API SDK for Horizon.

Example

  1. Install custom XDR generator:
    git clone https://github.com/fracek/xdrgen
    cd xdrgen
    git checkout csharp
    rake install
    
  2. Regenerate .cs files from .x files:
    cd dotnet-stellar-sdk/
    xdrgen -o=./stellar-dotnet-sdk-xdr/generated -l=csharp -n=stellar_dotnet_sdk.xdr ./stellar-dotnet-sdk-xdr/*.x
    
  3. Reformat .cs files using dotnet-format:
    dotnet format
    

Contributors

License

dotnet-stellar-sdk is licensed under an Apache-2.0 license. See the LICENSE file for details.

Acknowledgements

  • Stellar Development Foundation

About

Stellar API SDK for .NET Core 2.x and .NET Standard 2.0

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 96.0%
  • RPC 3.5%
  • Other 0.5%