Nicholas Juntilla
Nicholas Juntilla
Increasing this buffer size by default just like this would be a great temporary fix.
Just updating the the launcher to "karma-phantomjs-launcher": "^1.0.0" in package.json, but I would probably upgrade the phantomjs package as well if you have control.
Up this is an error for me too. I can't send polygon via alchemy.
Yeah it's like this ``` let rpcProvider = 'https://eth-mainnet.alchemyapi.io/v2/xxxxxxx'; const provider = new ethers.providers.JsonRpcProvider(rpcProvider); const wallet = new ethers.Wallet(priv, provider); tx = await wallet.sendTransaction({ to: user.pub, value: ethers.utils.parseEther(amount), }); ```...
@yanukadeneth99 I believe I ended up using ethers to estimate the gas in a separate step to make it work.
I'm so sick of this constantly changing. What worked 5 months ago didn't work a month ago and what worked 5 days ago doesn't work today. What is changing? Ok...
> Fully agree. What worked months ago just broke last weekend amidst another network congestion. Had to clear the wallet several times due to underpriced transactions blocking others. Looking now...
componentDidUpdate is the appropriate place to put asynchronous server updates so this warning is patently false, misleading and confusing.
Still not working ...
I solved this by doing a setTimeOut and forcing a re-render of the whole page by toggling my isLoading state element. It's not the best solution, but it works: `...