UNPKG

@coolwallet/xlm

Version:
22 lines (21 loc) 567 B
import { Transport } from '@coolwallet/core'; export { Transport }; export declare type signTxType = { transport: Transport; appPrivateKey: string; appId: string; transaction: object; protocol: PROTOCOL | undefined; confirmCB?(): void; authorizedCB?(): void; }; export declare type versionByteNames = 'ed25519PublicKey' | 'ed25519SecretSeed' | 'preAuthTx' | 'sha256Hash'; export declare enum COIN_SPECIES { XLM = "XLM", KAU = "KAU", KAG = "KAG" } export declare enum PROTOCOL { BIP44 = "BIP44", SLIP0010 = "SLIP0010" }