Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 28 additions & 2 deletions docs/tools/developer-tools/wallets.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sidebar_position: 130

### [Stellar Wallet Kit](https://github.com/Creit-Tech/Stellar-Wallets-Kit)

A simple-to-use wallet kit to manage integration to multiple Stellar ecosystem wallet. Learn more about how to integrate this library from [the Stellar Wallets Kit Docs](https://stellarwalletskit.dev).
A simple-to-use wallet kit to manage integration to multiple Stellar ecosystem wallets. Learn more about how to integrate this library from [the Stellar Wallets Kit Docs](https://stellarwalletskit.dev).

![Stellar Wallets Kit](/assets/dev-tools/stellar-wallet-kit.gif)

Expand All @@ -26,6 +26,32 @@ The Stellar Wallets Kit supports many wallets including:
- xBull
- HOT Wallet

### [Stellar AppKit](https://github.com/SagantaHQ/stellar-appkit)

**Stellar AppKit** is an open-source, framework-agnostic application SDK for building Stellar dApps. It provides a unified application layer for wallet connectivity, authentication, session management, transaction UX, and Soroban.

Unlike wallet connectivity libraries that primarily focus on connecting applications to wallets, Stellar AppKit is designed to provide a broader set of application-level primitives.

Key features include:

- Unified Stellar wallet connectivity
- **Sign in with Stellar** authentication
- Server-side authentication and session validation
- Session management
- Transaction previews, simulation, and risk detection
- Soroban transaction lifecycle abstractions
- Desktop modal and mobile bottom-sheet wallet UX
- UI integrations for **React, Vue, and Svelte**
- Support for **25 languages**, including Chinese
- Framework-agnostic core SDK

Stellar AppKit's published roadmap includes:

- A React Native bottom-sheet UI with Expo compatibility
- A smart-account/passkey signer and gas-sponsorship hook for the Soroban invoke pipeline

Learn more in the [Stellar AppKit documentation](http://stellar-appkit.saganta.com/) or visit the [GitHub repository](https://github.com/SagantaHQ/stellar-appkit).

### [Account Viewer](https://accountviewer.stellar.org)

A stripped-down wallet where you can check an account’s XLM balance and send simple payments on Testnet and Mainnet. Account Viewer's [source code](https://github.com/stellar/account-viewer-v2) is also useful and instructive for developers building wallet-related features into their applications.
Expand All @@ -36,7 +62,7 @@ SDF’s flagship non-custodial wallet extension that allows users to sign Stella

### [NEAR Intents](https://docs.near.org/chain-abstraction/intents/overview)

NEAR Intents is a multichain transaction protocol for wallets that allows users or AI agents to simply state the outcome they want (like swapping Token A for Token B), and then lets a network of offchain market makers (called solvers) compete to fulfill that request; once the best solution is selected, it is sent to the user for approval, then execution is verified and executed through a Verifier smart contract on NEAR.
NEAR Intents is a multichain transaction protocol for wallets that allows users or AI agents to simply state the outcome they want (like swapping Token A for Token B), and then lets a network of off-chain market makers (called solvers) compete to fulfill that request; once the best solution is selected, it is sent to the user for approval, then execution is verified and executed through a Verifier smart contract on NEAR.

Read the [docs](https://docs.near.org/chain-abstraction/intents/overview).

Expand Down