laconicd/x/feemarket/spec
2022-10-10 16:08:33 +05:30
..
01_concepts.md update fork 2022-10-10 16:08:33 +05:30
02_state.md update fork 2022-10-10 16:08:33 +05:30
03_begin_block.md update fork 2022-10-10 16:08:33 +05:30
04_end_block.md update fork 2022-10-10 16:08:33 +05:30
05_keeper.md update fork 2022-10-10 16:08:33 +05:30
06_events.md docs: add spec for feemarket module (#889) 2022-02-25 12:49:18 +00:00
07_params.md update fork 2022-10-10 16:08:33 +05:30
08_client.md update fork 2022-10-10 16:08:33 +05:30
09_antehandlers.md update fork 2022-10-10 16:08:33 +05:30
10_future_improvements.md update fork 2022-10-10 16:08:33 +05:30
README.md update fork 2022-10-10 16:08:33 +05:30

Feemarket

Abstract

This document specifies the feemarket module which allows to define a global transaction fee for the network.

This module has been designed to support EIP1559 in cosmos-sdk.

The MempoolFeeDecorator in x/auth module needs to be overrided to check the baseFee along with the minimal-gas-prices allowing to implement a global fee mechanism which vary depending on the network activity.

For more reference to EIP1559:

https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1559.md

Contents

  1. Concepts
  2. State
  3. Begin Block
  4. End Block
  5. Keeper
  6. Events
  7. Params
  8. Client
  9. Future Improvements