import { Address, MilkomedaNetworkID } from "../primitives"; /** * The request for the filter used endpoint. */ export declare type FilterUsedRequest = { /** * A list of up to 50 ethereum addresses in the request. * @isArray Must be array of Ethereum addresses * @minItems 1 At least one address must be sent. * @maxItems 50 Cannot filter on more than 50 addresses. */ addresses: Array
; networkID: MilkomedaNetworkID; }; export declare type FilterUsedResponse = { addresses: Array; };