Richard Moore
Richard Moore
Heya!! Thanks for the message/package. Sorry it's take so long to respond, I wanted to make sure I had time to command and address all the points. And EthCC prep...
Thanks! Yes, that makes sense to coalesce. I can add the logic to “just do it”, but would also love to test it out. If you figure out what the...
How is this different than using `formatUnits(value, "gwei")`?
This change breaks certain environments. In future versions of Ethers, the IpcProvider will be in a separate package, which will resolve this as the socket API won't need to be...
Heya! I replied to your email. :)
Sorry for the late reply. There isn't really a plan to make these sorts of changes to v5. The primary changes I'm focused on for the legacy version are security...
There is a method on the JsonRpcProvider class, `getRpcTransaction' which will normalize all the values to be JSON-RPC compatible and take care of a lot of other idiosyncrasies for you....
In v6 the defaults are used, and redirects are handled by the FetchRequest class, but it definitely makes sense to allow overriding those in the createGetUrlFunc. I’ll mark this for...
This has been added into the WIP branch for 6.14. To use custom fetch init options, you can either: ```javascript // Modify only one request object, and its clones (such...
You should be able to use the `Transaction` class if you are looking for the serialized data: `Transaction.from(await providers.getTransaction(hash)).serialized` if I understand your question correctly?