UNPKG

@moonwell-fi/moonwell-sdk

Version:

TypeScript Interface for Moonwell

13 lines 603 B
import type { HttpRequestError } from "../../common/index.js"; import type { BeamTokenLimits, BeamTokenRoutes } from "../../types/beam.js"; export type GetBeamTokenLimitsErrorType = HttpRequestError; export type GetBeamTokenLimitsReturnType = Promise<BeamTokenLimits[]>; export type GetBeamTokenLimitsArgs = { route: BeamTokenRoutes; direction: "deposit" | "withdraw"; }; /** * Returns a list of the tokens that can have unified balances */ export declare function getBeamTokenLimits(args: GetBeamTokenLimitsArgs): GetBeamTokenLimitsReturnType; //# sourceMappingURL=getBeamTokenLimits.d.ts.map