Shows list of your wallets.
## Request Structure
`JSON object:`
```JSON
{
"method": "wallet",
"subcommand": ["list"],
"id": "1"
}
```
`Parameters:`
none
### Curl Example
`Request:`
```actionscript
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '
{
"method": "wallet",
"subcommand": ["list"],
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
[
{
"Wallet": "DANWALLET.dwallet",
"status": "unprotected",
"deprecated": "false"
},
{
"Wallet": "KELWALLET.dwallet",
"status": "unprotected",
"deprecated": "false"
},
{
"Wallet": "CELLWALLET.dwallet",
"status": "unprotected",
"deprecated": "false"
}
]
],
"id": 1
}
```