At launch the unified fee is GB · Free Signature: a daily quota of weighted bytes. Signatures are not billed; only the shortfall burns coin.
From GB_FEE_HEIGHT (0 on the delivery genesis), legacy energy and bandwidth collapse into one counter. Below the fork the node still computes the old pair.
The quota grows with effective stake — your own, minus what you delegated out, plus what you received. Linear regeneration over ~24 h of blocks.
resourceStake = staked - delegatedOut + delegatedIn (em EAV7 inteiro) maxGb = 1_000_000_000 + resourceStake × 1_000_000 # 1 GB base + 1 MB por EAV7 staked # bytes ponderados = max(MIN_WEIGHTED, tamanho_útil × fator(tipo)) # tamanho_útil exclui signature / pqSignature / id (anti-maleabilidade) # regeneração linear e preguiçosa ao longo de 86 400 blocos (~24 h a 1 bloco/s) usado = max(0, usadoRegistrado - floor(maxGb × blocosDecorridos / 86400)) disponível = max(0, maxGb - usado) # o que faltar vira QUEIMA, não pagamento ao produtor taxa = shortfall_bytes × 5 e7
1 000 000 000Base quota: 1 GB/day in weighted bytes (no stake).1 000 0001 MB extra per whole EAV7 of effective stake.1 024Minimum weighted consumption per tx (anti empty-tx spam).5 e7Burn per weighted byte beyond the quota.86 400Blocks for a full regeneration — at 1 block/s, about 24 hours.The conversion is direct and deflationary: every weighted byte you were short becomes destroyed EAV7. No validator is paid for it.
20 000 e7Legacy (pre-fork): price of one energy unit outside the quota.5 e7Price of one weighted byte the GB quota did not cover.100 000 000 e7Absolute ceiling of any transaction's fee field.Two distinct effects that are easy to conflate: stake raises the resource quota, and past a floor it exempts the account from fees entirely.
100 000 000 e7 · 100 EAV7At or above this stake, the account is marked feeExempt.Inherited from the energy table. Multiplies useful tx bytes in the GB calculation.
| Type | Factor | Note |
|---|---|---|
TRANSFER | 1 | The protocol's base case. |
TOKEN_TRANSFER | 2 | Moving an EAV20 balance costs twice a native transfer. |
NFT_MINT | 3 | Minting an EAV721 item. |
AI_TASK | 5 | Opens a task for the oracle network. |
EAVM_CALL | 5 | Contract call. Execution gas converts at GAS_PER_ENERGY = 100. |
SLASH_DOUBLE_SIGN | 8 | Double-sign report — deliberately expensive, to discourage frivolous reports. |
TOKEN_CREATE | 10 | Token creation, the top of the table alongside deployment. |
EAVM_DEPLOY | 10 | Publishing bytecode to the EAVM. |
A type missing from the table counts as factor 1.