UNPKG

@velora-dex/sdk

Version:
16 lines 622 B
import type { ConstructFetchInput, RequestParameters } from '../../types'; export type PartnerFeeResponse = { partnerFee: number; partnerAddress: string; takeSurplus: boolean; }; type PartnerFeeQueryParams = { partner: string; }; type GetPartnerFee = (options: PartnerFeeQueryParams, requestParams?: RequestParameters) => Promise<PartnerFeeResponse>; export type GetPartnerFeeFunctions = { getPartnerFee: GetPartnerFee; }; export declare const constructGetPartnerFee: ({ apiURL, chainId, fetcher, }: ConstructFetchInput) => GetPartnerFeeFunctions; export {}; //# sourceMappingURL=getPartnerFee.d.ts.map