Transaction

Transaction submission and retrieval

Submit transaction (POST)

post
/api/tx/submit

Submit a signed transaction to the network

Body
string · binaryOptional

Packed transaction (raw bytes or Base58 encoded)

Responses
chevron-right
200

Submission result

application/json
post
/api/tx/submit
200

Submission result

Submit transaction (GET)

get
/api/tx/submit/{tx_packed}

Submit a signed transaction using GET method

Path parameters
tx_packedstringRequired

Packed transaction (Base58 encoded)

Responses
chevron-right
200

Submission result

application/json
Responseobject
get
/api/tx/submit/{tx_packed}
200

Submission result

Submit and wait for confirmation (POST)

post
/api/tx/submit_and_wait

Submit a transaction and wait for it to be included in a block

Body
string · binaryOptional

Packed transaction (raw bytes or Base58 encoded)

Responses
chevron-right
200

Submission and confirmation result

application/json
Responseobject
post
/api/tx/submit_and_wait
200

Submission and confirmation result

Submit and wait for confirmation (GET)

get
/api/tx/submit_and_wait/{tx_packed}

Submit a transaction and wait for confirmation using GET method

Path parameters
tx_packedstringRequired

Packed transaction (Base58 encoded)

Responses
chevron-right
200

Submission and confirmation result

application/json
Responseobject
get
/api/tx/submit_and_wait/{tx_packed}
200

Submission and confirmation result

Last updated