sellMarketAmount
The sellMarketAmount() method of Nectar instances places a sell market order on the given market.
Usage
import { Nectar } from "@wasd3rplay/nectar-sdk";
const nectar = new Nectar();
const symbol = "WETH_ETHSEPOLIA:USDT_ETHSEPOLIA";
const market = await nectar.getMarket(symbol);
const orderId = await nectar.sellMarketAmount(market, "0.42");Parameters
market: MarketA market to trade on.
amount: stringThe amount of base token you want to sell.
signer?: WalletOptional
Default to
userWalletproperty ofNectarinstances.A wallet placing the order.
Returns
stringAn order ID, which is a unique value created by Nectar.
Last updated