wallet_from_encrypted_json
Generate a wallet by decrypting an encrypted JSON file using a password. Ideal for accessing Ethereum and EVM-compatible wallets securely.
Instructions
Create a wallet by decrypting an encrypted JSON wallet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
json | Yes | The encrypted JSON wallet | |
password | Yes | The password to decrypt the wallet |
Input Schema (JSON Schema)
{
"properties": {
"json": {
"description": "The encrypted JSON wallet",
"type": "string"
},
"password": {
"description": "The password to decrypt the wallet",
"type": "string"
}
},
"required": [
"json",
"password"
],
"type": "object"
}