Package
@celo/celocli 9.0.1
viem 2.55.11 (dependency bundled by celocli)
Environment
- Celo Mainnet via
https://forno.celo.org
- macOS on Apple Silicon
- Ledger signer (the issue appears to be independent of the signer type)
Command
celocli multisig:approve \
--for <multisig> \
--tx <transaction-id> \
--from <owner-with-zero-CELO-balance> \
--useLedger \
--node https://forno.celo.org
Describe the bug
When the sending account has a zero native CELO balance and therefore cannot pay gas, celocli reports the gas-estimation failure as a contract execution revert:
Sending Transaction: multisig: approving transaction ... failed:
Execution reverted with reason: gas required exceeds allowance (0).
ContractFunctionExecutionError: Execution reverted with reason:
gas required exceeds allowance (0).
This is misleading because the contract call itself does not revert. The account simply has no CELO with which to pay transaction fees.
In the observed case:
- the sender's native CELO balance was exactly
0;
- all celocli multisig checks passed;
confirmations(transactionId, sender) remained false, confirming that nothing was submitted;
- a read-only trace of the same
confirmTransaction call succeeded;
- the trace estimated approximately 211,260 gas;
- funding the sender is the required remedy.
The message led us to investigate the multisig transaction and contract logic, even though neither was the source of the failure.
Expected behavior
celocli should identify this as an insufficient gas-funds error and provide an actionable message, for example:
The sender does not have enough CELO to pay transaction fees.
Sender balance: 0 CELO.
Fund the sender or select a supported --gasCurrency with sufficient balance.
It should not describe this condition as an execution revert.
Actual behavior
The underlying RPC text:
gas required exceeds allowance (0)
is wrapped as EstimateGasExecutionError, ExecutionRevertedError, TransactionExecutionError, and finally ContractFunctionExecutionError, resulting in the incorrect user-facing statement that contract execution reverted.
Suggested fix
Before sending or estimating a transaction, celocli could:
- retrieve the sender's native balance (or selected gas-currency balance);
- compare it with the estimated/upfront fee requirement where possible; and
- fail with a dedicated insufficient-gas-funds message.
Alternatively, the transaction error handler could recognize node errors matching gas required exceeds allowance (<amount>) during gas estimation and translate them into an insufficient-funds error rather than an execution revert.
The exact string may originate from the RPC client and the incorrect classification may occur in viem, but celocli should still present an actionable CLI error. Preserving the original nested error for debugging would be useful.
Reproduction outline
- Use an account that is authorized to perform a transaction but has
0 CELO.
- Run a celocli write command using that account as
--from.
- Observe
Execution reverted with reason: gas required exceeds allowance (0) during gas estimation.
- Simulate/trace the contract call independently and observe that it succeeds.
- Fund the sender with enough CELO for gas and retry.
Package
@celo/celocli9.0.1viem2.55.11 (dependency bundled by celocli)Environment
https://forno.celo.orgCommand
Describe the bug
When the sending account has a zero native CELO balance and therefore cannot pay gas, celocli reports the gas-estimation failure as a contract execution revert:
This is misleading because the contract call itself does not revert. The account simply has no CELO with which to pay transaction fees.
In the observed case:
0;confirmations(transactionId, sender)remainedfalse, confirming that nothing was submitted;confirmTransactioncall succeeded;The message led us to investigate the multisig transaction and contract logic, even though neither was the source of the failure.
Expected behavior
celocli should identify this as an insufficient gas-funds error and provide an actionable message, for example:
It should not describe this condition as an execution revert.
Actual behavior
The underlying RPC text:
is wrapped as
EstimateGasExecutionError,ExecutionRevertedError,TransactionExecutionError, and finallyContractFunctionExecutionError, resulting in the incorrect user-facing statement that contract execution reverted.Suggested fix
Before sending or estimating a transaction, celocli could:
Alternatively, the transaction error handler could recognize node errors matching
gas required exceeds allowance (<amount>)during gas estimation and translate them into an insufficient-funds error rather than an execution revert.The exact string may originate from the RPC client and the incorrect classification may occur in viem, but celocli should still present an actionable CLI error. Preserving the original nested error for debugging would be useful.
Reproduction outline
0CELO.--from.Execution reverted with reason: gas required exceeds allowance (0)during gas estimation.