SECURITY WARNING: Never run commands you don't understand. Always review code before execution. Use at your own risk.
Web3 New Added 19 September 2026

Web3: already known / ALREADY_EXISTS when sending a transaction

The node already holds a transaction with this exact hash in its pool, so the resend is rejected rather than duplicated. It normally means a retry loop signed the identical payload again, or the same nonce was submitted to two nodes behind one RPC endpoint.

Quick fix

Read the commands before running them. Anything that restarts a service, deletes data or changes permissions should be tried on a non-production system first.

Quick fix
// Retrying is fine, re-signing the same payload is not: wait on the hash instead
const sent = await wallet.sendTransaction(tx);
const receipt = await sent.wait(1, 120_000);   // confirmations, timeout in ms

// Read the pending nonce, not the confirmed one, before building the next tx
const nonce = await provider.getTransactionCount(wallet.address, "pending");

// To replace a stuck transaction, reuse the nonce and raise the fee by at least 10 per cent
await wallet.sendTransaction({
  to: wallet.address, value: 0n, nonce,
  maxFeePerGas: old.maxFeePerGas * 12n / 10n,
  maxPriorityFeePerGas: old.maxPriorityFeePerGas * 12n / 10n,
});

# Is it actually pending, or already mined
cast tx $HASH
cast receipt $HASH

// "replacement transaction underpriced" is the same situation with too small a bump

How to diagnose Web3 errors

Web3 errors are unusually terse because the EVM reports failure without explanation by default. execution reverted means a require or revert triggered. The reason string is present in the return data but most libraries discard it. Nonce errors reflect the strict sequential ordering of transactions per account, so a stuck transaction blocks every one behind it.

If the quick fix above does not resolve it, work through these steps. They apply to this whole class of error, not just to this one message, which is usually what saves the time.

  1. Simulate before sending: eth_call against the same block returns the revert reason string that a submitted transaction hides.
  2. Use a transaction tracer (Tenderly, Foundry's cast run, or a node's debug_traceTransaction) to see the exact opcode and contract where execution reverted.
  3. For nonce errors, query the account's pending nonce (eth_getTransactionCount with the pending tag) rather than tracking it locally.
  4. To replace a stuck transaction, resend with the same nonce and a materially higher gas price: most nodes require at least a 10% increase.
  5. Check the chain ID matches the network you intend. Signing for the wrong chain produces confusing rejection messages.

Tools worth reaching for

  • cast (Foundry)
  • eth_call simulation
  • Tenderly / block explorer tracer
  • debug_traceTransaction

Authoritative references

Primary documentation for this error, worth reading before applying any fix in production.

docs.ethers.org geth.ethereum.org

Related Web3 errors

See all 10 Web3 errors →

Browse other categories

Something missing or wrong?

This entry is maintained by hand. If the fix is out of date, incomplete, or you have a better one, email a correction and it will be reviewed.