@ledgerhq/coin-stellar
Version:
Ledger Stellar Coin integration
18 lines • 553 B
TypeScript
import { Transaction as StellarSdkTransaction } from "@stellar/stellar-sdk";
export declare function craftTransaction(account: {
address: string;
}, transaction: {
type: string;
recipient: string;
amount: bigint;
fee: bigint;
assetCode?: string | undefined;
assetIssuer?: string | undefined;
memoType?: string | null | undefined;
memoValue?: string | null | undefined;
}): Promise<{
transaction: StellarSdkTransaction;
xdr: string;
signatureBase: string;
}>;
//# sourceMappingURL=craftTransaction.d.ts.map