Package org.stellar.walletsdk.horizon

Types

Link copied to clipboard
interface AccountKeyPair

Stellar account's key pair. It can be either PublicKeyPair obtained from public key, or SigningKeyPair, obtained from private key. Existing account in string format can be converted to public key pair via calling toPublicKeyPair helper function.

Link copied to clipboard
class AccountService

Key store for Stellar accounts

Link copied to clipboard
value class PublicKeyPair(keyPair: KeyPair) : AccountKeyPair
Link copied to clipboard
value class SigningKeyPair(keyPair: KeyPair) : AccountKeyPair
Link copied to clipboard
class Stellar

Functions

Link copied to clipboard
fun <T : AbstractTransaction> T.sign(keyPair: SigningKeyPair): T
Link copied to clipboard
fun String.toPublicKeyPair(): PublicKeyPair