MCP Crypto Wallet EVM

by dcSpark
Verified
MIT License
30
2
  • Apple
  • Linux

wallet_encrypt

Encrypt a wallet with a password

Input Schema

NameRequiredDescriptionDefault
optionsNoOptional encryption options
passwordYesThe password to encrypt the wallet
walletYesThe wallet to encrypt (private key, mnemonic, or JSON)

Input Schema (JSON Schema)

{ "properties": { "options": { "description": "Optional encryption options", "properties": { "scrypt": { "properties": { "N": { "type": "number" }, "p": { "type": "number" }, "r": { "type": "number" } }, "type": "object" } }, "type": "object" }, "password": { "description": "The password to encrypt the wallet", "type": "string" }, "wallet": { "description": "The wallet to encrypt (private key, mnemonic, or JSON)", "type": "string" } }, "required": [ "wallet", "password" ], "type": "object" }