Merge pull request #1489 from janfabian/feat/timeout-height

feat(timeout-height): allow define optional timeout height parameter
This commit is contained in:
Simon Warta 2023-11-07 11:28:02 +01:00 committed by GitHub
commit 0a9ab035bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 299 additions and 12 deletions

View File

@ -30,6 +30,7 @@ export interface StdSignDoc {
readonly fee: StdFee; readonly fee: StdFee;
readonly msgs: readonly AminoMsg[]; readonly msgs: readonly AminoMsg[];
readonly memo: string; readonly memo: string;
readonly timeout_height?: string;
} }
function sortedObject(obj: any): any { function sortedObject(obj: any): any {
@ -61,6 +62,7 @@ export function makeSignDoc(
memo: string | undefined, memo: string | undefined,
accountNumber: number | string, accountNumber: number | string,
sequence: number | string, sequence: number | string,
timeout_height?: bigint,
): StdSignDoc { ): StdSignDoc {
return { return {
chain_id: chainId, chain_id: chainId,
@ -69,6 +71,7 @@ export function makeSignDoc(
fee: fee, fee: fee,
msgs: msgs, msgs: msgs,
memo: memo || "", memo: memo || "",
...(timeout_height && { timeout_height: timeout_height.toString() }),
}; };
} }

View File

@ -1191,6 +1191,72 @@ describe("SigningCosmWasmClient", () => {
client.disconnect(); client.disconnect();
}); });
it("works with a custom timeoutHeight", async () => {
pendingWithoutWasmd();
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(alice.mnemonic, { prefix: wasmd.prefix });
const client = await SigningCosmWasmClient.connectWithSigner(wasmd.endpoint, wallet, {
...defaultSigningClientOptions,
});
const msg = MsgSend.fromPartial({
fromAddress: alice.address0,
toAddress: alice.address0,
amount: [coin(1, "ucosm")],
});
const msgAny: MsgSendEncodeObject = {
typeUrl: "/cosmos.bank.v1beta1.MsgSend",
value: msg,
};
const fee = {
amount: coins(2000, "ucosm"),
gas: "222000", // 222k
};
const memo = "Use your power wisely";
const height = await client.getHeight();
const signed = await client.sign(alice.address0, [msgAny], fee, memo, undefined, BigInt(height + 3));
// ensure signature is valid
const result = await client.broadcastTx(Uint8Array.from(TxRaw.encode(signed).finish()));
assertIsDeliverTxSuccess(result);
client.disconnect();
});
it("fails with past timeoutHeight", async () => {
pendingWithoutWasmd();
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(alice.mnemonic, { prefix: wasmd.prefix });
const client = await SigningCosmWasmClient.connectWithSigner(wasmd.endpoint, wallet, {
...defaultSigningClientOptions,
});
const msg = MsgSend.fromPartial({
fromAddress: alice.address0,
toAddress: alice.address0,
amount: [coin(1, "ucosm")],
});
const msgAny: MsgSendEncodeObject = {
typeUrl: "/cosmos.bank.v1beta1.MsgSend",
value: msg,
};
const fee = {
amount: coins(2000, "ucosm"),
gas: "222000", // 222k
};
const memo = "Use your power wisely";
const height = await client.getHeight();
const signed = await client.sign(alice.address0, [msgAny], fee, memo, undefined, BigInt(height - 1));
await expectAsync(
client.broadcastTx(Uint8Array.from(TxRaw.encode(signed).finish())),
).toBeRejectedWith(
jasmine.objectContaining({
code: 30,
}),
);
client.disconnect();
});
}); });
describe("legacy Amino mode", () => { describe("legacy Amino mode", () => {
@ -1407,6 +1473,72 @@ describe("SigningCosmWasmClient", () => {
client.disconnect(); client.disconnect();
}); });
it("works with custom timeoutHeight", async () => {
pendingWithoutWasmd();
const wallet = await Secp256k1HdWallet.fromMnemonic(alice.mnemonic, { prefix: wasmd.prefix });
const client = await SigningCosmWasmClient.connectWithSigner(wasmd.endpoint, wallet, {
...defaultSigningClientOptions,
});
const msg = MsgSend.fromPartial({
fromAddress: alice.address0,
toAddress: alice.address0,
amount: [coin(1, "ucosm")],
});
const msgAny: MsgSendEncodeObject = {
typeUrl: "/cosmos.bank.v1beta1.MsgSend",
value: msg,
};
const fee = {
amount: coins(2000, "ucosm"),
gas: "200000",
};
const memo = "Use your tokens wisely";
const height = await client.getHeight();
const signed = await client.sign(alice.address0, [msgAny], fee, memo, undefined, BigInt(height + 3));
// ensure signature is valid
const result = await client.broadcastTx(Uint8Array.from(TxRaw.encode(signed).finish()));
assertIsDeliverTxSuccess(result);
client.disconnect();
});
it("fails with past timeoutHeight", async () => {
pendingWithoutWasmd();
const wallet = await Secp256k1HdWallet.fromMnemonic(alice.mnemonic, { prefix: wasmd.prefix });
const client = await SigningCosmWasmClient.connectWithSigner(wasmd.endpoint, wallet, {
...defaultSigningClientOptions,
});
const msg = MsgSend.fromPartial({
fromAddress: alice.address0,
toAddress: alice.address0,
amount: [coin(1, "ucosm")],
});
const msgAny: MsgSendEncodeObject = {
typeUrl: "/cosmos.bank.v1beta1.MsgSend",
value: msg,
};
const fee = {
amount: coins(2000, "ucosm"),
gas: "200000",
};
const memo = "Use your tokens wisely";
const height = await client.getHeight();
const signed = await client.sign(alice.address0, [msgAny], fee, memo, undefined, BigInt(height - 1));
await expectAsync(
client.broadcastTx(Uint8Array.from(TxRaw.encode(signed).finish())),
).toBeRejectedWith(
jasmine.objectContaining({
code: 30,
}),
);
client.disconnect();
});
}); });
}); });
}); });

