get_account_info_by_private_key
Retrieve Sui blockchain account details by inputting a private key, enabling users to access essential information for wallet management and transactions.
Instructions
Get account info by private key
Input Schema
Name | Required | Description | Default |
---|---|---|---|
privateKey | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"privateKey": {
"type": "string"
}
},
"required": [
"privateKey"
],
"type": "object"
}