wallet_get_gas_price
Retrieve the current gas price on Ethereum and EVM-compatible blockchains to optimize transaction costs for wallet operations.
Instructions
Get the current gas price
Input Schema
Name | Required | Description | Default |
---|---|---|---|
wallet | No | The wallet (private key, mnemonic, or JSON). If not provided, uses PRIVATE_KEY environment variable if set. |
Input Schema (JSON Schema)
{
"properties": {
"wallet": {
"description": "The wallet (private key, mnemonic, or JSON). If not provided, uses PRIVATE_KEY environment variable if set.",
"type": "string"
}
},
"required": [],
"type": "object"
}