UNPKG

@gateway.fm/gtw-dvf-client-js

Version:

DVF client js lib with gateway.fm rpc endpoints

22 lines (19 loc) 513 B
// Submit an order to sell 0.3 Eth for USDT at 250 USDT per 1 Eth const symbol = 'ETH:USDT' const amount = -0.3 const price = 200 const validFor = '0' const feeRate = '' const ledgerPath= `44'/60'/0'/0'/0` const submitOrderResponse = await dvf.submitOrder({ symbol, amount, price, ledgerPath, validFor, // Optional feeRate, // Optional gid: '1', // Optional cid: '1', // Optional partnerId: 'P1' // Optional }) logExampleResult(submitOrderResponse)