Skip to main content
In blockchain networks, transaction fees determine not only whether a transfer is confirmed but also how quickly it is processed. Since each network adopts a different calculation model, understanding these rules is essential for making informed configuration choices.

EVM chains

EIP-1559 model

Some EVM chains support EIP-1559. Currently supported chains include:
  • Ethereum Mainnet
  • Sepolia Testnet
  • Scroll Mainnet
  • Base
  • BNB Smart Chain
  • Polygon
  • Sonic
  • Berachain
In the EIP-1559 model, the estimated transaction fee is calculated as: (base fee + priority fee) * gas limit
For both Legacy and EIP-1559 fee models, an additional fee is charged when submitting transaction calldata to L1 (Layer 1).
You can customize the following parameters:
  • Max fee: The maximum total fee for the transaction.
  • Max priority fee: The maximum additional fee per gas unit paid to miners/validators to prioritize your transaction.
  • Gas limit

Legacy model

All EVM chains support the Legacy model. In the Legacy model, the estimated transaction fee is calculated as: gas price * gas limit
For both Legacy and EIP-1559 fee models, an additional fee is charged when submitting transaction calldata to L1 (Layer 1).
You can customize the following parameters:
  • Gas price
  • Gas limit

UTXO-based chains

Currently supported chains include:
  • Bitcoin
  • Cardano
  • Nervos CKB
  • Handshake
On UTXO-based chains, the estimated transaction fee is calculated as: fee rate * transaction size You can customize the following parameters:
  • Fee rate

Solana

On Solana, you can use the native model or choose the Legacy model. In the native model, the estimated transaction fee is calculated as: base fee + (CU price * CU limit) You can customize the following parameters:
  • CU price
  • CU limit

Filecoin

On Filecoin, you can use the native model or choose the Legacy model. In the native model, the estimated transaction fee is calculated as: min(gas fee cap, base fee + gas premium) * gas limit You can customize the following parameters:
  • Gas fee cap
  • Gas premium
  • Gas limit

Chains using the fixed model

The following chains adopt a fixed fee model:
  • TRON
  • Algorand
  • Polkadot
  • Internet Computer and its ICRC assets (ckBTC, ckETH, ckUSDC, ckUSDT, DKP, GLDGOV, ICS, NICP, OC, OGY)
  • Stellar
  • Ripple
  • Tezos
  • Sui
  • Near
The fixed fee model charges a fixed fee for each transaction.
If you need to estimate transaction fees using the WaaS 2.0 API, please refer to Estimate transaction fees.