UNPKG

@stellar/stellar-sdk

Version:

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

10 lines (9 loc) 365 B
import xdr from "../xdr.js"; import { BumpSequenceResult, BumpSequenceOpts } from "./types.js"; /** * This operation bumps sequence number. * @param opts - Options object * - `bumpTo`: Sequence number to bump to. * - `source`: The optional source account. */ export declare function bumpSequence(opts: BumpSequenceOpts): xdr.Operation<BumpSequenceResult>;