Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sava-software/solana-programs
Native Solana & SPL Program Clients
https://github.com/sava-software/solana-programs
java solana spl
Last synced: 13 days ago
JSON representation
Native Solana & SPL Program Clients
- Host: GitHub
- URL: https://github.com/sava-software/solana-programs
- Owner: sava-software
- License: gpl-3.0
- Created: 2024-08-10T17:29:36.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-03T22:08:54.000Z (about 2 months ago)
- Last Synced: 2024-10-11T01:21:14.952Z (about 1 month ago)
- Topics: java, solana, spl
- Language: Java
- Homepage:
- Size: 186 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![](https://github.com/sava-software/sava/blob/003cf88b3cd2a05279027557f23f7698662d2999/assets/images/solana_java_cup.svg)
# Solana Programs [![Build](https://github.com/sava-software/anchor-src-gen/actions/workflows/gradle.yml/badge.svg)](https://github.com/sava-software/anchor-src-gen/actions/workflows/gradle.yml) [![Release](https://github.com/sava-software/anchor-src-gen/actions/workflows/release.yml/badge.svg)](https://github.com/sava-software/anchor-src-gen/actions/workflows/release.yml)
## Requirements
- The latest generally available JDK. This project will continue to move to the latest and will not maintain
versions released against previous JDK's.## [Dependencies](src/main/java/module-info.java)
- [JSON Iterator](https://github.com/comodal/json-iterator?tab=readme-ov-file#json-iterator)
- [Bouncy Castle](https://www.bouncycastle.org/download/bouncy-castle-java/#latest)
- [sava-core](https://github.com/sava-software/sava)
- [sava-rpc](https://github.com/sava-software/sava)### Add Dependency
Create
a [GitHub user access token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#creating-a-personal-access-token-classic)
with read access to GitHub Packages.Then add the following to your Gradle build script.
```groovy
repositories {
maven {
url = "https://maven.pkg.github.com/sava-software/sava"
credentials {
username = GITHUB_USERNAME
password = GITHUB_PERSONAL_ACCESS_TOKEN
}
}
maven {
url = "https://maven.pkg.github.com/sava-software/solana-programs"
}
}dependencies {
implementation "software.sava:sava-core:$VERSION"
implementation "software.sava:sava-rpc:$VERSION"
implementation "software.sava:solana-programs:$VERSION"
}
```## Contribution
Unit tests are needed and welcomed. Otherwise, please open an issue or send an email before working on a pull request.