aboutsummaryrefslogtreecommitdiff
path: root/src/external/stellar-freighter-api/@stellar/freighter-api/src/signTransaction.d.ts
blob: 1c38f36421e83eab6f2d32e6bc744004faf9c497 (plain)
1
2
3
4
5
6
7
8
9
10
import { FreighterApiError } from "@shared/api/types";
export declare const signTransaction: (transactionXdr: string, opts?: {
    networkPassphrase?: string;
    address?: string;
}) => Promise<{
    signedTxXdr: string;
    signerAddress: string;
} & {
    error?: FreighterApiError;
}>;