title | sidebar_position |
---|---|
Tools and SDKs |
90 |
These tools make it easier for developers to use and understand the Stellar network and launch their project.
A stripped-down wallet where you can check an account’s XLM balance and send simple payments on the Testnet and Pubnet.
Allows other Stellar apps to request transaction signing or identity verification.
View all anchors on Stellar, their currencies, and where they operate.
A sandbox supported by SDF and Cheesecake Labs for businesses to experiment with asset issuance on Stellar's test network.
Displays the current status of the Testnet and Pubnet. Monitor fee stats, recent operations, lumen supply, and more.
Lets financial application developers test their integrations and learn how Stellar ecosystem protocols (SEPs) work; use the demo wallet to test Regulated Assets (SEP-8), Hosted Deposit and Withdrawal (SEP-24), and Cross-Border Payments (SEP-31) with any home domain that has a Stellar Info File (also known as SEP-1, or a stellar.toml file).
SDF’s flagship non-custodial wallet extension that enables you to sign Stellar transactions via your browser.
A free, customizable, open-source trading bot for the Stellar universal marketplace.
The Stellar Laboratory is a GUI where you can use and learn about the Stellar network on the Testnet and Pubnet. You can create accounts, construct and submit transactions, and query Horizon endpoints without needing to know code.
View Stellar network nodes and visualize consensus with Stellarbeat.
An extendable django app that makes it easy for anchors to facilitate cross-border payments and enable deposits and withdrawals; run a web server supporting any combination of SEP-1, 6, 10, 12, and 24.
Tracks network incidents and scheduled maintenance for the Testnet and Pubnet. Subscribe to updates to be notified about important events, including protocol upgrades and Testnet resets.
Explore transactions and network activity with StellarExpert. Check stats specific to an asset code, transaction hash, account address, or ledger sequence number.
A GitHub repository with tools like Stellar Archivist (for Stellar Core archive maintenance) and Horizon cmp (compares responses of two Horizon servers).
Interact with the Stellar network using the SDK in your preferred language. The JavaScript, Java, and Go SDKs are maintained by SDF and the rest are maintained by dedicated community developers. All SDKs are open-source; file a GitHub issue or pull request in the specific SDK repository if you have questions or suggestions.
Each SDK has its own source code and documentation. Learn how to use a specific SDK by referring to the documentation- most docs offer practical examples that demonstrate how to construct and submit transactions and interact with Horizon endpoints.
This SDK is split up into separate packages, all of which you can find in the Go monorepo README. The two key libraries for interacting with Horizon are txnbuild
, which enables the construction, signing, and encoding of Stellar transactions, and horizonclient
, which provides a web client for interfacing with Horizon server REST endpoints to retrieve ledger information and submit transactions built with txnbuild
.
Source | Base Source | SDK Source | Docs | Base Examples | SDK Examples