From 5f38cdcde80a4413918e5aa3e21a69bd3ef52cf0 Mon Sep 17 00:00:00 2001 From: airdropzamani Date: Wed, 2 Sep 2026 01:36:40 +0300 Subject: [PATCH 1/2] docs: fix testnet version pins and eth_blockNumber verification wording Co-authored-by: Cursor --- deployments/docker-compose.yml | 4 ++-- docs/installation.md | 4 ++-- docs/running-an-arc-node.md | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/deployments/docker-compose.yml b/deployments/docker-compose.yml index d14299f7..8ede35df 100644 --- a/deployments/docker-compose.yml +++ b/deployments/docker-compose.yml @@ -5,8 +5,8 @@ # Logs: docker compose logs -f # # Required environment variables (see docs/running-an-arc-node.md#docker): -# ARC_EXECUTION_IMAGE — EL Docker image (e.g. docker.cloudsmith.io/circle/arc-network/arc-execution:0.6.0) -# ARC_CONSENSUS_IMAGE — CL Docker image (e.g. docker.cloudsmith.io/circle/arc-network/arc-consensus:0.6.0) +# ARC_EXECUTION_IMAGE — EL Docker image (e.g. docker.cloudsmith.io/circle/arc-network/arc-execution:0.8.0) +# ARC_CONSENSUS_IMAGE — CL Docker image (e.g. docker.cloudsmith.io/circle/arc-network/arc-consensus:0.8.0) # ARC_HOME — data directory on the host (e.g. ~/.arc) services: diff --git a/docs/installation.md b/docs/installation.md index 4cd389c0..3ea10c93 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -15,7 +15,7 @@ Consult the table below to confirm which version to run for each network. | Network | Version | |-------------|---------| -| Arc Testnet | v0.6.0 | +| Arc Testnet | v0.8.0 | ## Pre-built Binary @@ -61,7 +61,7 @@ source "$ARC_HOME/env" To install a specific version, run `arcup` with `--install`: ```sh -arcup --install v0.6.0 +arcup --install v0.8.0 ``` Next, verify that the three Arc binaries are installed: diff --git a/docs/running-an-arc-node.md b/docs/running-an-arc-node.md index 58e7e5b3..deb5fddc 100644 --- a/docs/running-an-arc-node.md +++ b/docs/running-an-arc-node.md @@ -237,9 +237,9 @@ curl -s -X POST http://localhost:8545 \ ``` The produced output is in JSON format. -The `result` field represents the next block height, in hexadecimal -(you can use `printf "%0d"` to translate it into decimal). -It should increase over time. +The `result` field contains the latest block number known to the execution +layer, encoded as a hexadecimal quantity (use `printf "%d\n" ` to convert +to decimal). It should increase over time as the node follows the chain. If it remains `0x0`, check the logs of the consensus layer for errors. Common causes are a missing or incomplete snapshot, mismatched `$ARC_RUN` between the two processes, or the consensus layer not reaching any follow From fb6e7b9f773c23a4b168a594900467d03f77651c Mon Sep 17 00:00:00 2001 From: airdropzamani Date: Wed, 2 Sep 2026 03:46:38 +0300 Subject: [PATCH 2/2] docs: drop docker-compose hunk (defer to approved #238 per review) Co-authored-by: Cursor --- deployments/docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployments/docker-compose.yml b/deployments/docker-compose.yml index 8ede35df..d14299f7 100644 --- a/deployments/docker-compose.yml +++ b/deployments/docker-compose.yml @@ -5,8 +5,8 @@ # Logs: docker compose logs -f # # Required environment variables (see docs/running-an-arc-node.md#docker): -# ARC_EXECUTION_IMAGE — EL Docker image (e.g. docker.cloudsmith.io/circle/arc-network/arc-execution:0.8.0) -# ARC_CONSENSUS_IMAGE — CL Docker image (e.g. docker.cloudsmith.io/circle/arc-network/arc-consensus:0.8.0) +# ARC_EXECUTION_IMAGE — EL Docker image (e.g. docker.cloudsmith.io/circle/arc-network/arc-execution:0.6.0) +# ARC_CONSENSUS_IMAGE — CL Docker image (e.g. docker.cloudsmith.io/circle/arc-network/arc-consensus:0.6.0) # ARC_HOME — data directory on the host (e.g. ~/.arc) services: