Aman Desai

Results 78 comments of Aman Desai

Yes. Documentation is missing. Till then, you can find function itself [here](https://github.com/ipfs/js-ipfs/blob/e7f85318517718399ee4dc2e0f240550b900617e/packages/ipfs-core/src/components/index.js#L277). It takes only one optional argument `options={}` If you don't provide options, these options are considered [(source)](https://github.com/ipfs/js-ipfs/blob/e7f85318517718399ee4dc2e0f240550b900617e/packages/ipfs-core/src/components/index.js#L260). `You...

Hey @jwarshack, When you select a folder using `input type file`, it creates an iterable of file blobs and passes in reference. You are using [`addAll` function](https://github.com/ipfs/js-ipfs/blob/master/docs/core-api/FILES.md#ipfsaddallsource-options). All it does...

Can you also include `stdout` and `stderr` logs? Just to check exactly where the error originated (on which line).

Adding below methods would be straight forward now that we have txpool_content present. txpool_contentFrom txpool_inspect txpool_status Should I start working on this (if anyone isn't)? Also, if yes, single PR...

Also, https://github.com/trufflesuite/ganache/pull/1539#discussion_r978573015

Not sure exactly which params should be displayed for [txpool_inspect](https://geth.ethereum.org/docs/rpc/ns-txpool#txpool_inspect). Rest can be merged. Also, not sure with naming of processMap().

We at https://battlebrains.xyz are thinking of using Novu as our primary notification service. Our frontend is in Vue. Thus, we would be more than happy to opensource component we make...

I am facing same issue.

``` var convert = (staticHtmlCode, userToken, cb) => { mkdirp(userToken) filename = fileNameGenerator() webshot(staticHtmlCode, userToken + "/" + filename + ".jpeg", {siteType:'html'}, (error) => { if(error) cb(undefined, error) else cb(filename,...