Aptos · Schema

GasEstimation

Struct holding the outputs of the estimate gas API

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

Name Type Description
deprioritized_gas_estimate integer The deprioritized estimate for the gas unit price
gas_estimate integer The current estimate for the gas unit price
prioritized_gas_estimate integer The prioritized estimate for the gas unit price
View JSON Schema on GitHub

JSON Schema

GasEstimation.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/GasEstimation.json",
  "title": "GasEstimation",
  "type": "object",
  "description": "Struct holding the outputs of the estimate gas API",
  "required": [
    "gas_estimate"
  ],
  "properties": {
    "deprioritized_gas_estimate": {
      "type": "integer",
      "format": "uint64",
      "description": "The deprioritized estimate for the gas unit price"
    },
    "gas_estimate": {
      "type": "integer",
      "format": "uint64",
      "description": "The current estimate for the gas unit price"
    },
    "prioritized_gas_estimate": {
      "type": "integer",
      "format": "uint64",
      "description": "The prioritized estimate for the gas unit price"
    }
  }
}