Last updated 7 months ago
Given a multisig address whose preimage this wallet stores, returns the information used to generate the address, including public keys, threshold, and multisig version.
Response to POST /v1/multisig/export
POST /v1/multisig/export
const response = await fetch('https://algo.nownodes.io/v1/multisig/export', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "error": false, "message": "text", "multisig_version": 0, "pks": [ [ 0 ] ], "threshold": 0 }