PerformanceBlogDocs
Tempo MCP serverGive agents search and read tools for Tempo docs
← Blog
network upgradeJul 9, 2026

T7 network upgrade: Lower fees, storage credits, and more

The T7 network upgrade lowers fees on Tempo with capped dynamic fees and new storage credits that make repeated onchain workflows cheaper.

The T7 network upgrade lowers fees on Tempo. T7 introduces capped dynamic fees: the base fee cap is 40% below today's fixed fee and can fall a further 20x during off-peak periods. New storage credits make repeated onchain workflows cheaper, from user contracts to StablecoinDEX orders and MPP payment channels. Read the T7 docs to start integrating →

Dynamic base fee

T7 replaces Tempo's fixed base fee with a bounded dynamic base fee. The new cap is 40% lower than the current fixed fee, and when block gas usage is below target, the fee can fall toward a floor set at one twentieth of the cap. The fee never exceeds the cap, so integrators keep a hard ceiling on per-transaction costs while gaining the upside of cheaper quiet periods.

DYNAMIC BASE FEE RANGE 50K GAS TIP-20 TRANSFER COST TODAY FLOOR $0.001 TODAY FIXED FEE $0.0006 T7 CAP 40% LOWER $0.00003 T7 FLOOR 20X BELOW CAP BOUNDED RANGE

T7 keeps a hard cap on the base fee while allowing lower fees during off-peak periods.

As an example, a typical TIP-20 token transfer between two existing users (~50,000 gas) now costs about $0.0006 at the new cap and about $0.00003 at the quiet-period floor, compared with the old fixed fee of $0.001. At the floor, that transfer is about 33x cheaper than the old fixed fee.

BASE FEE RESPONDS TO BLOCK USE THE LIVE FEE MOVES BETWEEN THE T7 CAP AND FLOOR BELOW TARGET USAGE RISES CAP FLOOR AT CAP FALLS NEAR FLOOR RISES AT CAP TARGET START LOW QUIET BUSY FULL

The cap and floor are fixed bounds. The live base fee moves inside that range as block usage changes.

The base fee starts at the cap at activation and moves with block usage. For wallets, checkout flows, and infrastructure that display fees, this means expecting the base fee to move rather than stay fixed, and comparing pre-T7 fixed-fee periods separately from post-T7 dynamic-fee periods in fee analytics.

Read the specification for dynamic base fees.

Storage credits

Many payment and liquidity workflows follow the same lifecycle: create state, clear it, then create more state in the same transaction. Order placement and cancellation on DEXes follow this pattern, as do MPP channel opens and closes and escrow creation and release. Before T7, each creation paid the full storage-creation cost, so, for example, in the flow above, the contract would be charged for two state creations even though it created only one net piece of state.

Storage credits change that. When a contract clears eligible storage, it earns a credit, and when it later creates eligible storage, the credit offsets roughly 98% of the cost.

STORAGE CREDITS REUSE LIFECYCLE SAVINGS CLEAR ELIGIBLE STATE, THEN REDUCE THE NEXT ELIGIBLE WRITE CREATE ELIGIBLE STATE CLEAR ELIGIBLE STATE CREATE AGAIN 98% COST OFFSET THEN STORAGE CREDIT EARNED REUSE SAME CONTRACT

Storage credits reduce the cost of the next eligible storage creation in the same contract.

The savings are targeted rather than a blanket gas discount: they apply where a workflow repeatedly creates and clears temporary state. For apps with repeat contract workflows, this means meaningful gas savings can be passed to returning users.

Read the specification for storage credits.

Per-user credits for DEX orders and payment channels

Shared contracts introduce an attribution problem. If a contract earns credits from many users' activity, the next storage write spends those credits regardless of who earned them, and the savings land on the wrong users. T7 solves this with per-user accounting in the two places where the lifecycle pattern shows up most: credits stay with the user who earned them.

CREDITS STAY WITH THEIR OWNER SHARED CONTRACTS CAN TRACK CREDITS PER MAKER OR PAYER MAKER A CLEARS ORDER MAKER B PLACES ORDER NEXT ORDER 98% OFFSET NEW ORDER FULL COST SHARED CONTRACT CREDITS PER USER A CREDIT EARNS USES OWN NOT SHAREABLE

Shared contracts can allocate storage-credit savings to the maker, payer, or account that earned them.

On the StablecoinDEX, credits are tracked per maker. When a maker cancels or fully fills an eligible order, the savings stay attached to that maker and apply the next time they place an eligible order. Active makers pay less on repeat order placement, and no one can spend savings another maker earned.

On MPP payment channels, credits are tracked per payer through the TIP20ChannelReserve precompile. When a payer closes or withdraws a finished channel, the reserve records a credit for that payer and applies it when the same payer opens their next channel. Per-request vouchers already stay off-chain, so per-payment costs do not change. The savings apply to the channel lifecycle itself, which means repeated pay-as-you-go sessions from the same payer cost less to run.

The same pattern is available to any shared contract: track which user earned credits and spend them only for that user. If you build shared systems with temporary state, the main integration decision is whether to allocate credits per user, payer, maker, or account rather than pooling them globally.

Read the specifications:

For the MPP session flow, see Accept pay-as-you-go payments in the docs.

What integrators should know

T7 went live on testnet on July 2 and mainnet on July 9. Node operators should run the v1.10.1 release to stay in sync with mainnet. The full set of changes and gas benchmarks are in the release notes, and the current node-operator release status is in the Network Upgrades and Releases table.

For contract developers, the main opportunity is to identify workflows with temporary state and decide how storage-credit savings should be allocated: per user, payer, maker, or account. Avoid global credit pools in shared contracts when savings should stay attached to the party who earned them.

See the v1.10.1 release and the T7 upgrade docs.

Resources