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.
>
`Command syntax:`
```actionscript
wallet shared take
-net <net_name>
-w <wallet_name>
-tx <transaction_hash>
-to_addr <addr1[,addr2,...,addrN]>
-value <value1[,value2,...,valueN]>
-fee <value>
[-H {hex(default) | base58}]
```
`Options:`
```actionscript
-net - name of the Cellframe Network. The list of networks can be found in the <Config_dir> \ etc \ network folder or received by The Cellframe-Node-CLI using command - net list
-w - the name of the wallet which has a right to debit funds
-tx - hash of the shared funds transcaction
-to_addr - recipient addresses, their quantity must match the values specified numbe
-value - value sent to each recipient, must match the addresses number
-fee - commission for transaction
-H - hash format: HEX or base58 (optional)
```
### CLI Example
`Command:`
```actionscript
cellframe-node-cli wallet shared -net raiden -w second_wallet -tx 0x8A19FC2BA2BEBFAD5F8FEA9E56902D059E391CD05E1A692AD47BCA00FA601F41 -to_addr jrmnGqeeds4Dp67AZE9LY5uWW5zrbm8ugCYn5BJ6GXFdZiZkDgkAPPPvQkTTZxzjLj3LsabF8Zz96kkcmXZf4phyUskWZYSNW3TpKjqF -value 100.0 -fee 1.0
```
`Response:`
```actionscript
status: success
tx_hash: 0x195CA09401AC37B5C559B15B435BBA431733902DB4ACF110F77AA1CE60756DD6
```
### JSON-RPC Example
![[JSON-RPC Request - WALLET SHARED TAKE]]