Skip to content

avianlabs/solana-kotlin

Folders and files

NameName
Last commit message
Last commit date
Mar 15, 2024
Dec 9, 2024
Sep 9, 2024
Jan 27, 2025
Sep 9, 2024
Feb 18, 2025
Feb 18, 2025
Jul 7, 2023
Jul 15, 2024
Mar 4, 2024
Feb 27, 2024
Feb 27, 2024
Jun 13, 2024
Feb 27, 2024
Feb 18, 2025
Dec 23, 2024
Jul 14, 2024
Feb 18, 2025
Aug 26, 2024
Sep 9, 2024

Repository files navigation

solana-kotlin

Usage

Add it in your root build.gradle.kts at the end of repositories:

repositories {
  mavenCentral()
}

dependencies {
  implementation("net.avianlabs.solana:solana-kotlin:<version>")
}

Snapshot releases

You can get snapshot releases from GitHub Packages.

repositories {
  maven {
    url = uri("https://maven.pkg.github.com/avianlabs/solana-kotlin")
    credentials {
      username = project.findProperty("gpr.user") as String? ?: System.getenv("USERNAME")
      password = project.findProperty("gpr.key") as String? ?: System.getenv("TOKEN")
    }
  }
}