Mesurer le gas
Outils de profilage
Mesurer le gas est une leçon Web3 & DApp Development Fundamentals gratuite sur CoddyKit. Ceci est la leçon 4 sur 4. Tu peux lire la leçon complète ci-dessous gratuitement — puis la pratiquer en direct dans le navigateur avec un éditeur de code intégré et un tuteur IA 24/7. Elle fait partie du parcours d'apprentissage Web3 & DApp Development Fundamentals, et ta progression se synchronise sur le web et l'application CoddyKit. Le cours Web3 & DApp Development Fundamentals comprend 4 leçons au total.
Certaines parties de cette leçon n'ont pas encore été traduites et s'affichent en anglais.
Measure, Don't Guess
Gas optimization without measurement is guesswork. The compiler, opcode costs, and access patterns interact in non-obvious ways, so an intuitive change can sometimes make things worse.
Always profile before and after. A change that does not reduce measured gas is not an optimization, no matter how clever it looks.
Forge Gas Reports
Foundry's forge test --gas-report prints a per-function table of min, average, median, and max gas usage across all your tests. It is the fastest way to spot expensive functions.
$ forge test --gas-report
| Function | min | avg | median | max | # calls |
| transfer | 28012 | 34521 | 34521 | 51012 | 12 |
| approve | 24300 | 24300 | 24300 | 24300 | 5 |Gas Snapshots
forge snapshot writes the gas cost of every test to a .gas-snapshot file. Commit it to version control, then run forge snapshot --diff to see exactly how a change affected gas.
This turns gas regressions into reviewable diffs in pull requests.
$ forge snapshot
$ forge snapshot --diff
testTransfer() (gas: -1240 (-3.6%))
testMint() (gas: +85 (+0.2%))Measuring in Tests
For fine-grained measurement, read gasleft() before and after a call inside a test. The difference is the gas consumed by that block of code.
uint256 before = gasleft();
target.doWork();
uint256 used = before - gasleft();
emit log_named_uint("gas used", used);Verbose Traces
Running tests with -vvvv shows a full execution trace including the gas cost of each external call and opcode group. This reveals where gas is spent, not just the total.
$ forge test --match-test testTransfer -vvvv
[34521] Token::transfer(bob, 100)
emit Transfer(from: alice, to: bob, value: 100)
return: trueThe Optimizer Setting
The Solidity optimizer changes runtime and deployment gas. The runs parameter is a hint about how often functions are called.
- Low
runs(e.g. 1) optimizes for cheap deployment - High
runs(e.g. 10000) optimizes for cheap repeated calls
Set it in foundry.toml and always measure with the optimizer enabled, since it reflects production behavior.
# foundry.toml
[profile.default]
optimizer = true
optimizer_runs = 10000Comparing Implementations
To compare two approaches, write a test that exercises each under identical conditions and inspect the gas report side by side.
Keep inputs the same and isolate the change to one variable, otherwise you cannot attribute the gas difference to the optimization you made.
function testNaive() public { c.sumNaive(data); }
function testOptimized() public { c.sumOptimized(data); }
// compare both rows in --gas-reportBeware Warm vs Cold Skew
Gas reports can mislead because the first access in a test is cold and later ones are warm. A function called once in setup may show a higher cold cost than the same function later.
Look at min, median, and max columns together rather than a single average, and design tests that reflect real-world access patterns.
Etherscan and Real Receipts
On-chain transaction receipts report the actual gasUsed. Etherscan and block explorers display this for every transaction, letting you validate your local measurements against mainnet reality.
The eth_estimateGas RPC method gives a pre-flight estimate, though it adds a safety margin and may differ from the real execution cost.
CI Gas Regression Gates
Wire forge snapshot --check into continuous integration. It fails the build if any test's gas exceeds the committed snapshot beyond a tolerance.
This prevents accidental gas regressions from slipping into production and makes gas a first-class quality metric.
$ forge snapshot --check
# exits non-zero if gas increased vs committed snapshotA Measurement Workflow
A solid gas workflow:
- Write tests covering the hot paths
- Record a baseline with
forge snapshot - Make one optimization at a time
- Run
forge snapshot --diffto confirm the gain - Gate regressions in CI with
--check
Discipline beats cleverness.
Quick Check
Which Foundry command produces a per-function table of min, average, and max gas usage?
Recap
You learned to measure gas:
forge test --gas-reportfor per-function tablesforge snapshot --diffto track changesgasleft()for fine-grained measurement- Verbose traces reveal where gas goes
- Gate regressions in CI with
--check
This completes the Gas Optimization course. Next: the Foundry toolkit in depth.
Apprends Web3 & DApp Development Fundamentals avec un tuteur IA — gratuit
Écris et exécute du vrai code dans ton navigateur, obtiens de l'aide instantanée d'un tuteur IA disponible 24h/24, et reprends là où tu t'es arrêté sur le web ou dans l'app.
- Cours
- 29
- Leçons
- 105
Questions Fréquemment Posées
La leçon « Mesurer le gas » est-elle gratuite ?
Oui — le texte complet de « Mesurer le gas » est gratuit à lire ici sur le web. Pour la pratiquer de manière interactive (un éditeur de code intégré et un tuteur IA 24/7) et déverrouiller le reste du cours Web3 & DApp Development Fundamentals, passe à CoddyKit PRO. Le cours Web3 & DApp Development Fundamentals comprend 4 leçons au total.
Qu'est-ce que j'apprendrai dans « Mesurer le gas » ?
Outils de profilage Tu pratiques Web3 & DApp Development Fundamentals avec du code pratique que tu exécutes directement dans le navigateur, et un tuteur IA 24/7 répond à tes questions au fur et à mesure que tu avances dans la leçon.
Dois-je avoir de l'expérience pour commencer Web3 & DApp Development Fundamentals ?
Aucune expérience préalable n'est requise. Web3 & DApp Development Fundamentals sur CoddyKit est structuré pour les débutants jusqu'aux apprenants avancés, donc tu peux commencer ici ou depuis le début et avancer à ton rythme. Ceci est la leçon 4 sur 4.
Combien de temps prend la leçon « Mesurer le gas » ?
La plupart des leçons CoddyKit prennent environ 5–10 minutes. Chacune est courte et interactive, tu progresses régulièrement et tu repiques exactement où tu t'es arrêté sur le web et l'app.
Peux-tu écrire et exécuter du code dans cette leçon Web3 & DApp Development Fundamentals ?
Oui. Chaque leçon Web3 & DApp Development Fundamentals inclut un éditeur de code intégré, tu écris et exécutes du vrai code directement dans ton navigateur et tu reçois des retours IA instantanés — aucune configuration locale requise.