diff --git a/packages/stargate/src/queries/ibc.ts b/packages/stargate/src/queries/ibc.ts index 581323ee..8800e3e2 100644 --- a/packages/stargate/src/queries/ibc.ts +++ b/packages/stargate/src/queries/ibc.ts @@ -95,7 +95,7 @@ export function setupIbcExtension(base: QueryClient): IbcExtension { const channelQueryService = new ChannelQuery({ request: (service: string, method: string, data: Uint8Array): Promise => { // Parts of the path are unavailable, so we hardcode them here. See https://github.com/protobufjs/protobuf.js/issues/1229 - const path = `/Query/${method}`; + const path = `/ibc.core.channel.v1.Query/${method}`; return base.queryUnverified(path, data); }, });