Holds [[Shared Funds|funds]] on the [[Shared Funds|shared funds]] account.
## Request Structure
`JSON object:`
```JSON
{
"method": "wallet",
"subcommand": ["shared","hold"],
"arguments": {
"net": "net_name",
"w": "wallet_name",
"token": "token_ticker",
"value": "value",
"fee": "fee_value",
"signs_minimum": "value_int",
"pkey_hashes": "hash1[,hash2,...,hashN]",
"tag": "str",
"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 from which funds will be taken (also this wallet will be used to pay fee and sign the transaction)
**`token`** - ticker of the token
**`value`** - amount of funds being taken for holding
**`fee`** - commission for transaction
**`signs_minimum`** - quantity of required valid signatures fot funds debit
**`pkey_hashes`** - public keys of users who have the right to participate in the consensus of the funds withdrawal `minimum - 1`
**`tag`** - additional information about 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","hold"],
"arguments": {
"net": "riemann",
"w": "wallet1",
"token": "tKEL",
"value": "1000.0e+18",
"fee": "0.05e+18",
"signs_minimum": "2",
"pkey_hashes": "0xA35F98638A7F23C2D1875FCBA9C44D1C1A915B5742096E0177131884F0B2931D,0x1EA4552E58495035E1DC3F6D20A9F59CBC2E5D95E41888147368A54326E38CC1"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
{
"status": "success",
"tx_hash": "0xE9282B8E283C14879CAAF78C9EA14530B9ABBB639C5D917E00A1A5F068E01B94"
}
],
"id": 1
}
```