Convex

Convex

FieldValue
NamesignAndSubmit
TitleSign and Submit Transaction
DescriptionSign and submit a prepared transaction. Use after 'prepare'. Sends seed over network — HTTPS only.
Input Schema
{
  "type": "object",
  "required": ["hash",
               "seed"],
  "properties": {
                  "seed": {
                            "type": "string",
                            "description": "Ed25519 seed (64 hex chars) used to sign the transaction. SECURITY: Only submit this over HTTPS to a trusted peer!"
                          },
                  "hash": {
                            "type": "string",
                            "description": "Transaction hash returned by the 'prepare' tool (hex string)"
                          }
                }
}
Output Schema
{
  "type": "object",
  "properties": {
                  "errorCode": {
                                 "description": "CVM error code if the transaction failed"
                               },
                  "value": {
                             "description": "Resulting CVM value from transaction execution"
                           },
                  "info": {
                            "description": "Additional execution metadata including juice used, fees, and transaction hash"
                          }
                }
}