You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should broadcast the signed transaction. Result code can be evaluated synchronously or returned asynchronously in the [GET] /api/transactions/broadcast/* response with error code.
Request
{// Operation ID“operationId”: “guid”,// The signed transaction returned by the// [POST] /api/sign“signedTransaction”: “string”}
Response
{// Error code.// Can be empty.// Should be non empty if an error that match one of the// listed code is occured. For other errors use HTTP// status codes.// enum values:// - amountIsTooSmall : amount is too small to execute// transaction// - notEnoughBalance : transaction can’t be executed due// to balance insufficiency on the source address."errorCode": "enum",}
Errors:
* `409 Conflict` - transaction with specified operationId and signedTransaction
has already been broadcasted.
The text was updated successfully, but these errors were encountered:
[POST] /api/transactions/broadcast
Should broadcast the signed transaction. Result code can be evaluated synchronously or returned asynchronously in the
[GET] /api/transactions/broadcast/*
response with error code.Request
Response
Errors:
The text was updated successfully, but these errors were encountered: