Skip to content
This repository has been archived by the owner on Feb 4, 2022. It is now read-only.

unable to send a signed transaction #208

Open
mabdullahh opened this issue Oct 17, 2021 · 1 comment
Open

unable to send a signed transaction #208

mabdullahh opened this issue Oct 17, 2021 · 1 comment

Comments

@mabdullahh
Copy link

I am unable to send a signed transaction. Using infura network. Have a look at my code and error.

//building the transaction
_txn = await Transaction(
from: EthereumAddress.fromHex('$_ownAddress'),
to: EthereumAddress.fromHex('$_contractAddress'),
gasPrice: EtherAmount.inWei(BigInt.one),
value: EtherAmount.fromUnitAndValue(EtherUnit.wei, 1000),
maxGas: 100000,
nonce: 17,
);
//signing the transaction
_signedtxn = await _client.signTransaction(_credentials, _txn);
print('Signed transaction : $_signedtxn');
// sending signed transaction
_sendSigned = _client.sendTransaction(_credentials, _txn);

image

@simolus3
Copy link
Owner

Can you try setting the chain id?

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants