mirror of
https://github.com/logos-blockchain/logos-blockchain-ui.git
synced 2026-07-09 17:29:27 +00:00
Rename devnet deployment option to testnet, update docs.
This commit is contained in:
parent
7084a3111e
commit
bb793c4ad4
16
README.md
16
README.md
@ -20,7 +20,17 @@ Built with [`logos-module-builder`](https://github.com/logos-co/logos-module-bui
|
||||
nix run
|
||||
```
|
||||
|
||||
2. Generate a new config using initial peers from the live testnet. Find peers [here](https://www.notion.so/nomos-tech/Logos-Blockchain-Devnet-Lisbon-March-2026-2fe261aa09df8025ad94e380933b4cf9?source=copy_link#319261aa09df80a6ac9bcb7487d14d6a).
|
||||
2. Generate a new config using initial peers from the live testnet. See the [⚙️ Initialize Your Node](https://github.com/logos-blockchain/logos-blockchain/releases/latest#-initialize-your-node) section of the latest release notes
|
||||
> Note that what's shown in the release document is a CLI command.
|
||||
> For the UI's "Initial peers" field, strip everything but the peer addresses themselves (no quotes, brackets, or commas) and paste one per line.
|
||||
>
|
||||
> Like so:
|
||||
> ```text
|
||||
> /ip4/203.0.113.10/udp/3000/quic-v1/p2p/12D3KooWh82pJGF9p7kpzb6eU326EFZf2cDnimbTFVeJtx1qtBmU
|
||||
> /ip4/203.0.113.10/udp/3001/quic-v1/p2p/12D3KooWNJAEqN76R7PwPfHt3oWb8R6cKvhgyxQdDn53jFrK6wFx
|
||||
> /ip4/203.0.113.10/udp/3002/quic-v1/p2p/12D3KooW7RJWhvQBQPEjJmki5fhBboGBWRJhmcFkMvrr4Fu3tMSJ
|
||||
> /ip4/203.0.113.10/udp/3003/quic-v1/p2p/12D3KooW5EdynMEiYSyiWAH9GpcbHpeUzeSQF9ZY6q4x8AhBskUf
|
||||
> ```
|
||||
|
||||
3. Start the node and let it sync. Track progress:
|
||||
|
||||
@ -28,9 +38,9 @@ nix run
|
||||
watch -n1 'curl -s localhost:8080/cryptarchia/info'
|
||||
```
|
||||
|
||||
Compare the `height` with the [block explorer](https://devnet.blockchain.logos.co/web/explorer/).
|
||||
Compare the `height` with the [block explorer](https://testnet.blockchain.logos.co/web/explorer/).
|
||||
|
||||
4. Request funds from the [faucet](https://devnet.blockchain.logos.co/web/faucet/) — copy one of the keys from the UI and paste it there.
|
||||
4. Request funds from the [faucet](https://testnet.blockchain.logos.co/web/faucet/) — copy one of the keys from the UI and paste it there.
|
||||
|
||||
5. Once synced, refresh your balance to see your funds.
|
||||
|
||||
|
||||
@ -395,7 +395,7 @@ QVariantMap BlockchainBackend::generateConfig(
|
||||
normalized.insert("no_public_ip_check", true);
|
||||
if (deploymentMode == 0) {
|
||||
QVariantMap deployment;
|
||||
deployment.insert("well_known_deployment", "devnet");
|
||||
deployment.insert("well_known_deployment", "testnet");
|
||||
normalized.insert("deployment", deployment);
|
||||
} else if (deploymentMode == 1
|
||||
&& !deploymentConfigPath.trimmed().isEmpty()) {
|
||||
|
||||
@ -35,7 +35,7 @@ ColumnLayout {
|
||||
httpAddrField.text.trim(),
|
||||
externalAddrField.text.trim(),
|
||||
noPublicIpCheckBox.checked,
|
||||
devnetRadio.checked ? 0 : 1,
|
||||
networkRadio.checked ? 0 : 1,
|
||||
customDeploymentField.text.trim(),
|
||||
statePathField.text.trim())
|
||||
}
|
||||
@ -168,11 +168,11 @@ ColumnLayout {
|
||||
Layout.fillWidth: true
|
||||
spacing: Theme.spacing.medium
|
||||
RadioButton {
|
||||
id: devnetRadio
|
||||
id: networkRadio
|
||||
font.pixelSize: Theme.typography.secondaryText
|
||||
palette.windowText: Theme.palette.text
|
||||
checked: true
|
||||
text: qsTr("Devnet")
|
||||
text: qsTr("Default")
|
||||
}
|
||||
RadioButton {
|
||||
id: customRadio
|
||||
|
||||
@ -107,7 +107,7 @@ Rectangle {
|
||||
text: (root.useGeneratedConfig && root.deploymentConfig ?
|
||||
root.deploymentConfig :
|
||||
root.useGeneratedConfig ?
|
||||
qsTr("Devnet (default)") :
|
||||
qsTr("Default") :
|
||||
(root.deploymentConfig || qsTr("No file selected")))
|
||||
font.pixelSize: Theme.typography.secondaryText
|
||||
color: Theme.palette.textSecondary
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user