Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/guides/specifications/staking_transactions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@ sidebar_position: 1

import RemoteMD from '@site/src/components/RemoteMD';

export const rawUrl="https://raw.githubusercontent.com/babylonlabs-io/babylon/refs/heads/main/docs/transaction-impl-spec.md";
export const rawUrl="https://raw.githubusercontent.com/babylonlabs-io/babylon/refs/heads/release/v2.x/docs/transaction-impl-spec.md";

<RemoteMD
rawUrl={rawUrl}
hideRelease={false}
defaultRelease="next-v2.x"
releaseVersions={{
'next-v2.x': 'https://raw.githubusercontent.com/babylonlabs-io/babylon/refs/heads/release/v2.x/docs/transaction-impl-spec.md',
'next-v4.x': 'https://raw.githubusercontent.com/babylonlabs-io/babylon/refs/heads/release/v4.x/docs/transaction-impl-spec.md'
}}
/>

Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ If your stake has already been transitioned and is listed in the **Babylon Genes
/>

## Step 3: Wait for the Unbonding Period and Withdraw
After you initiate the unbonding process, you need to wait for a specific period to complete the unbonding. Specifically, you must wait for 301 Bitcoin blocks (~2 days) to be mined, which typically takes around one week. This waiting period ensures the stability and security of the network.

After you initiate the unbonding process, you need to wait for a specific period to complete the unbonding. Specifically, you must wait for 301 Bitcoin blocks (~2 days) to be mined. This waiting period ensures the stability and security of the network. Note that in rare cases, network conditions could cause slight delays.

Once the unbonding period has elapsed, return to the staking history list in your wallet. Locate the unbonded stake. For stakes that have completed the unbonding process, you will see a **Withdraw** button. Click on the **Withdraw** button to transfer the unbonded funds back to your wallet. After clicking **Withdraw**, confirm the transaction in your wallet, and the funds will be on their way to your wallet address.

:::note
Expand Down
11 changes: 11 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,17 @@ function create_doc_plugin({
const tailwindPlugin = require('./plugins/tailwind-plugin.cjs');
const docs_plugins = docs.map((doc) => create_doc_plugin(doc));
const plugins = [
[
'@docusaurus/plugin-client-redirects',
{
redirects: [
{
from: '/guides/baby_stakers/baby_staking_tools/', // the old URL
to: '/stakers/baby_stakers/', // the new URL
},
],
},
],
tailwindPlugin,
...docs_plugins,
...openapiPlugins
Expand Down
Loading