You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[POST] /api/sign
Should sign given transaction with the given private key Body:
{
// Private keys, which were returned by the
// [POST] /api/wallets. Multiple keys can be used
// for transactions with multiple inputs
"privateKeys": [
"string" ],
// The transaction context in the blockchain
// specific format
// [POST] /api/transactions or [PUT] /api/transactions
"transactionContext": "string"
}
Response:
{
// Signed transaction, which will be used to broadcast
// the transaction
// [PUT] /api/transactions/broadcast
“signedTransaction”: “string”
}
Implement [POST] api/sign
Python implementation
The text was updated successfully, but these errors were encountered: