Gas Fees

Determine the cost of transactions.

Estimating Gas Fees

The default value for the --gas-multiplier (or -gm) flag is 1%, which means the fees will be multiplied by 1.01 (1% above). To not multiply the fees by any value, you can set -gm 0

Arbitrary Values

Manually set arbitrary values with the --max-fee and --priority-fee Telliot flags, for maxFeePerGas and maxPriorityFeePerGas respectively.

These values should be expressed in BEATS (GWEI). For example, if you want to use 1500000000 IMPULSE (WEI) as maxPriorityFeePerGas, you need to pass -mf 1.5 BEATS (GWEI).

Usage example:

telliot report -a <account-name> -qt pls-usd-spot -mf 20000 -pf 1.5 -gm 10

This example report will use maxFeePerGas as 20000 BEATS (GWEI) and maxPriorityFeePerGas as 1.5 BEATS (GWEI), and will also increase these values by 10%.

Check telliot report --help, top of the icntructions, for more options related to gas

Last updated