Default
Submits a transaction to the Cardano blockchain with a cbor and a signature witness
Body
cborstringRequiredExample:
Original CBOR returned from other endpoints
84a400818258200123456789abcdef...
witnessstringRequiredExample:
Signature witness returned from signing transaction
a10081825820abcdef0123456789...
Responses
200
Transaction submitted successfully
application/json
400
Bad Request
application/json
405
Method Not Allowed
application/json
500
Internal Server Error
application/json
post
POST /api/transaction/submit HTTP/1.1
Host: app.strikefinance.org
Content-Type: application/json
Accept: */*
Content-Length: 88
{
"cbor": "84a400818258200123456789abcdef...",
"witness": "a10081825820abcdef0123456789..."
}
{
"txHash": "a1b2c3d4e5f6789012345678901234567890123456789012345678901234567890"
}