Skip to content

Commit 1edb0c0

Browse files
committed
Fix llms.txt
1 parent 584c615 commit 1edb0c0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

llms.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4440,11 +4440,11 @@ The raw chain specification can be used to initialize the genesis storage for a
44404440

44414441
To securely deploy your parachain, you must generate custom cryptographic keys for your collators (block producers). Each collator requires two distinct sets of keys with different security requirements and operational purposes.
44424442

4443-
- **Account keys** - serve as the primary identity and financial controller for your collator. These keys are used to interact with the network and manage funds. They should be treated as cold storage and must never exist on the filesystem of the collator node. Secure offline backup is essential
4443+
- **Account keys**: Serve as the primary identity and financial controller for your collator. These keys are used to interact with the network and manage funds. They should be treated as cold storage and must never exist on the filesystem of the collator node. Secure offline backup is essential.
44444444

4445-
- **Session keys** - handle block production operations to identify your node and sign blocks on the network. These keys are stored in the parachain keystore and function as operational "hot wallet" keys. If compromised, an attacker could impersonate your node, potentially resulting in slashing of your funds. To minimize these risks, implement regular session key rotation and treat them with the same caution as hot wallet keys
4445+
- **Session keys**: Handle block production operations to identify your node and sign blocks on the network. These keys are stored in the parachain keystore and function as operational "hot wallet" keys. If compromised, an attacker could impersonate your node, potentially resulting in slashing of your funds. To minimize these risks, implement regular session key rotation and treat them with the same caution as hot wallet keys.
44464446

4447-
To perform this step, you can use [subkey](https://docs.rs/crate/subkey/latest){target=\_blank}, a command-line tool for generating and managing keys:
4447+
To perform this step, you can use [Subkey](https://docs.rs/crate/subkey/latest){target=\_blank}, a command-line tool for generating and managing keys:
44484448

44494449
```bash
44504450
docker run -it parity/subkey:latest generate --scheme sr25519
@@ -4476,11 +4476,11 @@ In the `collatorSelection.invulnerables` array, add the SS58 addresses (account
44764476
}
44774477
```
44784478

4479-
- **candidacyBond**: Minimum stake required for collator candidates (in planck units)
4479+
- **`candidacyBond`**: Minimum stake required for collator candidates (in Planck units).
44804480

4481-
- **desiredCandidates**: Number of candidates beyond invulnerables (set to 0 for invulnerables-only)
4481+
- **`desiredCandidates`**: Number of candidates beyond invulnerables (set to 0 for invulnerables-only).
44824482

4483-
- **invulnerables**: Use the SS58 addresses from your generated account keys as collators
4483+
- **`invulnerables`**: Use the SS58 addresses from your generated account keys as collators.
44844484

44854485
### Add Session Keys
44864486

0 commit comments

Comments
 (0)