Sign and Broadcast Transaction
To complete any staking or withdrawal operation on Hyperliquid, sign the unsigned transaction provided by the Staking API and broadcast it to the network.
1. Prepare the transaction
Retrieve an unsignedTransaction object from the relevant API endpoint, e.g., /staking/transfer, /staking/delegate, /staking/undelegate, /staking/withdraw.
2. Sign the transaction
Use the P2P Signer SDK to sign the unsigned data following protocol specific configuration.
3. Send the transaction
Broadcast the signed transaction to the Hyperliquid network by sending a POST request to /api/v1/hyperliquid/{network}/transaction/send.
Example request (for testnet network):
curl --request POST \
--url https://api-test.p2p.org/api/v1/hyperliquid/testnet/transaction/send \
--header 'accept: application/json' \
--header 'authorization: Bearer <token>' \
--header 'content-type: application/json' \
--data '
{
"signedTransaction": "string"
}
'signedTransaction— signed transaction in the hexadecimal format which needs to be broadcasted to the network.
Example response:
{
"result": {
"createdAt": "2025-10-10T05:28:10.434Z",
"network": "mainnet"
},
"error": {}
}createdAt— timestamp of the transaction in the ISO 8601 format.network— network name.
What's next?
- Staking API reference
Updated 8 days ago