meteora-dbc-toolkit
Version:
TypeScript toolkit for building buy/sell transactions against Meteora Dynamic Bonding Curves on Solana.
10 lines • 395 B
TypeScript
import { Connection, Transaction } from "@solana/web3.js";
import { BuyParams, SellParams } from "./interfaces";
export declare class MeteoraTrader {
private readonly connection;
private readonly dbcClient;
constructor(connection: Connection);
buy(params: BuyParams): Promise<Transaction>;
sell(params: SellParams): Promise<Transaction>;
}
//# sourceMappingURL=index.d.ts.map