Skip to content

Commit d233ebb

Browse files
committed
fix: change buy/sell command examples to btc/usdt
1 parent 6c6b106 commit d233ebb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: lib/cli/placeorder.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ export const placeOrderBuilder = (argv: Argv, side: OrderSide) => {
3939
describe: 'immediate-or-cancel',
4040
})
4141
.example(`$0 ${command} 5 LTC/BTC .01 1337`, `place a limit order to ${command} 5 LTC @ 0.01 BTC with local order id 1337`)
42-
.example(`$0 ${command} 3 LTC/BTC mkt`, `place a market order to ${command} 3 LTC for BTC`)
43-
.example(`$0 ${command} 10 ZRX/GNT market`, `place a market order to ${command} 10 ZRX for GNT`);
42+
.example(`$0 ${command} 3 BTC/USDT mkt`, `place a market order to ${command} 3 BTC for USDT`)
43+
.example(`$0 ${command} 1 BTC/USDT market`, `place a market order to ${command} 1 BTC for USDT`);
4444
};
4545

4646
export const placeOrderHandler = async (argv: Arguments<any>, side: OrderSide) => {

0 commit comments

Comments
 (0)