EIP Utils

license ci status

A command line utility tool which provides Ethereum Improvement Proposals features.

Getting Started

Install

console git clone https://github.com/abdelhamidbakhta/eip-utils.git cargo install --path=eip-utils eip-utils

Usage

console eip-utils --help

Commands

EIP-1559

eip1559-compute-basefee

``` Compute base fee from parent block header

USAGE: eip-utils eip1559-compute-basefee --parent-base-fee --parent-gas-used --parent-target-gas-used

FLAGS: -h, --help Prints help information -V, --version Prints version information

OPTIONS: --parent-base-fee The value of the parent block base fee --parent-gas-used The value of the parent block gas used --parent-target-gas-used The value of the parent block target gas used ```

```console

Help

eip-utils help eip1559-compute-basefee

Example

eip-utils eip1559-compute-basefee --parent-base-fee=1000000000 --parent-gas-used=10000000 --parent-target-gas-used=5000000

Output

1125000000 ```