import { Attestation } from '@moojo/protocol-core'; import { OnChainAdSet } from '@moojo/sdk-core'; /** * Responsible for finding and returning ad-sets that match given credentials. */ export interface AdMatcher { getMatchingAds(credentialsGetter: () => Promise): Promise; }