Sings debit transaction with valid public key.   ## Request Structure `JSON object:` ```JSON { "method": "wallet", "subcommand": ["shared","sign"], "arguments": { "net": "net_name", "w": "wallet_name", "tx": "tx_hash", "H": "base58" }, "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]] **`w`** - the name of the wallet which has a right to debit funds **`tx`** - hash of the debit transaction **`H`** - transaction hash format: HEX or base58 `optional` ### Curl Example `Request:` ```actionscript curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{ "method": "wallet", "subcommand": ["shared","sign"], "arguments": { "net": "riemann", "w": "q", "tx": "0x63907D9D726A1E1960C633CE208D15DB5C734443F7CCAFE99618BB9A9E07A5FD" }, "id": "1" }' ``` `Response:` ```json { "type": 2, "result": [ { "status": "success", "tx_hash": "0xD3C92681668FE50A39DE1CDC9EE885EE4F89ED3F52F0DE16248C4986DCF72E46" } ], "id": 1 } ```