{"id":18417396,"url":"https://github.com/stellar/kotlin-wallet-sdk","last_synced_at":"2026-04-29T00:12:06.533Z","repository":{"id":56780110,"uuid":"523604257","full_name":"stellar/kotlin-wallet-sdk","owner":"stellar","description":"Kotlin Wallet SDK to build Stellar wallets","archived":false,"fork":false,"pushed_at":"2026-04-27T23:53:05.000Z","size":1001,"stargazers_count":7,"open_issues_count":1,"forks_count":11,"subscribers_count":10,"default_branch":"main","last_synced_at":"2026-04-28T00:25:09.277Z","etag":null,"topics":["blockchain","cryptocurrency","kotlin","sdk","stellar"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stellar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-08-11T06:03:00.000Z","updated_at":"2026-04-27T22:51:13.000Z","dependencies_parsed_at":"2023-02-11T22:45:15.472Z","dependency_job_id":"c761adc6-4ecd-4f94-9b60-303bb41ea0ec","html_url":"https://github.com/stellar/kotlin-wallet-sdk","commit_stats":{"total_commits":70,"total_committers":3,"mean_commits":"23.333333333333332","dds":0.4285714285714286,"last_synced_commit":"6a1d9301a3c6d897519bacb8f9163362daedb778"},"previous_names":[],"tags_count":29,"template":false,"template_full_name":null,"purl":"pkg:github/stellar/kotlin-wallet-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stellar%2Fkotlin-wallet-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stellar%2Fkotlin-wallet-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stellar%2Fkotlin-wallet-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stellar%2Fkotlin-wallet-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stellar","download_url":"https://codeload.github.com/stellar/kotlin-wallet-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stellar%2Fkotlin-wallet-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32402718,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T19:38:08.556Z","status":"ssl_error","status_checked_at":"2026-04-28T19:37:55.688Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["blockchain","cryptocurrency","kotlin","sdk","stellar"],"created_at":"2024-11-06T04:09:15.885Z","updated_at":"2026-04-29T00:12:06.528Z","avatar_url":"https://github.com/stellar.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e ⚠️ **This SDK is deprecated and no longer maintained.**\n\u003e\n\u003e The Kotlin Wallet SDK has been discontinued. There is no direct Kotlin/Java successor.\n\u003e\n\u003e Wallet SDKs remain actively maintained in:\n\u003e - **TypeScript** — https://github.com/stellar/typescript-wallet-sdk\n\u003e - **Flutter (Dart)** — https://github.com/Soneso/stellar_wallet_flutter_sdk\n\u003e - **Swift** — https://github.com/Soneso/stellar-swift-wallet-sdk\n\u003e\n\u003e If you need to stay on the JVM, you can use the lower-level [Java Stellar SDK](https://github.com/stellar/java-stellar-sdk) directly, but you will need to implement SEP protocols (SEP-1/10/12/24/30) yourself.\n\n---\n\n# Kotlin Wallet SDK [![javadoc](https://javadoc.io/badge2/org.stellar/wallet-sdk/dokka.svg?logo=kotlin)](https://javadoc.io/doc/org.stellar/wallet-sdk) [![Maven Central](https://img.shields.io/maven-central/v/org.stellar/wallet-sdk?color=success\u0026logo=apache-maven)](https://central.sonatype.com/search?q=pkg%253Amaven%252Forg.stellar%252Fwallet-sdk\u0026namespace=org.stellar)\n\nKotlin Wallet SDK is a library that allows developers to build wallet applications on the Stellar network faster. It\nutilizes [Java Stellar SDK](https://github.com/stellar/java-stellar-sdk) to communicate with a Stellar Horizon server.\n\n## Dependency\n\nThe library is hosted on the [Maven Central](https://central.sonatype.com/artifact/org.stellar/wallet-sdk).\nTo import `wallet-sdk` library you need to add following dependencies to your code:\n\nMaven:\n\n```pom\n\u003cdependency\u003e\n  \u003cgroupId\u003eorg.stellar\u003c/groupId\u003e\n  \u003cartifactId\u003ewallet-sdk\u003c/artifactId\u003e\n  \u003cversion\u003e3.0.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nGradle (Kotlin):\n\n```gradle\nimplementation(\"org.stellar:wallet-sdk:3.0.0\")\n```\n\nGradle (Groovy):\n```gradle\nimplementation 'org.stellar:wallet-sdk:3.0.0'\n\n```\n## Introduction\n\n\u003c!--- INCLUDE .*readme.*\nimport org.stellar.walletsdk.*\n\nfun main() { \n--\u003e\n\u003c!--- SUFFIX .*readme.*\n  println(newKeyPair)\n}    \n--\u003e\n\nHere's a small example creating main wallet class with default configuration connected to testnet network:\n\n```kotlin\n  val wallet = Wallet(StellarConfiguration.Testnet)\n```\n\nIt should later be re-used across the code, as it has access to various useful children classes. For example, new key pair can be\ncreated using it.\n\n```kotlin\n  val newKeyPair = wallet.stellar().account().createKeyPair()\n```\n\nRead [full wallet guide](https://developers.stellar.org/docs/category/build-a-wallet-with-the-wallet-sdk) for more info\n\nYou can find auto-generated documentation website on [javadoc.io](https://javadoc.io/doc/org.stellar/wallet-sdk) \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstellar%2Fkotlin-wallet-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstellar%2Fkotlin-wallet-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstellar%2Fkotlin-wallet-sdk/lists"}