docs: update Arc Testnet version table to v0.7.2#199
Conversation
|
Correct fix — One addition worth considering: the table currently covers only node operators. Three of the v0.7.2 changes are breaking for DApp developers (not just node operators) and aren't flagged anywhere in the docs aimed at that audience: 1. Any call or simulation that previously relied on the higher cap will now fail with 2. Precompile gas cost change: "Charge gas before performing storage I/O in precompile helpers" The CallFrom precompile (used by 3. JSON-RPC batch cap: 100 entries viem's default transport sends batched JSON-RPC calls. A page load that fires many simultaneous import { createPublicClient, http } from 'viem'
const client = createPublicClient({
transport: http(ARC_RPC_URL, {
batch: { batchSize: 99 }, // stay under the 100-entry cap
}),
})All three are observable by DApp teams upgrading their target testnet node version — none are in the current installation or developer docs. Might be worth a short "Breaking changes for DApp developers" callout in |
docs/installation.md still lists v0.6.0 as the Arc Testnet version (table and the arcup --install example). Per CHANGELOG.md, testnet node operators must use v0.7.2 since the Zero7 activation on 2026-06-18 ('Earlier versions are not supported'), and v0.7.2 is the latest published release. A new operator following the current table would install an unsupported version. Updated both references to v0.7.2.