Creates [[Fee]] order that validator requires for his work.
> [!NOTE] Important
> For now, recommended validator fee is `0,05` for **Backbone** and `0,1` for **KelVPN**.
## Request Structure
`JSON object:`
```JSON
{
"method": "srv_stake",
"subcommand": ["order","create"],
"arguments": {
"net": "network_name",
"value": "fee_value",
"cert": "cert_name",
"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]]
**`value`** - fee for one transaction in datoshi
**`cert`** - name of the private master certificate which is used to sign blocks
**`H`** - the format of the hash value for the command parameter. It can be either in HEX format `0x4E9B6B890D5D78BB46AA5442BDEFF2FPDA8929BA9689F86235353BF784B5` or in Base58 `Betcryb4arefsamtjars9dxydzasszdfkkh6`, `optional`
### Curl Example
`Request:`
```actionscript
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{
"method": "srv_stake",
"subcommand": ["order","create"],
"arguments": {
"net": "railgun",
"value": "0.05e+18",
"cert": "railgun.master.pvt.0"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
{
"status": "success",
"order_hash": "0x3DB98A6743F882C9444B90863F9C571B4162DE49FF316166D95776B274B3532C"
}
],
"id": 1
}
```