Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lightsail-network/java-stellar-sdk
The Java Stellar SDK library provides APIs to build transactions and connect to Horizon and Soroban-RPC Server.
https://github.com/lightsail-network/java-stellar-sdk
blockchain cryptocurrency java sdk stellar
Last synced: 3 months ago
JSON representation
The Java Stellar SDK library provides APIs to build transactions and connect to Horizon and Soroban-RPC Server.
- Host: GitHub
- URL: https://github.com/lightsail-network/java-stellar-sdk
- Owner: lightsail-network
- License: apache-2.0
- Created: 2015-11-16T23:52:51.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-05-01T05:09:38.000Z (7 months ago)
- Last Synced: 2024-05-07T21:02:02.517Z (6 months ago)
- Topics: blockchain, cryptocurrency, java, sdk, stellar
- Language: Java
- Homepage: https://javadoc.io/doc/network.lightsail/stellar-sdk
- Size: 15.8 MB
- Stars: 173
- Watchers: 37
- Forks: 163
- Open Issues: 11
-
Metadata Files:
- Readme: readme.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-stellar - Java SDK
README
# java-stellar-sdk
[![Test and Deploy](https://github.com/lightsail-network/java-stellar-sdk/actions/workflows/test-deploy.yml/badge.svg?branch=master)](https://github.com/lightsail-network/java-stellar-sdk/actions/workflows/test-deploy.yml)
[![Maven Central Version](https://img.shields.io/maven-central/v/network.lightsail/stellar-sdk)](https://central.sonatype.com/artifact/network.lightsail/stellar-sdk)
[![javadoc](https://javadoc.io/badge2/network.lightsail/stellar-sdk/javadoc.svg)](https://javadoc.io/doc/network.lightsail/stellar-sdk)The Java Stellar SDK library provides APIs to build transactions and connect to [Horizon](https://github.com/lightsail-network/go/tree/master/services/horizon) and [Soroban-RPC Server](https://soroban.stellar.org/docs/reference/rpc).
## Installation
### Apache Maven
```xml
network.lightsail
stellar-sdk
0.44.0```
### Gradle
```groovy
implementation 'network.lightsail:stellar-sdk:0.44.0'
```You can find instructions on how to install this dependency using alternative package managers [here](https://central.sonatype.com/artifact/network.lightsail/stellar-sdk).
### JAR
Download the latest jar from the GitHub repo's [releases tab](https://github.com/lightsail-network/java-stellar-sdk/releases). Add the `jar` package to your project according to how your environment is set up.
## Basic Usage
For some examples on how to use this library, take a look at the [Get Started docs in the developers site](https://developers.stellar.org/docs/tutorials/create-account/).## Documentation
Javadoc is available at https://javadoc.io/doc/network.lightsail/stellar-sdk## Examples
This repository contains a number of helpful examples. You can find them in the [examples](./examples/src/main/java/network/lightsail) directory.## Integrate into Android project
If you want to integrate this SDK on Android platforms with API level 28 and above, you don't need any additional configuration.
However, if you need to include it on lower platforms, you may also need to add the [Java Stellar SDK Android SPI](https://github.com/lightsail-network/java-stellar-sdk-android-spi).## Contributing
For information on how to contribute, please refer to our [contribution guide](https://github.com/lightsail-network/java-stellar-sdk/blob/master/CONTRIBUTING.md).## License
java-stellar-sdk is licensed under an Apache-2.0 license. See the [LICENSE](https://github.com/lightsail-network/java-stellar-sdk/blob/master/LICENSE) file for details.