EVM tracing WASM overrides (peaq mainnet)
Pre-releaseWASM runtime overrides for running an EVM tracing node on peaq mainnet.
These runtimes are compiled with the evm-tracing feature enabled. A tracing node uses them in place of the historical on-chain runtimes so that debug and trace RPC methods work on blocks produced before tracing support existed. The node picks the correct override automatically by matching the runtime spec_version.
Usage
Download all overrides into a folder and point your node at it:
mkdir -p wasm-overrides
gh release download evm-tracing-wasm-overrides -R peaqnetwork/peaq-network-node -p '*.wasm' -D wasm-overridesThen start the node with:
--ethapi=debug,trace,txpool --wasm-runtime-overrides=wasm-overridesImportant: override files must keep the .wasm suffix. The node only picks up files ending in .wasm; anything renamed without it is silently ignored.
Verify downloads against the SHA256SUMS asset: sha256sum --check --ignore-missing SHA256SUMS (macOS: shasum -a 256 -c).
peaq-raw.json is the peaq mainnet raw chain spec, included for convenience.
New overrides are added to this release as new runtime versions ship.