File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
packages/sdk-ts/src/client/abacus/grpc Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,14 @@ import * as PointsSvcPb from '@injectivelabs/abacus-proto-ts-v2/generated/points
33import { PointsSvcClient } from '@injectivelabs/abacus-proto-ts-v2/generated/points_svc_pb.client'
44import BaseGrpcConsumer from '../../base/BaseGrpcConsumer.js'
55import { AbacusGrpcTransformer } from './transformers/index.js'
6+ import type { GrpcWebTransportAdditionalOptions } from '../../../utils/grpc.js'
67
78export class AbacusGrpcApi extends BaseGrpcConsumer {
89 protected module : string = IndexerErrorModule . Abacus
910 private client : PointsSvcClient
1011
11- constructor ( endpoint : string ) {
12- super ( endpoint )
12+ constructor ( endpoint : string , options ?: GrpcWebTransportAdditionalOptions ) {
13+ super ( endpoint , options )
1314 this . client = new PointsSvcClient ( this . transport )
1415 }
1516
You can’t perform that action at this time.
0 commit comments