From a6e7348b40b660d1bec9491a28f8d4cc6257b261 Mon Sep 17 00:00:00 2001 From: goldsquid Date: Sat, 31 Jan 2026 11:09:28 +0700 Subject: [PATCH] some fix --- aztec/aztec/aztec-devnet-aztec-pruned.yml | 2 +- reference-rpc-endpoint.json | 9 +-------- sync-status.sh | 5 ++++- 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/aztec/aztec/aztec-devnet-aztec-pruned.yml b/aztec/aztec/aztec-devnet-aztec-pruned.yml index 19ad8a16..117ac0d6 100644 --- a/aztec/aztec/aztec-devnet-aztec-pruned.yml +++ b/aztec/aztec/aztec-devnet-aztec-pruned.yml @@ -104,7 +104,7 @@ x-upstreams: frameSize: 20Mb msgSize: 50Mb url: $${WS_URL} - chain: aztec + chain: aztec-devnet method-groups: enabled: - debug diff --git a/reference-rpc-endpoint.json b/reference-rpc-endpoint.json index 7e5738d5..a3d5cdfb 100644 --- a/reference-rpc-endpoint.json +++ b/reference-rpc-endpoint.json @@ -1540,16 +1540,9 @@ "https://rpc.arb-blueberry.gelato.digital" ] }, - "aztec": { - "id": 418, - "urls": [ - "https://mainnet.aztec.network" - ] - }, "aztec-testnet": { - "id": 11124, "urls": [ - "https://aztec-alpha-testnet-fullnode.zkv.xyz" + "https://rpc.testnet.aztec-labs.com" ] }, "core-pigeon": { diff --git a/sync-status.sh b/sync-status.sh index a1a0ef4f..7542b431 100755 --- a/sync-status.sh +++ b/sync-status.sh @@ -51,7 +51,7 @@ for path in $pathlist; do ref="$2" else if $is_aztec; then - # Aztec: resolve ref by path (mainnet/testnet) + # Aztec: resolve ref by path (mainnet/testnet/devnet) case "$path" in *aztec-mainnet*) ref=$($BASEPATH/reference-rpc-endpoint.sh 418) @@ -59,6 +59,9 @@ for path in $pathlist; do *aztec-testnet*) ref=$($BASEPATH/reference-rpc-endpoint.sh 11124) ;; + *aztec-devnet*) + ref=$($BASEPATH/reference-rpc-endpoint.sh 11125) + ;; *) echo "error: unknown aztec path $path" exit 1