Creates a [[3. Conditional Transactions|conditional transaction]].
`Command syntax:`
```actionscript
tx_cond_create
-net <net_name>
-token <token_ticker>
-w <wallet_name>
-cert <pub_cert_name>
-value <value_datoshi>
-fee <value>
-unit { B | SEC }
-srv_uid <numeric_uid>
```
`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
-token - name of the token
-w - name of the wallet
-cert - name of the public certificate
-value - cost of service in datoshi
-fee - transaction commission
-unit - measure unit: values - B (bytes) | SEC (seconds)
-srv_uid - UID of the service (number)
```
### CLI Example
`Command:`
```actionscript
cellframe-node-cli tx_cond_create
-net foobar
-token BUZ
-w foobar_root_0
-cert certname
-value 5.0e+18
-fee 0.1e+18
-unit SEC
-srv_uid 1
```
`Response:`
```
256bit TX created succefully, hash=0xB3D9052F434CD56A79869138E23BC77331C6CFBCD74E9D49CF4CED2DAF8B905AConditional
```
### JSON-RPC Example
![[JSON-RPC Request - TX_COND_CREATE]]