store_wallet
Securely store a wallet by encrypting its mnemonic phrase with a password. Use this tool for safe wallet management on the Algorand blockchain network, ensuring protection of sensitive data.
Instructions
Securely store a wallet with encrypted mnemonic
Input Schema
Name | Required | Description | Default |
---|---|---|---|
mnemonic | Yes | Mnemonic phrase to store securely | |
name | Yes | Wallet name/identifier | |
password | Yes | Password to encrypt the mnemonic |
Input Schema (JSON Schema)
{
"properties": {
"mnemonic": {
"description": "Mnemonic phrase to store securely",
"type": "string"
},
"name": {
"description": "Wallet name/identifier",
"type": "string"
},
"password": {
"description": "Password to encrypt the mnemonic",
"type": "string"
}
},
"required": [
"name",
"mnemonic",
"password"
],
"type": "object"
}