UNPKG

@velora-dex/sdk

Version:
10 lines 566 B
import type { ConstructFetchInput, RequestParameters } from '../../types'; import type { NFTOrderToSend, NFTOrderFromAPI } from './helpers/types'; type PostNFTOrder = (NFTOrderWithSignatureAndPermit: NFTOrderToSend, requestParams?: RequestParameters) => Promise<NFTOrderFromAPI>; export type PostNFTOrderFunctions = { postNFTLimitOrder: PostNFTOrder; postNFTP2POrder: PostNFTOrder; }; export declare const constructPostNFTOrder: ({ apiURL, chainId, fetcher, }: ConstructFetchInput) => PostNFTOrderFunctions; export {}; //# sourceMappingURL=postOrder.d.ts.map