View File

@ -574,18 +574,20 @@ export class SigningCosmWasmClient extends CosmWasmClient {
} }
/** /**
* Creates a transaction with the given messages, fee and memo. Then signs and broadcasts the transaction. * Creates a transaction with the given messages, fee, memo and timeout height. Then signs and broadcasts the transaction.
* *
* @param signerAddress The address that will sign transactions using this instance. The signer must be able to sign with this address. * @param signerAddress The address that will sign transactions using this instance. The signer must be able to sign with this address.
* @param messages * @param messages
* @param fee * @param fee
* @param memo * @param memo
* @param timeoutHeight (optional) timeout height to prevent the tx from being committed past a certain height
*/ */
public async signAndBroadcast( public async signAndBroadcast(
signerAddress: string, signerAddress: string,
messages: readonly EncodeObject[], messages: readonly EncodeObject[],
fee: StdFee | "auto" | number, fee: StdFee | "auto" | number,
memo = "", memo = "",
timeoutHeight?: bigint,
): Promise<DeliverTxResponse> { ): Promise<DeliverTxResponse> {
let usedFee: StdFee; let usedFee: StdFee;
if (fee == "auto" || typeof fee === "number") { if (fee == "auto" || typeof fee === "number") {
@ -598,13 +600,13 @@ export class SigningCosmWasmClient extends CosmWasmClient {
} else { } else {
usedFee = fee; usedFee = fee;
} }
const txRaw = await this.sign(signerAddress, messages, usedFee, memo); const txRaw = await this.sign(signerAddress, messages, usedFee, memo, undefined, timeoutHeight);
const txBytes = TxRaw.encode(txRaw).finish(); const txBytes = TxRaw.encode(txRaw).finish();
return this.broadcastTx(txBytes, this.broadcastTimeoutMs, this.broadcastPollIntervalMs); return this.broadcastTx(txBytes, this.broadcastTimeoutMs, this.broadcastPollIntervalMs);
} }
/** /**
* Creates a transaction with the given messages, fee and memo. Then signs and broadcasts the transaction. * Creates a transaction with the given messages, fee, memo and timeout height. Then signs and broadcasts the transaction.
* *
* This method is useful if you want to send a transaction in broadcast, * This method is useful if you want to send a transaction in broadcast,
* without waiting for it to be placed inside a block, because for example * without waiting for it to be placed inside a block, because for example
@ -614,6 +616,7 @@ export class SigningCosmWasmClient extends CosmWasmClient {
* @param messages * @param messages
* @param fee * @param fee
* @param memo * @param memo
* @param timeoutHeight (optional) timeout height to prevent the tx from being committed past a certain height
* *
* @returns Returns the hash of the transaction * @returns Returns the hash of the transaction
*/ */
@ -622,6 +625,7 @@ export class SigningCosmWasmClient extends CosmWasmClient {
messages: readonly EncodeObject[], messages: readonly EncodeObject[],
fee: StdFee | "auto" | number, fee: StdFee | "auto" | number,
memo = "", memo = "",
timeoutHeight?: bigint,
): Promise<string> { ): Promise<string> {
let usedFee: StdFee; let usedFee: StdFee;
if (fee == "auto" || typeof fee === "number") { if (fee == "auto" || typeof fee === "number") {
@ -632,7 +636,7 @@ export class SigningCosmWasmClient extends CosmWasmClient {
} else { } else {
usedFee = fee; usedFee = fee;
} }
const txRaw = await this.sign(signerAddress, messages, usedFee, memo); const txRaw = await this.sign(signerAddress, messages, usedFee, memo, undefined, timeoutHeight);
const txBytes = TxRaw.encode(txRaw).finish(); const txBytes = TxRaw.encode(txRaw).finish();
return this.broadcastTxSync(txBytes); return this.broadcastTxSync(txBytes);
} }
@ -643,6 +647,7 @@ export class SigningCosmWasmClient extends CosmWasmClient {
fee: StdFee, fee: StdFee,
memo: string, memo: string,
explicitSignerData?: SignerData, explicitSignerData?: SignerData,
timeoutHeight?: bigint,
): Promise<TxRaw> { ): Promise<TxRaw> {
let signerData: SignerData; let signerData: SignerData;
if (explicitSignerData) { if (explicitSignerData) {
@ -658,8 +663,8 @@ export class SigningCosmWasmClient extends CosmWasmClient {
} }
return isOfflineDirectSigner(this.signer) return isOfflineDirectSigner(this.signer)
? this.signDirect(signerAddress, messages, fee, memo, signerData) ? this.signDirect(signerAddress, messages, fee, memo, signerData, timeoutHeight)
: this.signAmino(signerAddress, messages, fee, memo, signerData); : this.signAmino(signerAddress, messages, fee, memo, signerData, timeoutHeight);
} }
private async signAmino( private async signAmino(
@ -668,6 +673,7 @@ export class SigningCosmWasmClient extends CosmWasmClient {
fee: StdFee, fee: StdFee,
memo: string, memo: string,
{ accountNumber, sequence, chainId }: SignerData, { accountNumber, sequence, chainId }: SignerData,
timeoutHeight?: bigint,
): Promise<TxRaw> { ): Promise<TxRaw> {
assert(!isOfflineDirectSigner(this.signer)); assert(!isOfflineDirectSigner(this.signer));
const accountFromSigner = (await this.signer.getAccounts()).find( const accountFromSigner = (await this.signer.getAccounts()).find(
@ -679,13 +685,14 @@ export class SigningCosmWasmClient extends CosmWasmClient {
const pubkey = encodePubkey(encodeSecp256k1Pubkey(accountFromSigner.pubkey)); const pubkey = encodePubkey(encodeSecp256k1Pubkey(accountFromSigner.pubkey));
const signMode = SignMode.SIGN_MODE_LEGACY_AMINO_JSON; const signMode = SignMode.SIGN_MODE_LEGACY_AMINO_JSON;
const msgs = messages.map((msg) => this.aminoTypes.toAmino(msg)); const msgs = messages.map((msg) => this.aminoTypes.toAmino(msg));
const signDoc = makeSignDocAmino(msgs, fee, chainId, memo, accountNumber, sequence); const signDoc = makeSignDocAmino(msgs, fee, chainId, memo, accountNumber, sequence, timeoutHeight);
const { signature, signed } = await this.signer.signAmino(signerAddress, signDoc); const { signature, signed } = await this.signer.signAmino(signerAddress, signDoc);
const signedTxBody: TxBodyEncodeObject = { const signedTxBody: TxBodyEncodeObject = {
typeUrl: "/cosmos.tx.v1beta1.TxBody", typeUrl: "/cosmos.tx.v1beta1.TxBody",
value: { value: {
messages: signed.msgs.map((msg) => this.aminoTypes.fromAmino(msg)), messages: signed.msgs.map((msg) => this.aminoTypes.fromAmino(msg)),
memo: signed.memo, memo: signed.memo,
timeoutHeight: timeoutHeight,
}, },
}; };
const signedTxBodyBytes = this.registry.encode(signedTxBody); const signedTxBodyBytes = this.registry.encode(signedTxBody);
@ -712,6 +719,7 @@ export class SigningCosmWasmClient extends CosmWasmClient {
fee: StdFee, fee: StdFee,
memo: string, memo: string,
{ accountNumber, sequence, chainId }: SignerData, { accountNumber, sequence, chainId }: SignerData,
timeoutHeight?: bigint,
): Promise<TxRaw> { ): Promise<TxRaw> {
assert(isOfflineDirectSigner(this.signer)); assert(isOfflineDirectSigner(this.signer));
const accountFromSigner = (await this.signer.getAccounts()).find( const accountFromSigner = (await this.signer.getAccounts()).find(
@ -726,6 +734,7 @@ export class SigningCosmWasmClient extends CosmWasmClient {
value: { value: {
messages: messages, messages: messages,
memo: memo, memo: memo,
timeoutHeight: timeoutHeight,
}, },
}; };
const txBodyBytes = this.registry.encode(txBody); const txBodyBytes = this.registry.encode(txBody);

View File

@ -911,6 +911,74 @@ describe("SigningStargateClient", () => {
const result = await client.broadcastTx(Uint8Array.from(TxRaw.encode(signed).finish())); const result = await client.broadcastTx(Uint8Array.from(TxRaw.encode(signed).finish()));
assertIsDeliverTxSuccess(result); assertIsDeliverTxSuccess(result);
}); });
it("works with custom timeoutHeight", async () => {
pendingWithoutSimapp();
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(faucet.mnemonic);
const client = await SigningStargateClient.connectWithSigner(
simapp.tendermintUrl,
wallet,
defaultSigningClientOptions,
);
const msg = MsgSend.fromPartial({
fromAddress: faucet.address0,
toAddress: faucet.address0,
amount: [coin(1, "ucosm")],
});
const msgAny: MsgSendEncodeObject = {
typeUrl: "/cosmos.bank.v1beta1.MsgSend",
value: msg,
};
const fee = {
amount: coins(2000, "ucosm"),
gas: "222000", // 222k
};
const memo = "Use your power wisely";
const height = await client.getHeight();
const signed = await client.sign(faucet.address0, [msgAny], fee, memo, undefined, BigInt(height + 3));
// ensure signature is valid
const result = await client.broadcastTx(Uint8Array.from(TxRaw.encode(signed).finish()));
assertIsDeliverTxSuccess(result);
});
it("fails with past timeoutHeight", async () => {
pendingWithoutSimapp();
const wallet = await DirectSecp256k1HdWallet.fromMnemonic(faucet.mnemonic);
const client = await SigningStargateClient.connectWithSigner(
simapp.tendermintUrl,
wallet,
defaultSigningClientOptions,
);
const msg = MsgSend.fromPartial({
fromAddress: faucet.address0,
toAddress: faucet.address0,
amount: [coin(1, "ucosm")],
});
const msgAny: MsgSendEncodeObject = {
typeUrl: "/cosmos.bank.v1beta1.MsgSend",
value: msg,
};
const fee = {
amount: coins(2000, "ucosm"),
gas: "222000", // 222k
};
const memo = "Use your power wisely";
const height = await client.getHeight();
const signed = await client.sign(faucet.address0, [msgAny], fee, memo, undefined, BigInt(height - 1));
await expectAsync(
client.broadcastTx(Uint8Array.from(TxRaw.encode(signed).finish())),
).toBeRejectedWith(
jasmine.objectContaining({
code: 30,
}),
);
client.disconnect();
});
}); });
describe("legacy Amino mode", () => { describe("legacy Amino mode", () => {
@ -1121,6 +1189,74 @@ describe("SigningStargateClient", () => {
const result = await client.broadcastTx(Uint8Array.from(TxRaw.encode(signed).finish())); const result = await client.broadcastTx(Uint8Array.from(TxRaw.encode(signed).finish()));
assertIsDeliverTxSuccess(result); assertIsDeliverTxSuccess(result);
}); });
it("works with custom timeoutHeight", async () => {
pendingWithoutSimapp();
const wallet = await Secp256k1HdWallet.fromMnemonic(faucet.mnemonic);
const client = await SigningStargateClient.connectWithSigner(
simapp.tendermintUrl,
wallet,
defaultSigningClientOptions,
);
const msg = MsgSend.fromPartial({
fromAddress: faucet.address0,
toAddress: faucet.address0,
amount: [coin(1, "ucosm")],
});
const msgAny: MsgSendEncodeObject = {
typeUrl: "/cosmos.bank.v1beta1.MsgSend",
value: msg,
};
const fee = {
amount: coins(2000, "ucosm"),
gas: "200000",
};
const memo = "Use your tokens wisely";
const height = await client.getHeight();
const signed = await client.sign(faucet.address0, [msgAny], fee, memo, undefined, BigInt(height + 3));
// ensure signature is valid
const result = await client.broadcastTx(Uint8Array.from(TxRaw.encode(signed).finish()));
assertIsDeliverTxSuccess(result);
});
it("fails with past timeoutHeight", async () => {
pendingWithoutSimapp();
const wallet = await Secp256k1HdWallet.fromMnemonic(faucet.mnemonic);
const client = await SigningStargateClient.connectWithSigner(
simapp.tendermintUrl,
wallet,
defaultSigningClientOptions,
);
const msg = MsgSend.fromPartial({
fromAddress: faucet.address0,
toAddress: faucet.address0,
amount: [coin(1, "ucosm")],
});
const msgAny: MsgSendEncodeObject = {
typeUrl: "/cosmos.bank.v1beta1.MsgSend",
value: msg,
};
const fee = {
amount: coins(2000, "ucosm"),
gas: "200000",
};
const memo = "Use your tokens wisely";
const height = await client.getHeight();
const signed = await client.sign(faucet.address0, [msgAny], fee, memo, undefined, BigInt(height - 1));
await expectAsync(
client.broadcastTx(Uint8Array.from(TxRaw.encode(signed).finish())),
).toBeRejectedWith(
jasmine.objectContaining({
code: 30,
}),
);
client.disconnect();
});
}); });
}); });
}); });

View File

@ -296,6 +296,7 @@ export class SigningStargateClient extends StargateClient {
messages: readonly EncodeObject[], messages: readonly EncodeObject[],
fee: StdFee | "auto" | number, fee: StdFee | "auto" | number,
memo = "", memo = "",
timeoutHeight?: bigint,
): Promise<DeliverTxResponse> { ): Promise<DeliverTxResponse> {
let usedFee: StdFee; let usedFee: StdFee;
if (fee == "auto" || typeof fee === "number") { if (fee == "auto" || typeof fee === "number") {
@ -308,7 +309,7 @@ export class SigningStargateClient extends StargateClient {
} else { } else {
usedFee = fee; usedFee = fee;
} }
const txRaw = await this.sign(signerAddress, messages, usedFee, memo); const txRaw = await this.sign(signerAddress, messages, usedFee, memo, undefined, timeoutHeight);
const txBytes = TxRaw.encode(txRaw).finish(); const txBytes = TxRaw.encode(txRaw).finish();
return this.broadcastTx(txBytes, this.broadcastTimeoutMs, this.broadcastPollIntervalMs); return this.broadcastTx(txBytes, this.broadcastTimeoutMs, this.broadcastPollIntervalMs);
} }
@ -324,6 +325,7 @@ export class SigningStargateClient extends StargateClient {
messages: readonly EncodeObject[], messages: readonly EncodeObject[],
fee: StdFee | "auto" | number, fee: StdFee | "auto" | number,
memo = "", memo = "",
timeoutHeight?: bigint,
): Promise<string> { ): Promise<string> {
let usedFee: StdFee; let usedFee: StdFee;
if (fee == "auto" || typeof fee === "number") { if (fee == "auto" || typeof fee === "number") {
@ -334,7 +336,7 @@ export class SigningStargateClient extends StargateClient {
} else { } else {
usedFee = fee; usedFee = fee;
} }
const txRaw = await this.sign(signerAddress, messages, usedFee, memo); const txRaw = await this.sign(signerAddress, messages, usedFee, memo, undefined, timeoutHeight);
const txBytes = TxRaw.encode(txRaw).finish(); const txBytes = TxRaw.encode(txRaw).finish();
return this.broadcastTxSync(txBytes); return this.broadcastTxSync(txBytes);
} }
@ -355,6 +357,7 @@ export class SigningStargateClient extends StargateClient {
fee: StdFee, fee: StdFee,
memo: string, memo: string,
explicitSignerData?: SignerData, explicitSignerData?: SignerData,
timeoutHeight?: bigint,
): Promise<TxRaw> { ): Promise<TxRaw> {
let signerData: SignerData; let signerData: SignerData;
if (explicitSignerData) { if (explicitSignerData) {
@ -370,8 +373,8 @@ export class SigningStargateClient extends StargateClient {
} }
return isOfflineDirectSigner(this.signer) return isOfflineDirectSigner(this.signer)
? this.signDirect(signerAddress, messages, fee, memo, signerData) ? this.signDirect(signerAddress, messages, fee, memo, signerData, timeoutHeight)
: this.signAmino(signerAddress, messages, fee, memo, signerData); : this.signAmino(signerAddress, messages, fee, memo, signerData, timeoutHeight);
} }
private async signAmino( private async signAmino(
@ -380,6 +383,7 @@ export class SigningStargateClient extends StargateClient {
fee: StdFee, fee: StdFee,
memo: string, memo: string,
{ accountNumber, sequence, chainId }: SignerData, { accountNumber, sequence, chainId }: SignerData,
timeoutHeight?: bigint,
): Promise<TxRaw> { ): Promise<TxRaw> {
assert(!isOfflineDirectSigner(this.signer)); assert(!isOfflineDirectSigner(this.signer));
const accountFromSigner = (await this.signer.getAccounts()).find( const accountFromSigner = (await this.signer.getAccounts()).find(
@ -391,11 +395,12 @@ export class SigningStargateClient extends StargateClient {
const pubkey = encodePubkey(encodeSecp256k1Pubkey(accountFromSigner.pubkey)); const pubkey = encodePubkey(encodeSecp256k1Pubkey(accountFromSigner.pubkey));
const signMode = SignMode.SIGN_MODE_LEGACY_AMINO_JSON; const signMode = SignMode.SIGN_MODE_LEGACY_AMINO_JSON;
const msgs = messages.map((msg) => this.aminoTypes.toAmino(msg)); const msgs = messages.map((msg) => this.aminoTypes.toAmino(msg));
const signDoc = makeSignDocAmino(msgs, fee, chainId, memo, accountNumber, sequence); const signDoc = makeSignDocAmino(msgs, fee, chainId, memo, accountNumber, sequence, timeoutHeight);
const { signature, signed } = await this.signer.signAmino(signerAddress, signDoc); const { signature, signed } = await this.signer.signAmino(signerAddress, signDoc);
const signedTxBody = { const signedTxBody = {
messages: signed.msgs.map((msg) => this.aminoTypes.fromAmino(msg)), messages: signed.msgs.map((msg) => this.aminoTypes.fromAmino(msg)),
memo: signed.memo, memo: signed.memo,
timeoutHeight: timeoutHeight,
}; };
const signedTxBodyEncodeObject: TxBodyEncodeObject = { const signedTxBodyEncodeObject: TxBodyEncodeObject = {
typeUrl: "/cosmos.tx.v1beta1.TxBody", typeUrl: "/cosmos.tx.v1beta1.TxBody",
@ -425,6 +430,7 @@ export class SigningStargateClient extends StargateClient {
fee: StdFee, fee: StdFee,
memo: string, memo: string,
{ accountNumber, sequence, chainId }: SignerData, { accountNumber, sequence, chainId }: SignerData,
timeoutHeight?: bigint,
): Promise<TxRaw> { ): Promise<TxRaw> {
assert(isOfflineDirectSigner(this.signer)); assert(isOfflineDirectSigner(this.signer));
const accountFromSigner = (await this.signer.getAccounts()).find( const accountFromSigner = (await this.signer.getAccounts()).find(
@ -439,6 +445,7 @@ export class SigningStargateClient extends StargateClient {
value: { value: {
messages: messages, messages: messages,
memo: memo, memo: memo,
timeoutHeight: timeoutHeight,
}, },
}; };
const txBodyBytes = this.registry.encode(txBodyEncodeObject); const txBodyBytes = this.registry.encode(txBodyEncodeObject);