From c6d6ada0592bbb29725385fbc6b9429db911b6f4 Mon Sep 17 00:00:00 2001 From: Dan Lynch Date: Wed, 13 Nov 2024 17:30:46 -0800 Subject: [PATCH] update fetchers --- v1/packages/client/src/registry.ts | 2 +- v2/packages/client/src/registry.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/v1/packages/client/src/registry.ts b/v1/packages/client/src/registry.ts index 574a5371..6e62f83c 100644 --- a/v1/packages/client/src/registry.ts +++ b/v1/packages/client/src/registry.ts @@ -12,7 +12,7 @@ export interface ChainRegistryClientOptions export class ChainRegistryClient extends ChainRegistryFetcher { protected _options: ChainRegistryClientOptions = { chainNames: [], - baseUrl: 'https://raw.githubusercontent.com/chain-registry/chain-registry/main/registries/original/' + baseUrl: 'https://raw.githubusercontent.com/chain-registry/chain-registry/main/registries/original' }; constructor(options: ChainRegistryClientOptions) { diff --git a/v2/packages/client/src/registry.ts b/v2/packages/client/src/registry.ts index 21569d5b..e68d7233 100644 --- a/v2/packages/client/src/registry.ts +++ b/v2/packages/client/src/registry.ts @@ -12,7 +12,7 @@ export interface ChainRegistryClientOptions export class ChainRegistryClient extends ChainRegistryFetcher { protected _options: ChainRegistryClientOptions = { chainNames: [], - baseUrl: 'https://raw.githubusercontent.com/chain-registry/chain-registry/main/registries/full/' + baseUrl: 'https://raw.githubusercontent.com/chain-registry/chain-registry/main/registries/full' }; constructor(options: ChainRegistryClientOptions) {