Skip to main content
Alephium transactions go through three steps build, sign, submit. The node handles building and submitting. Signing happens client-side with the sender’s private key, typically through the Alephium SDK or wallet.

Get transaction status

Returns the current status of a transaction by its hash.
The type field can be Confirmed, MemPooled, or TxNotFound.

Get transaction details

Returns full transaction data by hash.

Build a transaction

Builds an unsigned transaction. The response contains the unsigned tx that needs to be signed before submitting.

Submit a signed transaction

Submits a transaction that has already been signed.

Decode an unsigned transaction

Decodes a raw unsigned transaction into a human-readable format.

Sweep address

Consolidates all UTXOs from an address into a single output. Useful for cleaning up fragmented balances.

Estimate gas

Returns the estimated gas for a transaction before building it.
When gasAmount is null the node estimates it automatically and includes the estimate in the response.

Parameters reference