https://github.com/dora-gt/cs-ilp-core
C# implementation of Interledger Protocol
https://github.com/dora-gt/cs-ilp-core
csharp ilp interledger interledger-protocol
Last synced: 7 months ago
JSON representation
C# implementation of Interledger Protocol
- Host: GitHub
- URL: https://github.com/dora-gt/cs-ilp-core
- Owner: dora-gt
- License: mit
- Created: 2017-12-04T05:20:39.000Z (over 8 years ago)
- Default Branch: develop
- Last Pushed: 2018-03-25T12:01:11.000Z (about 8 years ago)
- Last Synced: 2024-08-03T19:08:32.953Z (almost 2 years ago)
- Topics: csharp, ilp, interledger, interledger-protocol
- Language: C#
- Homepage:
- Size: 130 KB
- Stars: 5
- Watchers: 5
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cs-ilp-core
This is a C# implementation of Interledger Protocol v4.
Refer to [ILPv4 RFC](https://github.com/interledger/rfcs/pull/387).
OER encoder/decoder is ported from: [Quilt Project](https://github.com/hyperledger/quilt/tree/master/codec-framework).
## Objectives
- To understand ILP deeply
- To show ILP structure by code which is easy to understand
- To publish this library finally
So, we don't put priority on efficiency, whether the code runs fast or not, and extensibility.
Just aim to make it simple and easy to understand.
## Environment
- VisualStudio
- .NET Standard 2.0
## Branching Strategy
- Based on [this](http://nvie.com/posts/a-successful-git-branching-model/) branching model
## Code Formatting
- Use [policy file](dev-tools/cs-ilp-core.mdpolicy).
## License
### cs-ilp-core
- [MIT License](LICENSE)
### Hyperledger Quilt
- Apache License 2.0
### Microsoft.CSharp
- [MIT License](https://github.com/dotnet/corefx/blob/master/LICENSE.TXT)