Skip to content

Commit 40a7969

Browse files
committed
chore: network endpoints add chart endpoint
1 parent 935f218 commit 40a7969

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

packages/networks/src/endpoints.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export const endpointsMainnetSentry: NetworkEndpoints = {
1010
cacheGrpc: 'https://sentry.chain.grpc-web.injective.network',
1111
cacheRest: 'https://staging.gateway.grpc-web.injective.network',
1212
web3gw: 'https://sentry.exchange.grpc-web.injective.network',
13+
chart: 'https://sentry.exchange.grpc-web.injective.network',
1314
}
1415

1516
export const endpointsMainnet: NetworkEndpoints = {
@@ -26,6 +27,7 @@ export const endpointsStaging: NetworkEndpoints = {
2627
cacheGrpc: 'https://staging.grpc.injective.network',
2728
cacheRest: 'https://staging.gateway.grpc-web.injective.network',
2829
web3gw: 'https://staging.api.injective.network',
30+
chart: 'https://k8s.mainnet.staging.chart.grpc-web.injective.network',
2931
}
3032

3133
export const endpointsInternal: NetworkEndpoints = {
@@ -38,6 +40,7 @@ export const endpointsInternal: NetworkEndpoints = {
3840
cacheGrpc: 'https://products.chain.grpc-web.injective.network',
3941
cacheRest: 'https://staging.gateway.grpc-web.injective.network',
4042
web3gw: 'https://products.web3-gateway.injective.network',
43+
chart: 'https://products.exchange.grpc-web.injective.network',
4144
}
4245

4346
export const endpointsTestnetSentry: NetworkEndpoints = {
@@ -159,6 +162,7 @@ export const endpointsMainnetLB: NetworkEndpoints = {
159162
cacheGrpc: 'https://k8s.global.mainnet.chain.grpc-web.injective.network',
160163
cacheRest: 'https://k8s.global.mainnet.exchange.grpc-web.injective.network',
161164
web3gw: 'https://k8s.global.mainnet.exchange.grpc-web.injective.network',
165+
chart: 'https://k8s.global.mainnet.chart.grpc-web.injective.network',
162166
}
163167

164168
/**

packages/networks/src/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ export type NetworkEndpoints = {
2929
chronos?: string // Chronos Service
3030
web3gw?: string // Web3Gateway Service
3131
explorer?: string // Explorer Service
32+
chart?: string // Chart Service
3233
}
3334

3435
export type UrlEndpoints = NetworkEndpoints /** Deprecated */

0 commit comments

Comments
 (0)