UNPKG

@creit.tech/stellar-wallets-kit

Version:
38 lines 1.07 kB
import { type ModuleInterface, ModuleType } from "../../types/mod.js"; export declare const XBULL_ID: string; export declare class xBullModule 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; }): Promise<{ signedTxXdr: string; signerAddress?: string; }>; signAuthEntry(): Promise<{ signedAuthEntry: string; signerAddress?: string; }>; signMessage(message: string, opts?: { networkPassphrase?: string; address?: string; path?: string; }): Promise<{ signedMessage: string; signerAddress?: string; }>; getNetwork(): Promise<{ network: string; networkPassphrase: string; }>; } //# sourceMappingURL=xbull.module.d.ts.map