import { FetchFeeAuthorizationsResDto } from "@gala-chain/api"; import { GalaChainContext } from "../types"; /** * Typed arguments to the `fetchFeeAuthorizations()` function. * All parameters are optional; however care should be taken to provide * chain keys in order of specificity. Refer to the `FeeAuthorization` * class definition for details on the order of `ChainKey`s. * Supports pagination - * the optional bookmark and limit variables control the starting chainkey and size of the * returned page, respectively. */ export interface FetchFeeAuthorizationsParams { authority?: string; year?: string; month?: string; day?: string; hours?: string; minutes?: string; feeCode?: string; txId?: string; bookmark?: string; limit?: number; } /** * Fetch `FeeAuthorization` entries previously written on-chain. `FeeAuthorization` * entries represent a burn of `$GALA` initiated by a specific user, * intended for use as a cross-channel fee payment. Supports pagination. * * @param ctx * @param data * @returns */ export declare function fetchFeeAuthorizations(ctx: GalaChainContext, data: FetchFeeAuthorizationsParams): Promise; //# sourceMappingURL=fetchFeeAuthorizations.d.ts.map