Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Release notes

Latest product and developer changes

Latest changes to the Radius Network. New features, improvements and bug fixes will be posted here.

2026-04-23 (1c1556c2)

Improvements

  • Internal stability and reliability improvements.

2026-04-15 (7b8a282a)

Improvements

  • eth_sendRawTransaction now queues transactions rejected with NonceTooHigh in a per-sender pending transaction pool and retries them automatically in a background clearout loop. The pool supports up to 30 queued transactions per sender across up to 100 addresses. Replace-by-fee is supported.
  • eth_sendRawTransactionSync now returns EIP-7966 error code 6 with the expected nonce on nonce gaps, avoiding an extra eth_getTransactionCount round-trip.
  • eth_call dry-runs now skip balance validation unconditionally.

2026-03-30 (b0d6dd06)

BREAKING CHANGES

  • The Mainnet Chain ID has been updated from 723 to 723487.

New features

  • Method requests referring to old states will now return an error. Radius does not store historical state and such requests succeeding may be misleading. Note: block numbers within the last 1000 seconds will be treated as "current" for tooling compatibility.
  • Supports eth_maxPriorityFeePerGas.

Improvements

  • Internal Performance Improvements

Bug Fixes

  • Logs in receipts will correctly populate block hash, block number and transaction index.
  • Return null instead of 0x0 for the to field in contract creation transaction receipts.
  • Return null for invalid block hashes, in requests to eth_getBlockByHash.

2026-03-26 (89b06f15)

New features

  • Support for eth_sendRawTransactionSync
  • You can now trigger the turnstile by sending gas tokens directly, rather than just allowin the turnstile to cover gas fees.
    • E.g. cast send --value 0.1ether ... will trigger the turnstile if you do not have enough gas tokens to cover the transaction, up to a limit of 10 RUSD.

Improvements

  • Internal Performance Improvements

Bug fixes

  • Fixes a bug where in some cases receipt requests would return the incorrect receipt. This occurred in cases of very high load on transactions involving conflicting state.

Docs

  • Added release notes page