formatEther
Convert wei values to ether for easy Ethereum transactions and balances. Simplify blockchain interactions by formatting cryptocurrency amounts accurately.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
wei | Yes | The wei value to format |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"wei": {
"description": "The wei value to format",
"type": "string"
}
},
"required": [
"wei"
],
"type": "object"
}