/v1/estimate_gas_price

Estimate gas price

Currently, the gas estimation is handled by taking the median of the last 100,000 transactions If a user wants to prioritize their transaction and is willing to pay, they can pay more than the gas price. If they're willing to wait longer, they can pay less. Note that the gas price moves with the fee market, and should only increase when demand outweighs supply.

If there have been no transactions in the last 100,000 transactions, the price will be 1.

Example

Request

curl --request GET \
  --url https://aptos-mainnet.blastapi.io/<project-id>/v1/estimate_gas_price \
  --header 'Content-Type: application/json'

Result

{
  "deprioritized_gas_estimate": 100,
  "gas_estimate": 101,
  "prioritized_gas_estimate": 150
}

Last updated