Lists staking orders (fee | validator | staker) in the network. ## Request Structure `JSON object:` ```JSON { "method": "srv_stake", "subcommand": ["order","list","fee | validator | staker"], "arguments": { "net": "network_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]] `fee` is used by default. ### Curl Example `Request:` ```actionscript curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{ "method": "srv_stake", "subcommand": ["order","list","validator"], "arguments": { "net": "riemann" }, "id": "1" }' ``` `Response:` ```json { "type": 2, "result": [ [ { "order": "0x0908BDDC74245B62BEC297BAC5F88AA37693A2741AD7296389DF6D1A2D60DDD0", "version": 3, "direction": "SERV_DIR_SELL", "created": "Thu, 06 Mar 2025 07:37:41 +0000", "srv_uid": "0x0000000000000014", "price coins": "10.0", "price datoshi": "10000000000000000000", "price token": "mtKEL", "units": 1, "price unit": "PIECES", "node_addr": "BD53::7CE7::990D::3CF3", "node_location": "None - None", "ext_size": 64, "pkey": "0x81D71E3C9DCBD5E09D7C702AAAC48B5F52504F6C602BB3099612EBFD343C4623", "message": "Value in this order type means minimum value of m-tokens for validator acceptable for key delegation with supplied tax", "external_params": { "tax": "20.0", "maximum_value": "20.0" } }, # this output was cut to make it readable { "order": "0x4539BF2D6B3FD09706030CEDC105976D30BBB1E955C0FB4DA2831060362CB51D", "version": 3, "direction": "SERV_DIR_SELL", "created": "Wed, 07 May 2025 08:31:09 +0000", "srv_uid": "0x0000000000000014", "price coins": "5.0", "price datoshi": "5000000000000000000", "price token": "mtKEL", "units": 1, "price unit": "PIECES", "node_addr": "8E67::8E5E::166A::A6F0", "node_location": "None - None", "ext_size": 64, "pkey": "0x7F336916FE2F638A9457DB00D1841FE8B6234544ABA1785DAA892C421AD05A36", "message": "Value in this order type means minimum value of m-tokens for validator acceptable for key delegation with supplied tax", "external_params": { "tax": "50.0", "maximum_value": "15.0" } } ] ], "id": 1 } ```