Shows wallet dump. ## Request Structure `JSON object:` ```JSON { "method": "wallet", "subcommand": ["info"], "arguments": { "net": "network_name", "addr | w": "addr | wallet_name" }, "id": "1" } ``` `Parameters:` **`net (network_name)`** - name of the Cellframe Network. The list of networks can be found in the `<Config_dir> \ etc \ network` folder or received using - [[Node Command - NET LIST]] **`addr | w`** - wallet address | name of the wallet ### Curl Example `Request:` ```actionscript curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d ' { "method": "wallet", "subcommand": ["info"], "arguments": { "net": "Backbone", "w": "CELLWALLET" }, "id": "1" }' ``` `Response:` ```json { "type": 2, "result": [ [ { "sign": "correct", "wallet": "CELLWALLET", "addr": "Rj7J7MiX2bWy8sNyX332awQN5KEtihm3p7jwuemmRssX4otCGzoUWnfHf6XotbfjckLCyPgpZy8DM46G8LFDG6eVdfCUPUut7BD3pDFp", "network": "Backbone", "signs": "sig_dil", "tokens": [ { "balance": "", "coins": "6.78", "datoshi": "6780000000000000000", "token": { "ticker": "CELL", "description": null } }, { "balance": "", "coins": "97.0", "datoshi": "97000000000000000000", "token": { "ticker": "KEL", "description": null } } ] } ] ], "id": 1 } ```