Skip to main content

Getting Started

info

This guide is available on three different programming languages: Typescript, Kotlin and Flutter (Dart). You can change the shown version on each page via the buttons above.

Installation

First, you need to add the SDK dependency to your project.

yarn add @stellar/typescript-wallet-sdk

Working with the SDK

Let's start with the main class that provides all SDK functionality. It's advised to have a singleton wallet object shared across the application. Creating a wallet with a default configuration connected to Stellar's Testnet is simple:

let wallet = walletSdk.Wallet.TestNet();

The wallet instance can be further configured. For example, to connect to the public network:

let wallet = new Wallet({
stellarConfiguration: StellarConfiguration.MainNet(),
});

Configuring the Client

The Typescript wallet SDK uses the axios client for all network requests. You can read more about how to configure the axios client here.

For example, we can configure our axios client to be globally configured with a timeout:

const customClient: AxiosInstance = axios.create({
timeout: 1000,
});
let appConfig = new ApplicationConfiguration(DefaultSigner, customClient);
let wal = new Wallet({
stellarConfiguration: StellarConfiguration.TestNet(),
applicationConfiguration: appConfig,
});

You can find more configure options here.

Stellar Basics

The wallet SDK provides some extra functionality on top of the existing Horizon SDK. For interaction with the Stellar network, the wallet SDK covers only the basics used in a typical wallet flow. For more advanced use cases, the underlying Horizon SDK should be used instead.

To interact with the Horizon instance configured in the previous steps, simply do:

const stellar = wallet.stellar();

This example will create a Stellar class that manages the connection to Horizon service.

note

Default configuration connects to the public Stellar Horizon instance. You can change this behavior as described above.

You can read more about working with the Stellar network in the respective section.

Anchor Basics

Primary use of the SDK is to provide an easy way to connect to anchors via sets of protocols known as SEPs. Let's look into connecting to the Stellar test anchor:

let anchor = wallet.anchor({ homeDomain: "testanchor.stellar.org" });
info

If the anchor home domain uses http, then you need to set the allowHttp flag when creating the anchor:

let anchor = wallet.anchor({ homeDomain: "example.com", allowHttp: true });

This can only be used on Testnet.

And the most basic interaction of fetching a SEP-1: Stellar Info File:

let resp = await anchor.sep1();

The anchor class also supports SEP-10: Stellar Authentication and SEP-24: Hosted Deposit and Withdrawal features.