Rename integrator to indexer (#207)

This commit is contained in:
Dmitry
2023-11-09 10:56:32 +03:00
committed by GitHub
parent 91228c2811
commit a0d2df3cd5
24 changed files with 72 additions and 72 deletions

View File

@@ -68,7 +68,7 @@ type Payload =
| ListAmountPayload
| GetAmountByORNPayload;
class IntegratorService {
class IndexerService {
private readonly apiUrl: string;
private readonly chainId: number;
@@ -222,4 +222,4 @@ class IntegratorService {
}
export * as schemas from './schemas/index.js';
export { IntegratorService };
export { IndexerService };

View File

@@ -2,4 +2,4 @@ export * as aggregator from './Aggregator/index.js';
export * as blockchainService from './BlockchainService/index.js';
export * as priceFeed from './PriceFeed/index.js';
export * as referralSystem from './ReferralSystem/index.js';
export * as integrator from './Integrator/index.js';
export * as indexer from './Indexer/index.js';