Submit External Transaction
status: stable
Submits a transaction that was created and signed outside of cardano-wallet.
NOTE: Unlike the submitTransaction
endpoint, there are no
guarantees that a transaction accepted by this endpoint will
actually be included in the chain. It's up to the caller to
retry submission until the transaction is confirmed.
POST
/proxy/transactions
curl \
--request POST 'https://localhost:8090/v2/proxy/transactions' \
--header "Content-Type: application/octet-stream" \
--data-binary '@file'
Response examples (425)
{
"message": "string",
"code": "mempool_is_full"
}
Response examples (415)
{
"message": "string",
"code": "unsupported_media_type"
}
Response examples (406)
{
"message": "string",
"code": "not_acceptable"
}
Response examples (400)
{
"message": "string",
"code": "bad_request"
}
Response examples (202)
{
"id": "1423856bc91c49e928f6f30f4e8d665d53eb4ab6028bd0ac971809d514c92db1"
}