Hi,
Might be a dumb question. Can I convert a multisig address to its initial structure? Something like:
const mparams = {
version: 1,
threshold: 2,
addrs: [
account1.addr,
account2.addr
],
};
I found the fromMultisigPreImgAddrs
in the js-algorand-sdk, but I’d like something akin to reversing this step. Couldn’t find any code online for this.
Context: I want to get the threshold / version / addresses from a multisig address.