@okxweb3/coin-stellar
Version:
@ok/coin-stellar is a Stellar SDK for building Web3 wallets and applications. It supports Stellar and PI blockchains, enabling private key management, address generation, transaction signing, trustline creation, and asset transfers
18 lines (17 loc) • 527 B
TypeScript
export class MuxedAccount {
static fromAddress(mAddress: string, sequenceNum: string): MuxedAccount;
constructor(baseAccount: any, id: any);
account: any;
_muxedXdr: xdr.MuxedAccount;
_mAddress: string;
_id: any;
baseAccount(): Account;
accountId(): string;
id(): any;
setId(id: any): MuxedAccount;
sequenceNumber(): string;
incrementSequenceNumber(): void;
toXDRObject(): xdr.MuxedAccount;
equals(otherMuxedAccount: any): boolean;
}
import { Account } from "./account";