Skip to content

Commit

Permalink
Merge pull request #37 from drift-labs/master
Browse files Browse the repository at this point in the history
chore: update redis client dependency
  • Loading branch information
jackwaller authored Oct 25, 2024
2 parents 8036c0a + 6857301 commit a22326e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pruner.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { DriftClient, DriftEnv, UserMap, Wallet } from '@drift-labs/sdk';
import { RedisClient, RedisClientPrefix } from '@drift/common';
import { RedisClient, RedisClientPrefix } from '@drift/common/clients';
import { Connection, Keypair } from '@solana/web3.js';
import { sleep } from './utils/utils';
import { logger } from './utils/logger';
Expand Down
3 changes: 2 additions & 1 deletion src/publisher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ import {
import { sleep } from './utils/utils';
import { setupEndpoints } from './endpoints';
import { ZSTDDecoder } from 'zstddec';
import { RedisClient, RedisClientPrefix, COMMON_UI_UTILS } from '@drift/common';
import { COMMON_UI_UTILS } from '@drift/common';
import { RedisClient, RedisClientPrefix } from '@drift/common/clients';
import { setGlobalDispatcher, Agent } from 'undici';

setGlobalDispatcher(
Expand Down
5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
"emitDecoratorMetadata": true,
"baseUrl": ".",
"rootDir": "src",
"outDir": "./lib"
"outDir": "./lib",
"paths": {
"@drift/common/clients": ["./drift-common/common-ts/lib/clients"]
}
},
"include": ["src/**/*"],
"ts-node": {
Expand Down

0 comments on commit a22326e

Please sign in to comment.