Skip to content

Commit d724dfd

Browse files
committed
Fix Wallet.SendRawTransaction expecting hex
1 parent 3872454 commit d724dfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/Thirdweb/Core/Scripts/Wallet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@ public async Task<TransactionResult> SendRawTransaction(TransactionRequest trans
865865
transactionRequest.from,
866866
new HexBigInteger(BigInteger.Parse(transactionRequest.gasLimit)),
867867
new HexBigInteger(BigInteger.Parse(transactionRequest.gasPrice)),
868-
new HexBigInteger(transactionRequest.value)
868+
new HexBigInteger(BigInteger.Parse(transactionRequest.value))
869869
);
870870
var hash = await ThirdwebManager.Instance.SDK.session.Web3.Eth.TransactionManager.SendTransactionAsync(input);
871871
return await Transaction.WaitForTransactionResult(hash);

0 commit comments

Comments
 (0)