UNPKG

myria-core-sdk

Version:

Latest version SDK

11 lines (10 loc) 675 B
import { APIResponseType } from "./../../types/APIResponseType"; import { WithdrawNftCompleteParams, WithdrawNftCompleteResponse, WithdrawNftOffChainRequestAPI, WithdrawNftOffChainResponse } from "../../types/WithdrawType"; import { EnvTypes } from "../../typesBundle"; export declare class WithdrawalMarketpAPI { private axiosInstance; private axiosWrapper; constructor(env: EnvTypes); requestWithdrawNftOffChain(payload: WithdrawNftOffChainRequestAPI): Promise<APIResponseType<WithdrawNftOffChainResponse> | undefined>; requestWithdrawNftComplete(payload: WithdrawNftCompleteParams): Promise<APIResponseType<WithdrawNftCompleteResponse> | undefined>; }