get_wallet_address_from_private_key
Retrieve a wallet address from a private key with checksum formatting, enabling secure interaction with EDUCHAIN's token and pool data.
Instructions
Get wallet address from private key with proper checksum formatting
Input Schema
Name | Required | Description | Default |
---|---|---|---|
privateKey | Yes | Private key of the wallet |
Input Schema (JSON Schema)
{
"properties": {
"privateKey": {
"description": "Private key of the wallet",
"type": "string"
}
},
"required": [
"privateKey"
],
"type": "object"
}