Takes funds from the **[[3. Conditional Transactions#Conditional OUT|conditional out]]** of the [[Shared Funds]] transaction. > [!Important] Important > You can use hash of the original shared funds transaction and also hash of the all subsequent debit transactions as well - **[[Shared Funds#Interaction|example]]**. But the actual information about remaining funds you can see only using hash of the last transaction. >   ## Request Structure `JSON object:` ```JSON { "method": "wallet", "subcommand": ["shared","take"], "arguments": { "net": "net_name", "w": "wallet_name", "tx": "tx_hash", "to_addr": "addr1[,addr2,...,addrN]", "value": "value1[,value2,...,valueN]", "fee": "fee_value", "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 shared funds transaction **`to_addr`** - recipient addresses, their quantity must match the values specified number **`value`** - value sent to each recipient, must match the addresses number **`fee`** - commission for 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","take"], "arguments": { "net": "riemann", "w": "wallet1", "tx": "0xE9282B8E283C14879CAAF78C9EA14530B9ABBB639C5D917E00A1A5F068E01B94", "value": "500.0e+18", "fee": "0.05e+18", "to_addr": "o9z3wUTSTiccVYmN7fZqGTtMFsW11cR48KwarqkAYtU8wUjTxni5xgTj7vqNrq5YsoeokN3DwcQLvDkz4YjV2AUEsjZraH9GLJ6EB9fS" }, "id": "1" }' ``` `Response:` ```json { "type": 2, "result": [ { "status": "success", "tx_hash": "0x63907D9D726A1E1960C633CE208D15DB5C734443F7CCAFE99618BB9A9E07A5FD" } ], "id": 1 } ```