buyMarketTotal
The buyMarketTotal() method of Nectar instances places a buy 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.buyMarketTotal(market, "420.5");Parameters
market: MarketA market to trade on.
total: stringThe amount of quote token you want to spend.
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