convert_units
Convert cryptocurrency values between wei, gwei, and eth units for accurate blockchain calculations and transaction analysis.
Instructions
Convert between wei, gwei, and eth units
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fromUnit | Yes | Source unit | |
toUnit | Yes | Target unit | |
value | Yes | Value to convert |
Input Schema (JSON Schema)
{
"properties": {
"fromUnit": {
"description": "Source unit",
"enum": [
"wei",
"gwei",
"eth"
],
"type": "string"
},
"toUnit": {
"description": "Target unit",
"enum": [
"wei",
"gwei",
"eth"
],
"type": "string"
},
"value": {
"description": "Value to convert",
"type": "string"
}
},
"required": [
"value",
"fromUnit",
"toUnit"
],
"type": "object"
}