From 29d04eceeb7a53f5c066459559f24b81daafbd94 Mon Sep 17 00:00:00 2001 From: eliasmpw Date: Fri, 23 Feb 2024 19:25:30 +0100 Subject: [PATCH] fix: Update packages/arch3-core/src/archwayclient.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Augusto Elesbão --- packages/arch3-core/src/archwayclient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/arch3-core/src/archwayclient.ts b/packages/arch3-core/src/archwayclient.ts index a69f642..36cf47b 100644 --- a/packages/arch3-core/src/archwayclient.ts +++ b/packages/arch3-core/src/archwayclient.ts @@ -37,7 +37,7 @@ export class ArchwayClient extends CosmWasmClient implements IArchwayQueryClient * @param endpoint - String URL of the RPC endpoint to connect or an {@link HttpEndpoint} object. * @returns An {@link ArchwayClient} connected to the endpoint. * - * @see Use {@link ArchwayClient.create} if you need Comet 0.38 support. + * @see Use {@link ArchwayClient.create} if you need to support a specific CometBFT version. */ public static override async connect(endpoint: string | HttpEndpoint): Promise { const tmClient = await Tendermint37Client.connect(endpoint);