MuxedAccount

MuxedAccount

Represents a muxed account for transactions and operations.

A muxed (or multiplexed) account (defined rigorously in CAP-27 and briefly in SEP-23) is one that resolves a single Stellar `G...`` account to many different underlying IDs.

For example, you may have a single Stellar address for accounting purposes: GA7QYNF7SOWQ3GLR2BGMZEHXAVIRZA4KVWLTJJFC7MGXUA74P7UJVSGZ

Yet would like to use it for 4 different family members: 1: MA7QYNF7SOWQ3GLR2BGMZEHXAVIRZA4KVWLTJJFC7MGXUA74P7UJUAAAAAAAAAAAAGZFQ 2: MA7QYNF7SOWQ3GLR2BGMZEHXAVIRZA4KVWLTJJFC7MGXUA74P7UJUAAAAAAAAAAAALIWQ 3: MA7QYNF7SOWQ3GLR2BGMZEHXAVIRZA4KVWLTJJFC7MGXUA74P7UJUAAAAAAAAAAAAPYHQ 4: MA7QYNF7SOWQ3GLR2BGMZEHXAVIRZA4KVWLTJJFC7MGXUA74P7UJUAAAAAAAAAAAAQLQQ

This object makes it easy to create muxed accounts from regular accounts, duplicate them, get/set the underlying IDs, etc. without mucking around with the raw XDR.

Because muxed accounts are purely an off-chain convention, they all share the sequence number tied to their underlying G... account. Thus, this object requires an Account instance to be passed in, so that muxed instances of an account can collectively modify the sequence number whenever a muxed account is used as the source of a @{link Transaction} with TransactionBuilder.

Constructor

new MuxedAccount(account, id)

Source:
Parameters:
Name Type Description
account Account

the @{link Account} instance representing the underlying G... address

id string

a stringified uint64 value that represents the ID of the muxed account

Classes

MuxedAccount

Methods

accountId() → {string}

Source:
Returns:
Type:
string

the M-address representing this account's (G-address, ID)

baseAccount() → {Account}

Source:
Returns:
Type:
Account

the underlying account object shared among all muxed accounts with this Stellar address

incrementSequenceNumber() → {void}

Increments the underlying account's sequence number by one.

Source:
Returns:
Type:
void

sequenceNumber() → {string}

Accesses the underlying account's sequence number.

Source:
Returns:
Type:
string

strigified sequence number for the underlying account

toXDRObject() → {xdr.MuxedAccount}

Source:
Returns:
Type:
xdr.MuxedAccount

the XDR object representing this muxed account's G-address and uint64 ID

(static) fromAddress(mAddress, sequenceNum) → {MuxedAccount}

Parses an M-address into a MuxedAccount object.

Source:
Parameters:
Name Type Description
mAddress string

an M-address to transform

sequenceNum string

the sequence number of the underlying Account, to use for the underlying base account (@link MuxedAccount.baseAccount). If you're using the SDK, you can use server.loadAccount to fetch this if you don't know it.

Returns:
Type:
MuxedAccount