Skip to content

Commit 7bfcc4a

Browse files
committed
removed global_config.mdx
1 parent 281b4f9 commit 7bfcc4a

File tree

8 files changed

+110
-166
lines changed

8 files changed

+110
-166
lines changed

docs/developers/staking_backend/services/global_config.mdx

Lines changed: 0 additions & 9 deletions
This file was deleted.

docs/developers/staking_backend/staking_backend.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ properly set up:
4949
- **RabbitMQ** - [Setup Guide](https://www.rabbitmq.com/download.html)
5050
_Handles message queuing between system components_
5151

52-
- **Global Configuration** - [Setup Guide](./services/global_config)
52+
- **Global Configuration** - Setup guide will be available soon.
5353
_Defines system-wide parameters for all services_
5454

5555
{/* Database Migration (Optional) - Clone Phase-1 database snapshot, apply snapshot to new MongoDB clusters.

docs/operators/babylon_validators/babylon_validators.mdx

Lines changed: 1 addition & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,12 @@ Initialize your validator key with `babylond init` will create the BABY key you
4949
need for consensus participation and a BLS key used in checkpointing and timestamping
5050
to Bitcoin blockchain.
5151

52-
See [3. Key Management](/operators/babylon_validators/installation_guide/#3-key-management)
53-
for more details.
54-
5552
### 3. Create a Validator
5653
Instead of using `staking` module of Cosmos SDK, Babylon Genesis uses `checkpointing`
5754
module for validator registration and management.
5855

5956
To create a validator, use `babylond tx checkpointing create-validator` command.
6057

61-
See [4. Create a Validator](/operators/babylon_validators/installation_guide/#4-create-a-validator)
62-
for more details.
63-
6458
### 4. Verify Your Validator
6559

6660
To verify your validator, first get your validator's operator address with
@@ -71,38 +65,6 @@ registration request is in the queue.
7165
Initially, your status will be `0 - BOND_STATUS_UNBONDED`. When active, your
7266
status will change to `3 - BOND_STATUS_BONDED`.
7367

74-
See [5. Verify Your Validator](/operators/babylon_validators/installation_guide/#51-verifying-validator-setup)
75-
for more details and rules.
76-
7768
## Communication
7869

79-
Join the `#finality-providers` channel in the `- tech-zone -` section of our
80-
[Discord server](https://discord.com/invite/babylonglobal) for all communications.
81-
Testnet announcements will also be made there.
82-
83-
## CosmWasm Governance Proposals
84-
85-
The Babylon Genesis chain will initially use permissioned CosmWasm. After public
86-
launch on 10 April 2025, dApp developers are expected to submit governance proposals
87-
for either (a) deploying CosmWasm smart contracts or (b) whitelisting addresses to
88-
deploy such contracts. These proposals can be expedited (24-hour voting) or standard
89-
(72-hour voting). **It is important that all validators with voting power actively
90-
monitor on-chain proposals, review them (**[Governance guidelines](https://docs.babylonlabs.io/guides/governance/))**
91-
, and participate in governance.**
92-
93-
## Version Information
94-
95-
- **Babylon Genesis node**: Version [v1.0.1](https://github.com/babylonlabs-io/babylon/releases/tag/v1.0.1)([Releases page](https://github.com/babylonlabs-io/babylon/releases))
96-
97-
## Faucets
98-
99-
There are two ways to get tBABY for Phase 2 Testnet:
100-
101-
1. [Babylon Labs Discord Faucet](https://discord.com/channels/1266159481218457600/1266159481218457600)
102-
2. [Xangle Faucet](https://babylon-explorer.xangle.io/testnet/faucet) (0.01 tBABY each request)
103-
104-
## Documentation
105-
106-
- [Node Setup guide](https://github.com/babylonlabs-io/networks/tree/main/bbn-1/babylon-node)
107-
- [Validator Setup Guide](https://github.com/babylonlabs-io/networks/blob/main/bbn-1/babylon-validators/README.md)
108-
- [Governance guidelines](https://docs.babylonlabs.io/guides/governance/)
70+
Join the `#finality-providers`

docs/stakers/baby_stakers/staking_mechanism.mdx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,7 @@ system will conduct the following actions:
8989

9090
To monitor pending staking transactions that will be processed at epoch end:
9191

92-
- Use [Babylon Genesis Explorers](/developers/babylon_genesis_chain/#chain-explorer) that support epochised staking, or
93-
94-
- Use [Babylon Node](/operators/babylon_node/installation_guide/) or [RPC Endpoints](/developers/babylon_genesis_chain/#node-information) to query the `LastEpochMsgs` endpoint in the
92+
- Use [Babylon Node](/operators/babylon_node/installation_guide/) or RPC Endpoints to query the `LastEpochMsgs` endpoint in the
9593
`x/epoching` module.
9694

9795
- Check with compatible wallet interfaces.

static/remote-docs/guides/architecture/babylon_genesis_modules/btc_staking.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,6 @@ <h3>MsgSelectiveSlashingEvidence</h3>
757757
</code></pre>
758758
<p>Upon <code>MsgSelectiveSlashingEvidence</code>, a Babylon node will execute as follows:</p>
759759
<ol>
760-
<li>Find the BTC delegation with the given staking transaction hash.</li>
761760
<li>Ensure the BTC delegation is active or unbonding.</li>
762761
<li>Ensure the given secret key corresponds to the finality provider's public
763762
key.</li>

static/remote-docs/guides/architecture/btc_staking_program/finality_providers.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ <h1>Finality Provider</h1>
5555
<p><img src="./docs/static/finality-provider-arch.png" alt="Finality Provider Architecture Diagram"></p>
5656
<h2>Finality Provider for Consumer Networks Specification</h2>
5757
<p>For detailed technical specifications and requirements of the finality provider
58-
program for Consumer networks, please see <a href="SPEC-CONSUMER.md">SPEC-CONSUMER.md</a>.
58+
program for Consumer networks, please see <a href="./docs/SPEC-CONSUMER.md">./docs/SPEC-CONSUMER.md</a>.
5959
The spec document outlines the Consumer's interfaces, message handlers and
6060
queries.
6161
It also provides guidance for integrators.</p>

0 commit comments

Comments
 (0)