Evolve chains have two layers of fees: execution fees (paid to process transactions) and DA fees (paid to post data).
Uses EIP-1559 fee model:
Transaction Fee = (Base Fee + Priority Fee) × Gas Used
| Component | Destination | Purpose |
|---|---|---|
| Base Fee | Burned (or redirected) | Congestion pricing |
| Priority Fee | Sequencer | Incentive for inclusion |
By default, base fees are burned. ev-reth can redirect them to a treasury:
{
"config": {
"evolve": {
"baseFeeSink": "0xTREASURY",
"baseFeeRedirectActivationHeight": 0
}
}
}See Base Fee Redirect for details.
Uses standard Cosmos SDK fee model:
Transaction Fee = Gas Price × Gas Used
Configure minimum gas prices:
# app.toml
minimum-gas-prices = "0.025stake"Fees go to the fee collector module and can be distributed via standard Cosmos mechanisms.
Both execution environments incur DA fees when blocks are posted to the DA layer.
| Factor | Impact |
|---|---|
| Block size | Linear cost increase |
| DA gas price | Market-driven, varies |
| Batching | Amortizes overhead |
| Compression | Reduces data size |
The sequencer pays DA fees from their own funds. They recover costs through:
- Priority fees from users
- Base fee redirect (if configured)
- External subsidy
Only produce blocks when there are transactions:
node:
lazy-aggregator: true
lazy-block-time: 1s # Max wait timeReduces empty blocks and DA costs.
ev-node batches multiple blocks into single DA submissions:
da:
batch-size-threshold: 100000 # bytes
batch-max-delay: 5sEnable blob compression:
da:
compression: trueUser Transaction
│
│ Pays: Gas Price × Gas
▼
┌─────────────────┐
│ Sequencer │
│ │
│ Receives: │
│ - Priority fees │
│ - Base fees* │
└────────┬────────┘
│
│ Pays: DA fees
▼
┌─────────────────┐
│ DA Layer │
│ (Celestia) │
└─────────────────┘
* If base fee redirect is enabled
EVM:
cast estimate --rpc-url http://localhost:8545 <CONTRACT> "transfer(address,uint256)" <TO> <AMOUNT>Cosmos:
appd tx bank send <FROM> <TO> 1000stake --gas auto --gas-adjustment 1.3Depends on:
- DA layer pricing (e.g., Celestia gas price)
- Data size per block
- Submission frequency
Use the Celestia Gas Calculator for estimates.