@creit.tech/stellar-wallets-kit
Version:
A kit to handle all Stellar Wallets at once
36 lines • 998 B
TypeScript
import { ModuleInterface, ModuleType } from '../types';
export declare const LOBSTR_ID = "lobstr";
export declare class LobstrModule implements ModuleInterface {
moduleType: ModuleType;
productId: string;
productName: string;
productUrl: string;
productIcon: string;
isAvailable(): Promise<boolean>;
getAddress(): Promise<{
address: string;
}>;
signTransaction(xdr: string, opts?: {
networkPassphrase?: string;
address?: string;
path?: string;
submit?: boolean;
submitUrl?: string;
}): Promise<{
signedTxXdr: string;
signerAddress?: string;
}>;
signAuthEntry(): Promise<{
signedAuthEntry: string;
signerAddress?: string;
}>;
signMessage(): Promise<{
signedMessage: string;
signerAddress?: string;
}>;
getNetwork(): Promise<{
network: string;
networkPassphrase: string;
}>;
}
//# sourceMappingURL=lobstr.module.d.ts.map