Unlocks previously locked tokens.
## Request Structure
`JSON object:`
```JSON
{
"method": "stake_lock",
"subcommand": ["take"],
"arguments": {
"net": "network_name",
"w": "wallet_name",
"tx": "transaction_hash",
"fee": "value",
"chain": "chain_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]]
**`w`** - name of the wallet
**`tx`** - hash of the stake transaction
**`fee`** - fee value
**`chain`** - name of the chain `optional`
### Curl Example
`Request:`
```actionscript
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{
"method": "stake_lock",
"subcommand": ["take"],
"arguments": {
"net": "raiden",
"w": "raidenwallet",
"tx": "0x9E219F249F54AC306745BDA7115181F834B79103EEDB999EAE5D379714ED6214",
"fee": "0.05e+18"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
{
"status": "---> TAKE <---\nTAKE_TX_DATUM_HASH = 0x97B28F2D5A930C40315584B7610DA0553B1F74EC66E9AFCA90ECA022474CCDDD\nContribution successfully made"
}
],
"id": 1
}
```