parseEther
Convert ether values into a standardized format for blockchain transactions. Simplifies handling ether amounts in Ethereum networks through the MCP Ethers Wallet.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ether | Yes | The ether value to parse |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ether": {
"description": "The ether value to parse",
"type": "string"
}
},
"required": [
"ether"
],
"type": "object"
}