@creit.tech/stellar-wallets-kit
Version:
A kit to handle all Stellar Wallets at once
39 lines • 1.07 kB
TypeScript
import { type ModuleInterface, ModuleType } from "../../types/mod.js";
export declare const RABET_ID: string;
export declare class RabetModule implements ModuleInterface {
moduleType: ModuleType;
productId: string;
productName: string;
productUrl: string;
productIcon: string;
runChecks(): Promise<void>;
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(): Promise<{
signedMessage: string;
signerAddress?: string;
}>;
getNetwork(): Promise<{
network: string;
networkPassphrase: string;
}>;
}
export declare enum RabetNetwork {
PUBLIC = "mainnet",
TESTNET = "testnet"
}
//# sourceMappingURL=rabet.module.d.ts.map