Operations
Retrieving operations for an address.
Use the following endpoint to retrieve all operations for a user.
Endpoint
GET
/operations/:address
Request Parameters
address
String
Yes
address associated with an operation
Example Request
The following request returns all operations associated with a Hyperliquid user a6f1E...0132
200: OK Successful Response
200: Error Response
Operation Structure
Unit Operations include both deposits and withdrawals, and are returned as follows:
Response Fields
opCreatedAt: The time at which the Unit protocol created a deposit/withdrawal operation corresponding to a given source transaction. The response is sorted by this timestamp in descending order.
This field will reflect the server's current timestamp when the corresponding operation has not yet been created (
operationId
will be empty). This may be the case for newly discovered & unconfirmed transactions, as Unit operations are created after a certain number of source confirmations:Bitcoin: 1 confirmation
Ethereum: 8 confirmations
Hyperliquid:1 confirmation
sourceTxConfirmations: The number of block confirmations of the source transaction. If this value is omitted from the response, the source transaction has reached finalization.
destinationTxConfirmations: The number of block confirmations of the destination transaction, applicable to operations in states
QueuedForWithdraw
andWaitForDstTxFinalization
A value ≥ 1 signals that the recipient has received the funds on the destination network.broadcastAt: The server-side timestamp of when the destination transaction was broadcasted, applicable to operations in states
BroadcastTx
andWaitForDstTxFinalization
.addresses: The Unit-generated
protocolAddresses
associated with the destination address given in/operations/:address
sourceCoinType: this is the SLIP-44 coin-type associated with the chain that the
protocolAddress
is on (Ethereum, Bitcoin).address: this is the
protocolAddress
on the source-chain.
Additional Notes
Unit does not collect revenue from deposits / withdrawals. All "fees" associated with an operation are those necessaryy to process the source and destination transactions on their respective networks.
destinationFeeAmount
is the fee paid by the guardians to process the destination transaction on the destination chain (Hyperliquid for deposits, Bitcoin for withdrawals).sweepFeeAmount
is the fee paid by the guardians to "sweep" funds on the source chain for the fulfillment of future operations by the Unit treasury. Because this fee is deducted from the operation amount prior to sweep execution, the amount deducted by Unit is an estimate. This estimate may differ slightly from the actual fee later paid by guardians to the source chain.
Unit transaction hashes are formatted as follows
For Bitcoin transactions
<txid>:<vout>
For Ethereum transactions `
<tx-hash>:<trace-id>
For Hyperliquid transactions
<sender_address>:<nonce>
Any operation that has yet to reach 2 bitcoin confirmations (whether discovered in a block or not) will be returned with the
srcTxDiscovered
state.
Operation States
An operation can be in one of the following states
The permutation of states differs slightly between deposits and withdrawals, as explained in depth in their lifecycles.
Last updated