Classes
Methods
# accountId() → {string}
the M-address representing this account's (G-address, ID)
string
# baseAccount() → {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.
void
# sequenceNumber() → {string}
Accesses the underlying account's sequence number.
strigified sequence number for the underlying account
string
# toXDRObject() → {xdr.MuxedAccount}
the XDR object representing this muxed account's G-address and uint64 ID
xdr.MuxedAccount
# static fromAddress(mAddress, sequenceNum) → {MuxedAccount}
Parses an M-address into a MuxedAccount object.
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
|