Shows information about all wallet unspent outputs. ## Request Structure `JSON object:` ```JSON { "method": "wallet", "subcommand": ["outputs"], "arguments": { "net": "network_name", "addr | w": "addr | wallet_name", "token": "token_ticker", "cond | value": "null | uint256_value" }, "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 **`token`** - name of the token **`cond | value`** - shows only conditional outputs and list of transactions which contain these outputs | shows outputs which are not lower than specified "value" `optional` ### Curl Example `Request:` ```actionscript curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d ' { "method": "wallet", "subcommand": ["outputs"], "arguments": { "net": "Backbone", "w": "CELLWALLET", "token": "CELL" }, "id": "1" }' ``` `Response:` ```json { "type": 2, "result": [ [ { "wallet_addr": "Rj7J7MiX2bWy8sNyX332awQN5KEtihm3p7jwuemmRssX4otCGzoUWnfHf6XotbfjckLCyPgpZy8DM46G8LFDG6eVdfCUPUut7BD3pDFp", "total_value_coins": "6.78", "total_value_datoshi": "6780000000000000000", "outs": [ { "item_type": "unspent_out", "value_coins": "0.88", "value_datoshi": "880000000000000000", "prev_hash": "0xA0EDE786E3B0F05008D776309F3C7C4B87EF28AC4ADFE47D58A11E8DE4CD1213", "out_prev_idx": 3 }, { "item_type": "unspent_out", "value_coins": "0.9", "value_datoshi": "900000000000000000", "prev_hash": "0x668F7698E4821127A983F919CE66A4A68E123E9E189ECA0C28127531C491ED18", "out_prev_idx": 3 }, { "item_type": "unspent_out", "value_coins": "1.0", "value_datoshi": "1000000000000000000", "prev_hash": "0x905F3CBE65C216E2594F2A5BD89FD6386C0C139FA9A5DE91FC8A807A50BE980B", "out_prev_idx": 2 }, { "item_type": "unspent_out", "value_coins": "1.0", "value_datoshi": "1000000000000000000", "prev_hash": "0xA69279E9EF405BC8B371BEE4757101B49665B6196249CDA9DB95A7A2E04BB8E4", "out_prev_idx": 2 }, { "item_type": "unspent_out", "value_coins": "3.0", "value_datoshi": "3000000000000000000", "prev_hash": "0x8BA2AD315346CC47EC035368DF7C623036149EE4AC96E9CD064B75D94E0831A7", "out_prev_idx": 1 } ] } ] ], "id": 1 } ```