Default

Submit Transaction

post

Submits a transaction to the Cardano blockchain with a cbor and a signature witness

Body
cborstringRequired

Original CBOR returned from other endpoints

Example: 84a400818258200123456789abcdef...
witnessstringRequired

Signature witness returned from signing transaction

Example: a10081825820abcdef0123456789...
Responses
200

Transaction submitted successfully

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"
}