@stellar/stellar-sdk
Version:
A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.
12 lines (11 loc) • 437 B
TypeScript
import xdr from "../xdr.js";
import { AccountMergeOpts, AccountMergeResult } from "./types.js";
/**
* Transfers native balance to destination account.
*
* @param opts - options object
* - `destination`: destination to merge the source account into
* - `source`: operation source account (defaults to
* transaction source)
*/
export declare function accountMerge(opts: AccountMergeOpts): xdr.Operation<AccountMergeResult>;