import { BaseRates } from "../../../src/utils/rates/base-rates"; export class MockRatesService extends BaseRates { constructor() { super(); } async getRate( numeratorUnitCode: string, denominatorUnitCode: string, ): Promise { return 1; } async start(): Promise { return; } async stop(): Promise { return; } async listPairs(): Promise> { return new Set(); } }