You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: llms.txt
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -4440,11 +4440,11 @@ The raw chain specification can be used to initialize the genesis storage for a
4440
4440
4441
4441
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.
4442
4442
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.
4444
4444
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.
4446
4446
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:
4448
4448
4449
4449
```bash
4450
4450
docker run -it parity/subkey:latest generate --scheme sr25519
@@ -4476,11 +4476,11 @@ In the `collatorSelection.invulnerables` array, add the SS58 addresses (account
4476
4476
}
4477
4477
```
4478
4478
4479
-
- **candidacyBond**: Minimum stake required for collator candidates (in planck units)
4479
+
- **`candidacyBond`**: Minimum stake required for collator candidates (in Planck units).
4480
4480
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).
4482
4482
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.
0 commit comments