laconicd-deprecated/x/feemarket/spec
Tomas Guerra fd91448fa7
chore(cli): apply google CLI Syntax for required and optional args (#1417)
* chore(cli): apply google CLI Syntax for required and optional args

* chore(cli): add changes in CHANGELOG

* chore(cli): fix link to PR in CHANGELOG

* chore(cli): fix args in feemarket

* chore(cli): update docs based on comments
2022-10-31 17:47:57 +00:00
..
01_concepts.md feemarket(specs): add hint on different gas terminology for gas in Cosmos and Ethereum (#1165) 2022-07-01 13:55:19 +02:00
02_state.md all: rename go module to evmos/ethermint (#1137) 2022-06-19 11:43:41 +02:00
03_begin_block.md all: rename go module to evmos/ethermint (#1137) 2022-06-19 11:43:41 +02:00
04_end_block.md all: rename go module to evmos/ethermint (#1137) 2022-06-19 11:43:41 +02:00
05_keeper.md all: rename go module to evmos/ethermint (#1137) 2022-06-19 11:43:41 +02:00
06_events.md docs: add spec for feemarket module (#889) 2022-02-25 12:49:18 +00:00
07_params.md feemarket: global MinGasPrice parameter (#1104) 2022-05-31 18:28:46 +02:00
08_client.md chore(cli): apply google CLI Syntax for required and optional args (#1417) 2022-10-31 17:47:57 +00:00
09_antehandlers.md feat(ante, evm): set priority for eth transactions (#1214) 2022-08-05 15:00:31 +02:00
10_future_improvements.md all: rename go module to evmos/ethermint (#1137) 2022-06-19 11:43:41 +02:00
README.md all: rename go module to evmos/ethermint (#1137) 2022-06-19 11:43:41 +02:00

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