"Ethereum price" headlines usually stop at the token price — but the number that actually determines whether a transaction is worth sending is gas price, and it moves independently of ETH's dollar value. A cheap gas moment during a price spike can still cost more in dollar terms than an expensive gas moment during a dip, because the real cost is gas price × gas used × ETH price, all 3 multiplied together. Here's that formula run against 4 real transaction types, using SolveBar's ETH Gas Tracker's own cost formula and its 3 standard gas tiers.
Example 1: a simple ETH transfer (21,000 gas)
A plain wallet-to-wallet ETH send is the cheapest possible Ethereum transaction — a fixed 21,000 gas units, no contract logic involved. At an illustrative $3,000 ETH price:
| Gas tier | Gwei | Cost |
|---|---|---|
| Slow | 8 | $0.50 |
| Standard | 12 | $0.76 |
| Fast | 18 | $1.13 |
Example 2: an ERC-20 token transfer (~65,000 gas)
Sending a token like USDC or a project's own ERC-20 costs roughly 3x the gas of a plain ETH send, because it runs contract logic instead of a simple balance update:
| Gas tier | Gwei | Cost |
|---|---|---|
| Slow | 8 | $1.56 |
| Standard | 12 | $2.34 |
| Fast | 18 | $3.51 |
Example 3: a DEX swap (~150,000 gas)
A Uniswap-style token swap runs considerably more contract logic — routing, price calculation, 2 token transfers instead of 1 — roughly 7x a plain ETH transfer:
| Gas tier | Gwei | Cost |
|---|---|---|
| Slow | 8 | $3.60 |
| Standard | 12 | $5.40 |
| Fast | 18 | $8.10 |
Example 4: an NFT mint (~180,000 gas)
Minting typically costs the most of these 4 examples — writing new token data to contract storage is one of the more expensive operations on Ethereum:
| Gas tier | Gwei | Cost |
|---|---|---|
| Slow | 8 | $4.32 |
| Standard | 12 | $6.48 |
| Fast | 18 | $9.72 |
The pattern across all 4 examples
2 things hold constant regardless of what ETH's dollar price is doing that day: cost scales almost linearly with gas units (Example 4 uses roughly 8.6x the gas of Example 1, and costs roughly 8.6x as much at any given tier), and the gap between "slow" and "fast" is always about 2.25x (18 ÷ 8), meaning the timing of a transaction can matter as much as which operation you're doing. A $3,000 ETH price and a $4,000 ETH price would scale every number in these 4 tables up or down together — but a gas-price spike from congestion can move costs independently of price entirely, which is the actual reason "gas is expensive right now" and "ETH is expensive right now" are 2 different, sometimes unrelated, statements.
SolveBar's ETH Gas Tracker pulls live slow/standard/fast gwei figures from Etherscan's public gas oracle, refreshing every 15 seconds, so these 4 tables are worth re-running with your own current numbers rather than trusting the illustrative $3,000 figure used here — gas prices at the moment you're actually about to transact are the only ones that matter for your transaction.
