@newcoin-foundation/newcoin-sdk
Version:
SDK for Newcoin blockchain
8 lines (7 loc) • 352 B
TypeScript
import { NeftyMarketAuctionsRequest, PayloadNeftyMarketAuctions } from "../types";
export declare class NeftyMarketApi {
readonly baseUrl: string;
protected fetch: typeof fetch;
constructor(baseUrl: string, fetch?: typeof globalThis.fetch);
getAuctions(params: NeftyMarketAuctionsRequest): Promise<PayloadNeftyMarketAuctions>;
}