diamante-base
Version:
Low-level support library for the Diamante network.
116 lines (109 loc) • 4.92 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.decodeAddressToMuxedAccount = decodeAddressToMuxedAccount;
exports.encodeMuxedAccount = encodeMuxedAccount;
exports.encodeMuxedAccountToAddress = encodeMuxedAccountToAddress;
exports.extractBaseAddress = extractBaseAddress;
var _xdr = _interopRequireDefault(require("../xdr"));
var _strkey = require("../strkey");
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
/**
* Converts a Diamante address (in G... or M... form) to an `xdr.MuxedAccount`
* structure, using the ed25519 representation when possible.
*
* This supports full muxed accounts, where an `M...` address will resolve to
* both its underlying `G...` address and an integer ID.
*
* @param {string} address G... or M... address to encode into XDR
* @returns {xdr.MuxedAccount} a muxed account object for this address string
*/
function decodeAddressToMuxedAccount(address) {
if (_strkey.StrKey.isValidMed25519PublicKey(address)) {
return _decodeAddressFullyToMuxedAccount(address);
}
return _xdr["default"].MuxedAccount.keyTypeEd25519(_strkey.StrKey.decodeEd25519PublicKey(address));
}
/**
* Converts an xdr.MuxedAccount to its StrKey representation.
*
* This returns its "M..." string representation if there is a muxing ID within
* the object and returns the "G..." representation otherwise.
*
* @param {xdr.MuxedAccount} muxedAccount Raw account to stringify
* @returns {string} Stringified G... (corresponding to the underlying pubkey)
* or M... address (corresponding to both the key and the muxed ID)
*
* @see https://diamante.org/protocol/sep-23
*/
function encodeMuxedAccountToAddress(muxedAccount) {
if (muxedAccount["switch"]().value === _xdr["default"].CryptoKeyType.keyTypeMuxedEd25519().value) {
return _encodeMuxedAccountFullyToAddress(muxedAccount);
}
return _strkey.StrKey.encodeEd25519PublicKey(muxedAccount.ed25519());
}
/**
* Transform a Diamante address (G...) and an ID into its XDR representation.
*
* @param {string} address - a Diamante G... address
* @param {string} id - a Uint64 ID represented as a string
*
* @return {xdr.MuxedAccount} - XDR representation of the above muxed account
*/
function encodeMuxedAccount(address, id) {
if (!_strkey.StrKey.isValidEd25519PublicKey(address)) {
throw new Error('address should be a Diamante account ID (G...)');
}
if (typeof id !== 'string') {
throw new Error('id should be a string representing a number (uint64)');
}
return _xdr["default"].MuxedAccount.keyTypeMuxedEd25519(new _xdr["default"].MuxedAccountMed25519({
id: _xdr["default"].Uint64.fromString(id),
ed25519: _strkey.StrKey.decodeEd25519PublicKey(address)
}));
}
/**
* Extracts the underlying base (G...) address from an M-address.
* @param {string} address an account address (either M... or G...)
* @return {string} a Diamante public key address (G...)
*/
function extractBaseAddress(address) {
if (_strkey.StrKey.isValidEd25519PublicKey(address)) {
return address;
}
if (!_strkey.StrKey.isValidMed25519PublicKey(address)) {
throw new TypeError("expected muxed account (M...), got ".concat(address));
}
var muxedAccount = decodeAddressToMuxedAccount(address);
return _strkey.StrKey.encodeEd25519PublicKey(muxedAccount.med25519().ed25519());
}
// Decodes an "M..." account ID into its MuxedAccount object representation.
function _decodeAddressFullyToMuxedAccount(address) {
var rawBytes = _strkey.StrKey.decodeMed25519PublicKey(address);
// Decoding M... addresses cannot be done through a simple
// MuxedAccountMed25519.fromXDR() call, because the definition is:
//
// constructor(attributes: { id: Uint64; ed25519: Buffer });
//
// Note the ID is the first attribute. However, the ID comes *last* in the
// stringified (base32-encoded) address itself (it's the last 8-byte suffix).
// The `fromXDR()` method interprets bytes in order, so we need to parse out
// the raw binary into its requisite parts, i.e. use the MuxedAccountMed25519
// constructor directly.
//
// Refer to https://github.com/diamante/go/blob/master/xdr/muxed_account.go#L26
// for the Golang implementation of the M... parsing.
return _xdr["default"].MuxedAccount.keyTypeMuxedEd25519(new _xdr["default"].MuxedAccountMed25519({
id: _xdr["default"].Uint64.fromXDR(rawBytes.subarray(-8)),
ed25519: rawBytes.subarray(0, -8)
}));
}
// Converts an xdr.MuxedAccount into its *true* "M..." string representation.
function _encodeMuxedAccountFullyToAddress(muxedAccount) {
if (muxedAccount["switch"]() === _xdr["default"].CryptoKeyType.keyTypeEd25519()) {
return encodeMuxedAccountToAddress(muxedAccount);
}
var muxed = muxedAccount.med25519();
return _strkey.StrKey.encodeMed25519PublicKey(Buffer.concat([muxed.ed25519(), muxed.id().toXDR('raw')]));
}
;