Export

Export multisig address metadata

Given a multisig address whose preimage this wallet stores, returns the information used to generate the address, including public keys, threshold, and multisig version.

POSThttps://algo.nownodes.io/v1/multisig/export
Body
addressstring
wallet_handle_tokenstring
Response

Response to POST /v1/multisig/export

Body
errorboolean
messagestring
multisig_versioninteger (uint8)
pksarray of PublicKey (array of integer (uint8))
thresholdinteger (uint8)
Request
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();
Response
{
  "error": false,
  "message": "text",
  "pks": [
    []
  ]
}

Last updated