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
Mainnet: onboarding route for a non-validator operator — need blocks + certificates from height 18,474,680 and ongoing sync (sentry peer or follow endpoint) #356
Hi Arc team — we operate an Arc mainnet archive full node (chain id 5042, arc-node v0.8.0, EL archive / CL --no-consensus) in --follow sync mode.
Since 2026-08-31 every follow endpoint reachable to non-onboarded operators has gone away (rpc.blockdaemon.mainnet.arc.io and rpc.drpc.mainnet.arc.io → 401, rpc.mainnet.arc.io / rpc.quicknode.mainnet.arc.io → 403, the community proxies shut down), so our node is stalled at height 18,474,679.
What we need
Historical blocks and certificates starting at height 18,474,680 (through the current tip), and
ongoing sync from there.
docs/running-an-arc-node.md describes RPC-provider nodes syncing the CL "from sentry endpoints" via --p2p.persistent-peers <SENTRY_MULTIADDRS>, with addresses "provided during onboarding". So concretely, either of these would restore us:
A sentry / full-node multiaddr on TCP/27000 that will allowlist our node, running v0.7.0+ protocol ids, and retaining certificates back to 18,474,680 — note --full sets --prune.certificates.distance 237600 (≈33 h of blocks), so a default-pruned sentry cannot serve a node that is days behind; or
A mainnet RPC endpoint serving eth_getBlockByNumber(n, true) and arc_getCertificate(n) from 18,474,680 to tip.
Questions
What is the official onboarding route for a non-validator mainnet operator to obtain sentry peers or a follow endpoint? (The guide references onboarding but doesn't say where to apply.)
default_rpc_sync_endpoint() in crates/malachite-app/src/config.rs returns an error for chain 5042 — is a mainnet default planned?
We're happy to share our IP and CL PeerId privately with whoever handles onboarding, and to offer our archive node (--enable-arc-rpc, arc_getCertificate served) as a public follow endpoint / sync peer once we're back at tip.
Hi Arc team — we operate an Arc mainnet archive full node (chain id 5042, arc-node v0.8.0, EL archive / CL
--no-consensus) in--followsync mode.Since 2026-08-31 every follow endpoint reachable to non-onboarded operators has gone away (
rpc.blockdaemon.mainnet.arc.ioandrpc.drpc.mainnet.arc.io→ 401,rpc.mainnet.arc.io/rpc.quicknode.mainnet.arc.io→ 403, the community proxies shut down), so our node is stalled at height 18,474,679.What we need
docs/running-an-arc-node.mddescribes RPC-provider nodes syncing the CL "from sentry endpoints" via--p2p.persistent-peers <SENTRY_MULTIADDRS>, with addresses "provided during onboarding". So concretely, either of these would restore us:--fullsets--prune.certificates.distance 237600(≈33 h of blocks), so a default-pruned sentry cannot serve a node that is days behind; oreth_getBlockByNumber(n, true)andarc_getCertificate(n)from 18,474,680 to tip.Questions
--follow.endpointURLs will be published in the operator guide? (Related: docs: mainnet operator notes — versions table row and network selection guide #260 documented the same gap in August.)default_rpc_sync_endpoint()incrates/malachite-app/src/config.rsreturns an error for chain 5042 — is a mainnet default planned?We're happy to share our IP and CL PeerId privately with whoever handles onboarding, and to offer our archive node (
--enable-arc-rpc,arc_getCertificateserved) as a public follow endpoint / sync peer once we're back at tip.Thanks!