We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad4ca35 commit 3124b09Copy full SHA for 3124b09
Assets/Thirdweb/Core/Scripts/Wallet.cs
@@ -867,8 +867,8 @@ public async Task<TransactionResult> SendRawTransaction(TransactionRequest trans
867
new HexBigInteger(BigInteger.Parse(transactionRequest.gasPrice)),
868
new HexBigInteger(transactionRequest.value)
869
);
870
- var receipt = await ThirdwebManager.Instance.SDK.session.Web3.Eth.TransactionManager.SendTransactionAndWaitForReceiptAsync(input);
871
- return receipt.ToTransactionResult();
+ var hash = await ThirdwebManager.Instance.SDK.session.Web3.Eth.TransactionManager.SendTransactionAsync(input);
+ return await Transaction.WaitForTransactionResult(hash);
872
}
873
874
0 commit comments