From a44b213e9d75a3f42078185654c297125a4245bf Mon Sep 17 00:00:00 2001 From: Joowon Yun Date: Fri, 26 Dec 2025 16:52:56 +0900 Subject: [PATCH] fix: set signerAddress --- networks/cosmos/src/signers/direct-signer.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/networks/cosmos/src/signers/direct-signer.ts b/networks/cosmos/src/signers/direct-signer.ts index 03875761..077ef94c 100644 --- a/networks/cosmos/src/signers/direct-signer.ts +++ b/networks/cosmos/src/signers/direct-signer.ts @@ -35,6 +35,11 @@ export class DirectSigner extends BaseCosmosSigner implements ISigningClient { throw new Error('Signer address does not match'); } + if (!!!args.options?.signerAddress) { + args.options.signerAddress = account.address; + } + + // Create the direct workflow const workflow = new DirectWorkflow(this, { messages: args.messages,