| Field | Value |
|---|---|
| Name | signingTransact |
| Title | Transact via Signing Service |
| Description | Execute a Convex transaction using a stored signing key. Private key never leaves the server. Authenticated. |
Input Schema
{
"type": "object",
"required": ["source",
"address",
"passphrase"],
"properties": {
"source": {
"type": "string",
"description": "Convex Lisp source code to execute, e.g. '(transfer #13 1000000000)'"
},
"address": {
"type": "string",
"description": "Origin account address (e.g. '#13'). Must have a public key matching a stored signing key."
},
"passphrase": {
"type": "string",
"description": "Passphrase to decrypt the signing key"
}
}
}Output Schema
{
"type": "object",
"properties": {
"errorCode": {
"description": "CVM error code if the transaction failed"
},
"value": {
"description": "Resulting CVM value from execution"
},
"info": {
"description": "Execution metadata including juice used, fees, and transaction hash"
}
}
}