UNPKG

@stellar/stellar-sdk

Version:

A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.

15 lines (14 loc) 556 B
import xdr from "../xdr.js"; import { EndSponsoringFutureReservesResult, EndSponsoringFutureReservesOpts } from "./types.js"; /** * Create an "end sponsoring future reserves" operation. * @param opts - Options object * - `source`: The source account for the operation. Defaults to the transaction's source account. * * @example * ```ts * const op = Operation.endSponsoringFutureReserves(); * ``` * */ export declare function endSponsoringFutureReserves(opts?: EndSponsoringFutureReservesOpts): xdr.Operation<EndSponsoringFutureReservesResult>;