Babylon BTC Staking using the Adamik API
Babylon allows Bitcoin holders to participate in staking, earning rewards while maintaining their BTC holdings. This guide walks through the process of staking Bitcoin using the Adamik API, including transaction creation, signing, and broadcasting.
Staking Process
📌 Important Notes
- Babylon offers two registration methods: pre-stake and post-stake. This guide implements the more user-friendly pre-stake registration flow. See Bitcoin Stake Registration Methods for details.
- Babylon is still early and currently only available on Bitcoin Signet and Babylon Testnet networks. When Babylon launches on Bitcoin mainnet, simply replace
"bitcoin-signet"
with"bitcoin"
and"babylon-testnet"
with"babylon"
in API calls. - The example data shown is for demonstration purposes. While encoded payloads are valid for signing, they may not match the provided examples exactly.
Overview
1. Collect Required Information
Retrieve Bitcoin Validators
First, fetch the list of available Bitcoin “finality providers” (validators):
User Inputs
You’ll need to collect:
- From UI: Chosen validator and staking amount
- From user data: Bitcoin address and Bitcoin public key (NOT the xpub)
2. Create Bitcoin Staking Transaction
Generate the Bitcoin transaction payloads for signing:
3. Sign Bitcoin Transactions
Sign the following payloads with a compatible Bitcoin signer:
- Staking PSBT: The main transaction for staking
- Slashing PSBT: Required for the slashing mechanism
- Unbonding Slashing PSBT: For slashing during unbonding
- Babylon Address: Sign with Bitcoin signer:
[ECDSA or BIP322](hex(bech32Address))
ℹ️ The unbonding PSBT does not need to be signed at this stage, but must be included in the registration transaction, see below.
4. Register with Babylon Blockchain
Create the Babylon registration transaction:
ℹ️ The returned encoded transaction is in Cosmos’ protobuf format, serialized as hex.
5. Sign Babylon Transaction
Sign the encoded Babylon transaction using a Babylon-compatible wallet.
6. Broadcast Babylon Registration Transaction
7. Wait for Confirmation
Monitor the transaction status until it’s confirmed:
⚠️ Important: Wait for
transaction.parsed.state
to beconfirmed
before proceeding to the next step.
8. Broadcast Bitcoin Staking Transaction
Once the Babylon registration is confirmed, broadcast the signed Bitcoin staking transaction:
Managing Staking Positions
View Bitcoin Staking Positions
Retrieve all staking positions for a Bitcoin public key:
Coming Soon Features
Unbonding
The unbonding process for Babylon staking will be documented soon.
Withdraw
The withdrawal process for Babylon staking will be documented soon.
Claim Rewards
The reward claiming process for Babylon staking will be documented soon.
Was this page helpful?