Creates a new order with specified amount of coins (in [[datoshi]]) to exchange within specified rate (`buy` / `sell`). `Command syntax:` ```actionscript srv_xchange order create -net <net_name> -token_sell <token_ticker> -token_buy <token_ticker> -w <wallet_name> -value <value> -rate <value> -fee <value> ``` `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_sell - ticker of token being sold -token_buy - ticker of token being bought -w - name of the wallet -value - amount of datoshi user wants to exchange -rate - exchange rate (buy/sell) -fee - comission in datoshi ``` ### CLI Example `Command:` ```actionscript cellframe-node-cli srv_xchange order create -net riemann -token_sell tKEL -token_buy mtKEL -w testwallet -value 2.0e+18 -rate 1.0 -fee 0.1e+18 ``` `Response:` ``` Successfully created order 0x72FBB3ED3708074B229D7D8D46404E26347AEEFB3EC2F3B56A0CD4BE4AD1BBFB ``` ### JSON-RPC Example ![[JSON-RPC Request - SRV_XCHANGE ORDER CREATE]]