Replies: 1 comment
-
You can just pass a nonce override. contract.method(param1, param2, {
gasPrice: xyz,
value: xyz,
nonce: 123
}) You can learn more about overrides in the docs! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
hi community. lets say: I made a transaction. its included in the chain but gas price is low for it to be picked up. I wana speed it up with the same nonce. how do I achieve this with ethers js.
while constructing a tx like
contract.method(param1,param2, { gasPrice: xyz, value: xyz })
how can I send such a tx with the same nonce that it overwrites the desired tx?. thanksBeta Was this translation helpful? Give feedback.
All reactions