We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc0a1cf commit 44ea0ecCopy full SHA for 44ea0ec
2 files changed
.changeset/shiny-donuts-explode.md
@@ -0,0 +1,5 @@
1
+---
2
+"@hyperlane-xyz/cli": patch
3
4
+
5
+fix: warp send tx prepare
typescript/cli/src/send/transfer.ts
@@ -438,7 +438,8 @@ async function executeDelivery({
438
for (const tx of transferTxs) {
439
if (tx.type === ProviderType.EthersV5 || tx.type === ProviderType.Tron) {
440
const signer = multiProvider.getSigner(origin);
441
- const txResponse = await signer.sendTransaction(tx.transaction);
+ const preparedTx = await multiProvider.prepareTx(origin, tx.transaction);
442
+ const txResponse = await signer.sendTransaction(preparedTx);
443
const txReceipt = await multiProvider.handleTx(origin, txResponse);
444
const typedReceipt: TypedTransactionReceipt = {
445
type: tx.type,
0 commit comments