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,