Quicksign: KIP-0015
Additional quicksign endpoint to the kadena-signing-api that allows wallets to show the user multiple transactions at once for signature approval.
Last updated
//{
"sigs": [Signer],
"cmd": string
}{
"pubKey": string,
"sig": string //optional; its omission represents a signature that has not yet been acquired
}{
status: 'success',
quickSignData: [
{
commandSigData: {
cmd: '{{ cmdString }}',
sigs: [
{
pubKey: 'publicKey',
sig: '{{ sig }}',
},
{
pubKey: 'other publicKey',
sig: null,
},
],
},
outcome: {
hash: '{{ hashString }}',
result: 'success',
},
}
]
}{
"status": "fail",
"error": "QuickSign fail: wallet public key not found"
}