Staking via CLI Tools
This guide provides a simplified step by step guide of how to stake, unbond, and withdraw BTC using the CLI tools.
BTC-Staker
(BTC-Staker)[https://github.com/babylonlabs-io/btc-staker] is a tool that allows you to participate in native Bitcoin staking. It also allows operators to do it programmatically. It consists of two parts:
stakerd
: The background program that manages connections to the Bitcoin and Babylon networks.stakercli
: The command-line tool you use to interact withstakerd
.
Prerequisites
- Go: Make sure you have Go version 1.21 or later installed.
Step 1: Setting Up Your Bitcoin Node
- Download Bitcoin Core: Download and extract the Bitcoin Core binaries.
- Configure Bitcoin: Create a
bitcoind.service
file and configure it with your RPC username, password, and other settings. Make sure to enable the creation of a legacy wallet. - Start Bitcoin Node: Start the Bitcoin node using
systemctl
. - Create a Legacy Wallet: Create a legacy wallet using the
createwallet
command. Make sure to set a wallet name and passphrase. - Load the Wallet: Load the wallet using the
loadwallet
command. - Generate a New Address: Generate a new Bitcoin address for your wallet
using the
getnewaddress
command. - Get Testnet BTC: Request testnet BTC from the Discord #faucet-signet-btc channel and send it to the address you have generated.
Step 2: Installing BTC-Staker
-
Clone the Repository: Clone the BTC-Staker repository from GitHub:
git clone https://github.com/babylonlabs-io/btc-staker.git
cd btc-staker -
Checkout a Release: Choose a specific version from the official releases page and check it out:
git checkout v0.15.4
-
Build and Install: Build and install the
stakerd
andstakercli
binaries:make install
-
Create a Babylon Keyring: Follow instructions to create baby key-ring, then go to L2Scan Babylon Testnet Faucet to request funds.
Step 3: Configuring BTC-Staker
-
Dump Default Configuration: Initialize the home directory for the Staker Daemon and dump the default configuration file:
stakercli admin dump-config --config-file-dir /path/to/stakerd-home/
-
Edit
stakerd.conf
: Edit thestakerd.conf
file located in your stakerd home directory. Pay attention to the following sections:- [babylon]: Configure your Babylon Genesis Chain ID, RPC address, GRPC address, and keyring settings.
- [chain]: Set the BTC network to
signet
ormainnet
. - [btcnodebackend]: Set the node type to
bitcoind
and wallet type tobitcoind
. - [walletconfig]: Set the wallet name and passphrase to match what you configured in your Bitcoin node.
- [walletrpcconfig]: Configure the RPC connection details for your Bitcoin wallet.
- [bitcoind]: Configure the RPC connection details for your Bitcoin node.
Step 4: Running BTC-Staker
-
Start the Daemon: Start the
stakerd
daemon:stakerd --rpclisten 'localhost:15812'
Step 5: Staking Operations
1. Stake Bitcoin
-
List Finality Providers: Find the BTC public key of the Finality Provider you want to stake to:
stakercli daemon babylon-finality-providers
-
List Outputs: Find the BTC address with enough balance:
stakercli daemon list-outputs
-
Stake: Stake your Bitcoin:
stakercli daemon stake \
--staker-address <your_btc_address> \
--staking-amount <amount_in_satoshis> \
--finality-providers-pks <finality_provider_btc_pubkey> \
--staking-time <lock_time_in_blocks>
2. Unbond Staked Funds
-
Unbond: Initiate the unbonding process:
stakercli daemon unbond \
--staking-transaction-hash <staking_tx_hash>
3. Withdraw Staked Funds
-
Withdraw: After the timelock expires, withdraw your funds:
stakercli daemon unstake \
--staking-transaction-hash <staking_tx_hash>
Important Notes:
- Make sure your Bitcoin node is running on the same network as the Babylon node (Signet for the testnet, Mainnet for the Babylon Genesis Mainnet).
- Ensure you are using a legacy (non-descriptor) wallet.
- You must wait for the timelock to expire before you can withdraw your funds.