Franco Victorio

Results 565 comments of Franco Victorio

Awesome, thanks for letting me know. The next step here is to make it more module-friendly, meaning being able to do this: ``` const besogo = require('besogo') besogo.create(...) ``` while...

> Are there some resources or tutorials that you could suggest? Or could you suggest the specific changes? [This explanation](https://www.davidbcalhoun.com/2014/what-is-amd-commonjs-and-umd/) looks good for getting the context. Then, I would probably...

Thanks a lot for the explanation, @yewang! I started experimenting with this. You can check what I did so far in the master branch of my fork: https://github.com/fvictorio/besogo/tree/master The main...

There are some details about how Hoogle handles this [here](https://github.com/ndmitchell/hoogle/blob/master/docs/TypeSearch.md). What I get from that is that it uses an approach similar to the one used to compute the edit...

> It looks like moving @nomiclabs/hardhat-ethers to peerDependencies is sufficient Agree. Also worth mentioning that this is [one of our recommended practices](https://hardhat.org/hardhat-runner/docs/advanced/building-plugins#notes-on-dependencies) when building Hardhat plugins.

I like when things work in a "core functionality that can be used by anyone" + "the tool builds upon that functionality as anyone else". I'll clarify what I mean....

Oh, sorry, I completely misunderstood the issue. I see what you mean now! I'll think about this a little more.

This is a hard question. If I'm understanding correctly, there are three options here: - Add ANSI colors to the `formattedMessage` entry, and add a `noColor` option to the JSON...

@alcuadrado mentioned that having a new `ansiColoredMessage` (or however it's called) has a couple of advantages. First, this would avoid the need of having a new flag in the input,...

Hi @scream4ik. We are (mostly) no longer adding built-in networks to hardhat-etherscan. Instead, we recommend checking [how to add support for other networks in your project](https://hardhat.org/hardhat-runner/plugins/nomiclabs-hardhat-etherscan#adding-support-for-other-networks). Notice that that functionality...