Get MultiSig xpub for a seed.
POST/multisig-pubkey
Get MultiSig xpub for a seed.
Request
- application/json
Body
required
seedKey stringrequired
Key of the corresponding seed in the config file to create the wallet.
passphrase string
Passphrase of the wallet.
Responses
- 200
Get MultiSig xpubkey
- application/json
- Schema
- success
- seed-not-found
Schema
any
Success
{
"success": true,
"xpubkey": "xpub...."
}
Seed key sent does not exist in config file.
{
"success": false,
"message": "Seed not found."
}
Loading...