RFC: Using this.balance as a Storage-Free Deactivation Mechanism Post-Cancun

RFC: Using this.balance as a Storage-Free Deactivation Mechanism Post-Cancun

After the Cancun upgrade and the changes introduced by EIP-6780, the ability to deactivate and reactivate a contract dynamically has become more challenging, particularly in scenarios where querying storage for every transaction is not desirable. I am proposing a minimalistic mechanism for activating and deactivating a contract (specifically a router contract) using the built-in this.balance variable as a control flag.

Use Case

The router contract in question:

  • Holds user approvals but no tokens or significant business logic.
  • Does not hold ETH in its normal operation.
  • Needs a reliable, storage-free way to toggle between an active and inactive state.

This is particularly useful in cases where:

  • A bug is identified in the contract, and users need to be prevented from interacting with it until it is fixed.
  • There’s a need to deactivate the router swiftly without requiring manual revocation of user approvals.

Proposed Mechanism

The mechanism relies solely on the contract’s ETH balance (this.balance) to toggle its state. The logic is as follows:

  1. State Definition:
  • Deactivated: this.balance == 0. The contract rejects all interactions.
  • Activated: this.balance == 1 wei. The contract functions normally.
  1. State Transitions:
  • Activate the Contract: The activate() function (restricted to an immutable DEACTIVATOR address) sends 1 wei to the contract, setting it to an active state.
  • Deactivate the Contract: The deactivate() function (also restricted) transfers all ETH in the contract back to the DEACTIVATOR, setting the balance to zero.
  1. Key Features:
  • The router has no receive function, ensuring that ETH cannot be accidentally or maliciously sent to it.
  • All state transitions rely exclusively on the ETH balance, eliminating the need to query or store custom state variables.

Benefits

  1. No Storage Reads: State checking relies on this.balance, avoiding the gas cost of reading from storage.
  2. Efficient State Transitions: Activating or deactivating involves only minimal ETH transfers.
  3. Safety: The absence of a receive function ensures the router cannot accidentally accumulate ETH.

Why This Is Useful

This mechanism provides a lightweight way to handle router deactivation, especially in scenarios where:

  • Bugs in router contracts force users to manually revoke approvals.
  • State querying for every transaction is undesirable due to gas costs or complexity.

Using the contract’s ETH balance as a toggle avoids the need for storage variables while enabling quick and efficient state changes. This approach could benefit other contract designs requiring similar activation/deactivation mechanisms in a storage-free context.

You can still send funds to a contract, allowing this mechanism to be manipulated

From: Introduction to Smart Contracts — Solidity 0.8.28 documentation

From EVM >= Cancun onwards, selfdestruct will only send all Ether in the account to the given recipient and not destroy the contract.

Not without receive or fallback:

If neither a receive Ether nor a payable fallback function is present, the contract cannot receive Ether through a transaction that does not represent a payable function call and throws an exception.

https://docs.soliditylang.org/en/latest/contracts.html#receive-ether-function

A contract can receive Ether without a receive function as a destination of a selfdestruct. See the documentation warning.

A contract without a receive Ether function can receive Ether as a recipient of a coinbase transaction (aka miner block reward) or as a destination of a selfdestruct.

A contract cannot react to such Ether transfers and thus also cannot reject them. This is a design choice of the EVM and Solidity cannot work around it.

From: Contracts — Solidity 0.8.29 documentation

Oh shoot! Thanks for pointing that out.