UNPKG

@velora-dex/sdk

Version:
14 lines 1.01 kB
import type { ConstructFetchInput, RequestParameters } from '../../types'; import { BuildNFTOrderDataInput, SignableNFTOrderData } from './helpers/buildOrderData'; export * from './helpers/buildOrderData'; /** @deprecated NFT Orders are deprecated and will be removed in a future version. */ export type BuildNFTOrderInput = Omit<BuildNFTOrderDataInput, 'chainId' | 'verifyingContract' | 'AugustusAddress'>; type BuildNFTOrder = (buildNFTOrderParams: BuildNFTOrderInput, requestParams?: RequestParameters) => Promise<SignableNFTOrderData>; /** @deprecated NFT Orders are deprecated and will be removed in a future version. */ export type BuildNFTOrderFunctions = { /** @description Build Orders that will be excuted through AugustusSwapper */ buildNFTOrder: BuildNFTOrder; }; /** @deprecated NFT Orders are deprecated and will be removed in a future version. */ export declare const constructBuildNFTOrder: (options: ConstructFetchInput) => BuildNFTOrderFunctions; //# sourceMappingURL=buildOrder.d.ts.map