Open JakeUrban opened 3 years ago
SEP-10 now supports authenticating users of shared, pooled, or omnibus Stellar accounts.
These users are either represented using a muxed account (an M... address) or a Stellar account (G...) accompanied by an ID memo.
M...
G...
buildChallengeTx()
memo
readChallengeTx()
The JS and Python SDKs have implemented this functionality, please use them as references:
https://github.com/stellar/stellar-protocol/issues/1056
SEP-10 Muxed Account & Memo Support
SEP-10 now supports authenticating users of shared, pooled, or omnibus Stellar accounts.
These users are either represented using a muxed account (an
M...
address) or a Stellar account (G...
) accompanied by an ID memo.Changes
buildChallengeTx()
or the equivalent functionmemo
parameter that accepts a 64-bit integer representation and attach it to the challenge transaction returnedreadChallengeTx()
or the equivalent functionmemo
to the return value if present in the challenge transactionImplementations
The JS and Python SDKs have implemented this functionality, please use them as references: