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 3872454 commit d724dfdCopy full SHA for d724dfd
Assets/Thirdweb/Core/Scripts/Wallet.cs
@@ -865,7 +865,7 @@ public async Task<TransactionResult> SendRawTransaction(TransactionRequest trans
865
transactionRequest.from,
866
new HexBigInteger(BigInteger.Parse(transactionRequest.gasLimit)),
867
new HexBigInteger(BigInteger.Parse(transactionRequest.gasPrice)),
868
- new HexBigInteger(transactionRequest.value)
+ new HexBigInteger(BigInteger.Parse(transactionRequest.value))
869
);
870
var hash = await ThirdwebManager.Instance.SDK.session.Web3.Eth.TransactionManager.SendTransactionAsync(input);
871
return await Transaction.WaitForTransactionResult(hash);
0 commit comments