You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 4, 2022. It is now read-only.
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);
The text was updated successfully, but these errors were encountered: