Package-level declarations

Types

Link copied to clipboard
abstract class Account
Link copied to clipboard
class Ed25519Account(val privateKey: Ed25519PrivateKey, val address: AccountAddressInput? = null) : Account

Signer implementation for the Ed25519 authentication scheme. This extends an Ed25519Account by adding signing capabilities through an Ed25519PrivateKey.

Link copied to clipboard
class SingleKeyAccount(val privateKey: PrivateKey, val address: AccountAddressInput? = null) : Account

Signer implementation for the SingleKey authentication scheme. This extends a SingleKeyAccount by adding signing capabilities through a valid private key. Currently, the only supported signature schemes are Ed25519 and Secp256k1.